/* --- CSS Reset & Variables --- */
:root {
    /* Brand Colors */
    --clr-black: #050505;
    --clr-dark: #121212;
    --clr-red: #E3000F;
    --clr-green: #00A63F;
    --clr-white: #FFFFFF;
    --clr-gray: #A0A0A0;

    /* Gradients */
    --gradient-accents: linear-gradient(135deg, rgba(227, 0, 15, 0.15) 0%, rgba(0, 166, 63, 0.15) 100%);

    /* Typography */
    --font-main: 'Outfit', sans-serif;
    --font-heading: 'Playfair Display', serif;
    /* For special elegant touch, though Outfit is modern enough. Decided to keep Outfit mostly */

    /* Transitions */
    --trans-smooth: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--clr-black);
    color: var(--clr-white);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- Typography --- */
h1,
h2,
h3,
h4 {
    font-weight: 800;
    line-height: 1.2;
}


.section-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    padding: 0.15em 0.6em;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50%;
    height: 3px;
    background: linear-gradient(90deg, var(--clr-red), var(--clr-green));
}

.text-center .section-title::after {
    left: 25%;
}

p {
    margin-bottom: 1rem;
    color: var(--clr-gray);
    font-size: 1.1rem;
}

.lead-text {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--clr-white);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--clr-gray);
}

/* Branding & Logo Colors */
.mali {
    color: var(--clr-red);
}

.center {
    color: #111111;
}

.culture {
    color: var(--clr-green);
    font-size: 0.6rem;
    letter-spacing: 2px;
    font-weight: 600;
}

.community {
    color: #111111;
    font-size: 0.6rem;
    letter-spacing: 2px;
    font-weight: 600;
}

.connected {
    color: var(--clr-red);
    font-size: 0.6rem;
    letter-spacing: 2px;
    font-weight: 600;
}

.highlight-red {
    color: var(--clr-red);
    font-size: 1.5rem;
}

.highlight-green {
    color: var(--clr-green);
    font-size: 1.5rem;
}

.highlight-white {
    color: var(--clr-white);
    font-size: 1.5rem;
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.75rem 0;
    background: #ffffff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: var(--trans-smooth);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.4rem;
    letter-spacing: -0.5px;
    margin: 0;
    line-height: 1;
}

.logo .tagline {
    margin: 0;
    margin-top: 2px;
    line-height: 1;
    font-size: 0.6rem;
    letter-spacing: 0.1em;
}

.logo {
    padding-right: 2.5rem;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.25rem;
    align-items: center;
    flex-wrap: nowrap;
}

.nav-links li a {
    color: #111111;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
    transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
    border: 1.5px solid rgba(17, 17, 17, 0.22);
    border-radius: 50px;
    padding: 0.35rem 0.9rem;
}

.nav-links li a:hover {
    color: var(--clr-white);
    background: #111111;
    border-color: #111111;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -2;
    transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
    -webkit-object-fit: cover;
}
/* iOS: prevent video from overflowing and ensure inline playback */
@supports (-webkit-touch-callout: none) {
    .hero-video {
        min-height: 100vh;
        min-width: 100vw;
        height: 100%;
        width: 100%;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(5, 5, 5, 0.6) 0%, rgba(5, 5, 5, 1) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 900px;
    margin-top: 4rem;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, #aaa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--clr-gray);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* Buttons */
.btn {
    text-decoration: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: var(--trans-smooth);
    border: 2px solid transparent;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background-color: var(--clr-red);
    color: var(--clr-white);
    box-shadow: 0 4px 20px rgba(227, 0, 15, 0.4);
}

.btn-primary:hover {
    background-color: transparent;
    border-color: var(--clr-red);
    box-shadow: 0 0 30px rgba(227, 0, 15, 0.6);
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--clr-white);
    color: var(--clr-white);
}

.btn-secondary:hover {
    background-color: var(--clr-white);
    color: var(--clr-black);
    transform: translateY(-3px);
}

/* --- Layout Sections --- */
.section {
    padding: 8rem 0;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center {
    text-align: center;
}

.dark-bg {
    background-color: var(--clr-dark);
}

.accent-bg {
    background: var(--gradient-accents);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

/* Glass Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.card-title {
    font-size: 2rem;
    margin-bottom: 2rem;
}

/* Decorative Card / Image Collage */
.decorative-card {
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(227, 0, 15, 0.3);
}

/* We Believe stacked images */
.believe-img-stack {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    min-height: unset;
    position: static;
}

.believe-img-top,
.believe-img-bottom {
    position: static !important;
    width: 100% !important;
    height: 260px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.believe-img-bottom {
    border: 2px solid var(--clr-green);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.image-collage {
    position: relative;
    width: 100%;
    min-height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.collage-img {
    position: absolute;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.1);
    object-fit: cover;
    transition: var(--trans-smooth);
}

.collage-img:hover {
    transform: scale(1.05) translateY(-5px) !important;
    z-index: 10 !important;
    border-color: var(--clr-red);
    box-shadow: 0 20px 40px rgba(227, 0, 15, 0.4);
}

.img-1 {
    width: 65%;
    height: 320px;
    top: 0;
    left: 0;
    z-index: 3;
    transform: rotate(-3deg);
}

.img-2 {
    width: 60%;
    height: 280px;
    bottom: 20px;
    right: 0;
    z-index: 2;
    transform: rotate(4deg);
}

.img-3 {
    width: 55%;
    height: 250px;
    top: 50px;
    left: 20%;
    z-index: 1;
    transform: rotate(1deg);
}

.glow-orb {
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0, 166, 63, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(30px);
}

.decorative-card::before {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(227, 0, 15, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(20px);
}

ul.principles-list {
    list-style: none;
}

ul.principles-list li {
    margin-bottom: 2rem;
}

.value-item {
    margin-bottom: 1.5rem;
}

.value-item h4 {
    margin-bottom: 0.5rem;
}

/* Pillars */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
    align-items: start;
}

.pillar-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    text-align: left;
}

.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.55);
}

.pillar-card-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.pillar-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.pillar-card:hover .pillar-card-image img {
    transform: scale(1.07);
}

.pillar-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 35%, rgba(0,0,0,0.6) 100%);
    pointer-events: none;
}

.pillar-card-badge {
    position: absolute;
    bottom: 0.75rem;
    left: 0.85rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.22rem 0.6rem;
    border-radius: 20px;
}

.pillar-red   { background: rgba(227, 0, 15, 0.9);  color: #fff; }
.pillar-green { background: rgba(0, 166, 63, 0.9);  color: #fff; }
.pillar-white { background: rgba(255,255,255,0.9);  color: #111; }

.pillar-card-body {
    padding: 1.2rem 1.25rem 1.5rem;
}

.pillar-accent {
    height: 3px;
    width: 32px;
    border-radius: 2px;
    margin-bottom: 0.7rem;
}

.pillar-accent-red   { background: var(--clr-red);   }
.pillar-accent-green { background: var(--clr-green); }
.pillar-accent-white { background: #fff; }

.pillar-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--clr-white);
}

.pillar-card p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.65);
    margin: 0;
}

.red-glow   { text-shadow: 0 0 20px rgba(227, 0, 15, 0.8); }
.green-glow { text-shadow: 0 0 20px rgba(0, 166, 63, 0.8); }
.white-glow { text-shadow: 0 0 20px rgba(255, 255, 255, 0.8); }

/* Mission & Vision */
.mission-vision-section {
    position: relative;
    overflow: hidden;
}

.mv-bg-layer {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.mv-bg-layer img {
    position: absolute;
    left: 0;
    top: -20%;
    width: 100%;
    height: 140%;
    object-fit: cover;
}

.mv-bg-mobile { display: none; }
.mv-bg-desktop { display: block; }

@media (max-width: 768px) {
    .mv-bg-desktop { display: none; }
    .mv-bg-mobile  { display: block; }
}

.mv-bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.78);
    z-index: 1;
}

.mv-content {
    position: relative;
    z-index: 2;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.mv-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.mv-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 0.3rem 0.9rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
}

.mv-label-red {
    background: rgba(227, 0, 15, 0.15);
    color: var(--clr-red);
    border: 1px solid rgba(227, 0, 15, 0.3);
}

.mv-label-green {
    background: rgba(0, 166, 63, 0.12);
    color: var(--clr-green);
    border: 1px solid rgba(0, 166, 63, 0.3);
}

.mv-statement {
    font-size: 1.15rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    margin: 0 0 1rem;
}

.mv-aspire {
    font-size: 0.95rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 768px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
}

/* Ecosystem page */
.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.eco-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.eco-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.18);
}

.eco-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
}

.eco-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.eco-card:hover .eco-card-image img {
    transform: scale(1.05);
}

.eco-card-image--placeholder {
    background: linear-gradient(135deg, rgba(227, 0, 15, 0.15) 0%, rgba(0, 166, 63, 0.15) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.eco-card-image--placeholder span {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
    padding: 0 1rem;
}

.eco-card-body {
    padding: 1.4rem 1.5rem 1.75rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.eco-card-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--clr-white);
    margin-bottom: 0.6rem;
    line-height: 1.3;
}

.eco-card-desc {
    font-size: 0.85rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 1rem;
    flex: 1;
}

.eco-card-link {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--clr-green);
    text-decoration: none;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: letter-spacing 0.2s ease;
    margin-top: auto;
}

.eco-card:hover .eco-card-link {
    letter-spacing: 0.1em;
}

/* Ecosystem logo card */
.eco-card-logo {
    width: 100%;
    height: 180px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.25rem;
    flex-shrink: 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.eco-card-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.eco-card-logo--fallback {
    background: linear-gradient(135deg, rgba(227, 0, 15, 0.12) 0%, rgba(0, 166, 63, 0.12) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.eco-card-logo--fallback span {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.45);
    text-align: center;
    padding: 0 1rem;
}

/* F.I.T. Lab section */
.eco-fitlab-section {
    background: rgba(0, 166, 63, 0.04);
    border: 1px solid rgba(0, 166, 63, 0.15);
    border-radius: 20px;
    padding: 2rem;
}

.eco-fitlab-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.75rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(0, 166, 63, 0.2);
    flex-wrap: wrap;
}

.eco-fitlab-logo-wrap {
    background: #fff;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    flex-shrink: 0;
}

.eco-fitlab-logo {
    height: 60px;
    width: auto;
    display: block;
}

.eco-fitlab-label {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--clr-green);
    margin: 0 0 0.2rem;
}

.eco-fitlab-sub {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0.25rem 0 0;
}

.eco-card--fitlab {
    border-color: rgba(0, 166, 63, 0.15);
}

.eco-card--fitlab:hover {
    border-color: rgba(0, 166, 63, 0.35);
}

/* ===== ECOSYSTEM BENTO GRID ===== */
.eco-category-sub {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.35);
    font-style: italic;
    margin: 0 0 0 auto;
    align-self: center;
}

.eco-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 260px;
    gap: 1rem;
}

.eco-bento-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #161616;
    border: 1px solid rgba(255,255,255,0.06);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.eco-bento-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.6);
}

.eco-bento-card--wide {
    grid-column: span 2;
}

/* Front face */
.eco-bento-face {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.75rem 1.25rem 1.25rem;
    gap: 0.6rem;
    transition: opacity 0.3s ease;
}

.eco-bento-card:hover .eco-bento-face {
    opacity: 0;
    pointer-events: none;
}

.eco-bento-logo-wrap {
    width: 130px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.eco-bento-logo-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.eco-bento-logo-wrap--portrait {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
}

.eco-bento-logo-wrap--portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.eco-bento-name {
    font-size: 0.82rem;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
    text-align: center;
    line-height: 1.3;
}

/* Hover reveal back */
.eco-bento-back {
    position: absolute;
    inset: 0;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0.4rem;
    transform: translateY(100%);
    transition: transform 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.eco-bento-card:hover .eco-bento-back {
    transform: translateY(0);
}

.eco-bento-back--fitness {
    background: linear-gradient(155deg, #6b0007 0%, #c8001a 100%);
}

.eco-bento-back--wellness {
    background: linear-gradient(155deg, #004a1a 0%, #007a30 100%);
}

.eco-bento-back--consulting {
    background: linear-gradient(155deg, #0d2a47 0%, #1a5a8a 100%);
}

.eco-bento-back--community {
    background: linear-gradient(155deg, #4a2e00 0%, #9a6200 100%);
}

.eco-bento-back-name {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
    margin: 0.2rem 0 0.3rem;
}

.eco-bento-back-desc {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.88);
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.eco-bento-back-link {
    display: inline-block;
    color: rgba(255,255,255,0.95);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.4);
    padding-bottom: 2px;
    align-self: flex-start;
    margin-top: 0.3rem;
    transition: border-color 0.2s;
}

.eco-bento-back-link:hover {
    border-color: rgba(255,255,255,0.9);
}

/* Full-width featured card */
.eco-bento-card--featured {
    grid-column: span 3;
    grid-row: auto;
    height: 160px;
}

.eco-bento-featured-inner {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    height: 100%;
    padding: 1.5rem 2rem;
}

.eco-bento-featured-logo {
    width: 120px;
    height: 80px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.eco-bento-featured-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.eco-bento-featured-content {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.eco-bento-featured-name {
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    margin: 0.2rem 0;
}

.eco-bento-featured-desc {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.55;
    margin: 0;
    max-width: 680px;
}

/* ===== F.I.T. LAB HORIZONTAL SCROLL ===== */
.fitlab-scroll-track {
    overflow-x: auto;
    overflow-y: visible;
    padding-bottom: 1.25rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(0,166,63,0.4) rgba(255,255,255,0.05);
    cursor: grab;
}

.fitlab-scroll-track:active {
    cursor: grabbing;
}

.fitlab-scroll-track::-webkit-scrollbar {
    height: 4px;
}

.fitlab-scroll-track::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.05);
    border-radius: 2px;
}

.fitlab-scroll-track::-webkit-scrollbar-thumb {
    background: rgba(0,166,63,0.4);
    border-radius: 2px;
}

.fitlab-scroll-inner {
    display: flex;
    gap: 1rem;
    padding: 0.5rem 0 0.5rem;
    width: max-content;
}

.fitlab-card {
    width: 220px;
    flex-shrink: 0;
    background: #0f1f10;
    border: 1px solid rgba(0,166,63,0.18);
    border-radius: 18px;
    padding: 1.5rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.fitlab-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0,166,63,0.45);
    box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}

.fitlab-card-logo {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fitlab-card-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.fitlab-card-name {
    font-size: 0.88rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
    line-height: 1.25;
}

.fitlab-card-desc {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
    margin: 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.fitlab-card-link {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--clr-green);
    text-decoration: none;
    margin-top: auto;
    padding-top: 0.25rem;
    transition: letter-spacing 0.2s ease;
}

.fitlab-card-link:hover {
    letter-spacing: 0.14em;
}

/* Drag-to-scroll indicator */
.fitlab-scroll-hint {
    text-align: right;
    font-size: 0.65rem;
    color: rgba(255,255,255,0.25);
    margin-top: 0.5rem;
    font-style: italic;
}

/* Responsive bento */
@media (max-width: 900px) {
    .eco-bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 230px;
    }
    .eco-bento-card--wide {
        grid-column: span 2;
    }
    .eco-bento-card--featured {
        grid-column: span 2;
        height: auto;
    }
    .eco-bento-featured-inner {
        flex-direction: column;
        gap: 1rem;
        padding: 1.25rem;
        height: auto;
    }
}

@media (max-width: 580px) {
    .eco-bento-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 200px;
        gap: 0.65rem;
    }
    .eco-bento-card--wide,
    .eco-bento-card--featured {
        grid-column: span 2;
    }
    .eco-bento-back {
        padding: 1rem;
    }
    .eco-bento-back-name {
        font-size: 0.85rem;
    }
    .eco-bento-back-desc {
        font-size: 0.72rem;
        -webkit-line-clamp: 4;
    }
    .eco-bento-card:hover .eco-bento-face {
        opacity: 0;
    }
}

/* Ecosystem filter bar */
.eco-filter-section {
    padding: 2.5rem 0 0;
    position: sticky;
    top: 70px;
    z-index: 90;
    background: var(--clr-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.eco-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding-bottom: 1.25rem;
    align-items: center;
}

.eco-filter-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.65);
    padding: 0.45rem 1rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    white-space: nowrap;
}

.eco-filter-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--clr-white);
    border-color: rgba(255, 255, 255, 0.25);
}

.eco-filter-btn.active {
    background: var(--clr-red);
    border-color: var(--clr-red);
    color: #fff;
}

/* Ecosystem category sections */
.eco-category-section {
    margin-bottom: 3.5rem;
    transition: opacity 0.3s ease;
}

.eco-category-section.hidden {
    display: none;
}

.eco-category-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.875rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.eco-category-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.eco-category-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--clr-white);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0;
}

/* Category tags on cards */
.eco-cat-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    margin-bottom: 0.5rem;
    background: rgba(0, 166, 63, 0.2);
    color: var(--clr-green);
    border: 1px solid rgba(0, 166, 63, 0.3);
}

.eco-cat-tag--red {
    background: rgba(227, 0, 15, 0.2);
    color: #ff6b6b;
    border-color: rgba(227, 0, 15, 0.3);
}

.eco-cat-tag--white {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.75);
    border-color: rgba(255, 255, 255, 0.15);
}

/* Ecosystem type badges (for filter) */
.eco-type-badge {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.2em 0.65em;
    border-radius: 99px;
    margin-bottom: 0.5rem;
}

.eco-type-fitness {
    background: rgba(227, 0, 15, 0.15);
    color: #ff6b6b;
    border: 1px solid rgba(227, 0, 15, 0.3);
}

.eco-type-wellness {
    background: rgba(0, 166, 63, 0.15);
    color: var(--clr-green);
    border: 1px solid rgba(0, 166, 63, 0.3);
}

.eco-type-consulting {
    background: rgba(100, 160, 230, 0.15);
    color: #7ab8f5;
    border: 1px solid rgba(100, 160, 230, 0.3);
}

.eco-type-community {
    background: rgba(200, 145, 30, 0.15);
    color: #f0b429;
    border: 1px solid rgba(200, 145, 30, 0.3);
}

.eco-cat-tag--green {
    background: rgba(0, 166, 63, 0.2);
    color: var(--clr-green);
    border-color: rgba(0, 166, 63, 0.3);
}

.eco-cat-tag--purple {
    background: rgba(150, 80, 220, 0.2);
    color: #b88af0;
    border-color: rgba(150, 80, 220, 0.3);
}

@media (max-width: 992px) {
    .ecosystem-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Partners page cards */
.partner-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.partner-card {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    color: var(--clr-white);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.5);
    border-color: var(--clr-green);
}

.partner-logo-wrap {
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 1.25rem;
}

.partner-logo-wrap--local {
    background: #111;
    padding: 1.5rem 2rem;
}

.partner-logo-wrap img {
    max-height: 80px;
    max-width: 100%;
    width: auto;
    object-fit: contain;
    display: block;
}

.partner-local-logo {
    max-height: 70px !important;
    filter: brightness(0) invert(1);
}

.partner-initials {
    display: none;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 14px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: #fff;
}

.partner-card-body {
    padding: 1.25rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.partner-card-body h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--clr-white);
    line-height: 1.3;
}

.partner-card-body p {
    font-size: 0.85rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 1rem;
    flex: 1;
}

.partner-visit {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--clr-green);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: letter-spacing 0.2s ease;
}

.partner-card:hover .partner-visit {
    letter-spacing: 0.1em;
}

@media (max-width: 992px) {
    .partner-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .partner-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* Partners */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto 2rem;
}

.partner-link {
    display: block;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: var(--clr-white);
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}

.partner-link:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--clr-green);
    transform: translateY(-2px);
}

/* Principles section: image as parallax background */
.principles-bg-section {
    position: relative;
    overflow: hidden;
}

.principles-bg-layer {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.principles-bg-layer img {
    position: absolute;
    left: 0;
    top: -20%;
    width: 100%;
    height: 140%;
    object-fit: cover;
}

.principles-bg-mobile { display: none; }
.principles-bg-desktop { display: block; }

@media (max-width: 768px) {
    .principles-bg-desktop { display: none; }
    .principles-bg-mobile  { display: block; }
}

.principles-bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    z-index: 1;
}

.principles-content {
    position: relative;
    z-index: 2;
}

.page-header {
    padding-top: 6rem;
}

.partners-page-grid {
    max-width: 1000px;
    margin: 0 auto;
}

.logo a {
    text-decoration: none;
    color: inherit;
}

.nav-links a.nav-active {
    color: var(--clr-green);
    border-color: var(--clr-green);
}

.nav-fitcomm {
    color: var(--clr-green) !important;
    font-weight: 700;
    border: 1px solid var(--clr-green);
    padding: 0.3rem 0.75rem !important;
    border-radius: 6px;
    transition: background 0.2s ease, color 0.2s ease !important;
}

.nav-fitcomm:hover {
    background: var(--clr-green);
    color: #000 !important;
}

/* News / Media Page */
/* ===== MEDIA PAGE — EDITORIAL LAYOUT ===== */

/* Hero Section */
.news-hero-section {
    position: relative;
    height: 80vh;
    min-height: 480px;
    max-height: 700px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    margin-top: 80px;
}

.news-hero-bg {
    position: absolute;
    inset: 0;
}

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

.news-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.55) 50%, rgba(0,0,0,0.2) 100%);
}

.news-hero-content {
    position: relative;
    z-index: 2;
    padding-bottom: 3.5rem;
    max-width: 820px;
}

.news-hero-tag {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.news-hero-pub-pill {
    background: var(--clr-red);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 0.3em 0.85em;
    border-radius: 99px;
}

.news-hero-dot {
    color: rgba(255,255,255,0.4);
    font-size: 0.8rem;
}

.news-hero-datestamp {
    color: rgba(255,255,255,0.55);
    font-size: 0.8rem;
    font-weight: 500;
}

.news-hero-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    margin: 0 0 1.5rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.news-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255,255,255,0.12);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 0.7em 1.4em;
    border-radius: 99px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    backdrop-filter: blur(6px);
    transition: background 0.2s ease, border-color 0.2s ease;
}

.news-hero-cta:hover {
    background: rgba(255,255,255,0.22);
    border-color: rgba(255,255,255,0.5);
}

/* Press Ticker */
.press-ticker-wrap {
    background: var(--clr-red);
    overflow: hidden;
    padding: 0.7rem 0;
    white-space: nowrap;
}

.press-ticker {
    display: inline-block;
    animation: tickerScroll 28s linear infinite;
}

.press-ticker span {
    display: inline-block;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0 1.2rem;
}

.press-ticker-sep {
    color: rgba(255,255,255,0.5) !important;
    font-size: 0.6rem !important;
}

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

/* Section Divider Labels */
.news-featured-section {
    padding-top: 3.5rem;
    padding-bottom: 3rem;
}

.news-list-section {
    background: #0d0d0d;
    padding: 3rem 0 5rem;
}

.news-section-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.news-section-rule {
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.12);
}

.news-section-text {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(255,255,255,0.4);
    white-space: nowrap;
}

/* Featured 3-up Cards */
.news-featured-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.news-feat-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    border-radius: 14px;
    overflow: hidden;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-feat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

.news-feat-img {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
}

.news-feat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-feat-card:hover .news-feat-img img {
    transform: scale(1.06);
}

.news-feat-pub-badge {
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
    background: rgba(0,0,0,0.75);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.3em 0.7em;
    border-radius: 6px;
    backdrop-filter: blur(4px);
}

.news-feat-body {
    padding: 1.25rem 1.4rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.4rem;
}

.news-feat-date {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--clr-red);
}

.news-feat-headline {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
    flex: 1;
    margin: 0;
}

.news-feat-cta {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--clr-green);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-top: 0.5rem;
    transition: letter-spacing 0.2s ease;
}

.news-feat-card:hover .news-feat-cta {
    letter-spacing: 0.13em;
}

/* News List — Newspaper row style */
.news-list {
    display: flex;
    flex-direction: column;
}

.news-list-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    text-decoration: none;
    color: inherit;
    transition: background 0.2s ease;
}

.news-list-item:first-child {
    border-top: 1px solid rgba(255,255,255,0.07);
}

.news-list-item:hover {
    background: rgba(255,255,255,0.03);
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    margin: 0 -0.5rem;
    border-radius: 8px;
}

.news-list-thumb {
    width: 90px;
    height: 64px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.news-list-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.news-list-item:hover .news-list-thumb img {
    transform: scale(1.08);
}

.news-list-thumb--video .news-list-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.5);
    color: #fff;
    font-size: 1.1rem;
}

.news-list-body {
    flex: 1;
    min-width: 0;
}

.news-list-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-bottom: 0.35rem;
}

.news-list-pub {
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--clr-red);
}

.news-list-sep {
    color: rgba(255,255,255,0.25);
    font-size: 0.7rem;
}

.news-list-date {
    font-size: 0.62rem;
    color: rgba(255,255,255,0.35);
    font-weight: 500;
}

.news-list-type-tag {
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.45);
    font-size: 0.58rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.15em 0.55em;
    border-radius: 4px;
}

.news-list-headline {
    font-size: 0.92rem;
    font-weight: 600;
    color: rgba(255,255,255,0.88);
    line-height: 1.4;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-list-item:hover .news-list-headline {
    color: #fff;
}

.news-list-arrow {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.2);
    flex-shrink: 0;
    transition: color 0.2s ease, transform 0.2s ease;
}

.news-list-item:hover .news-list-arrow {
    color: var(--clr-green);
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 900px) {
    .news-featured-row {
        grid-template-columns: 1fr 1fr;
    }
    .news-featured-row .news-feat-card:last-child {
        grid-column: 1 / -1;
        flex-direction: row;
    }
    .news-featured-row .news-feat-card:last-child .news-feat-img {
        width: 280px;
        height: auto;
    }
}

@media (max-width: 640px) {
    .news-hero-section {
        height: 60vh;
        margin-top: 72px;
    }
    .news-featured-row {
        grid-template-columns: 1fr;
    }
    .news-featured-row .news-feat-card:last-child {
        flex-direction: column;
    }
    .news-featured-row .news-feat-card:last-child .news-feat-img {
        width: 100%;
        height: 200px;
    }
    .news-list-headline {
        white-space: normal;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .news-list-thumb {
        width: 68px;
        height: 52px;
    }
}

/* Ecosystem Intro Section */
.eco-intro-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.eco-intro-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--clr-green);
    margin-bottom: 0.75rem;
}

.eco-intro-text p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.eco-intro-logo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.eco-intro-logo-item {
    background: #fff;
    border-radius: 12px;
    padding: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 110px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.eco-intro-logo-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.eco-intro-logo-item img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.eco-intro-logo-item--named {
    position: relative;
    padding: 0.75rem;
    overflow: hidden;
}

.eco-intro-logo-item--named img {
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.eco-intro-logo-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
    text-align: center;
    line-height: 1.2;
    padding: 0.3rem 0.25rem;
    background: rgba(0, 0, 0, 0.55);
}

@media (max-width: 900px) {
    .eco-intro-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .eco-intro-logo-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .eco-intro-logo-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
}

/* Footer */
.footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-lockup {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: inherit;
}

.logo-img {
    height: 38px;
    width: auto;
    display: block;
    flex-shrink: 0;
}

.footer-logo-img {
    height: 82px;
    width: auto;
    display: block;
    margin-bottom: 0.2rem;
}

.footer-logo {
    margin-bottom: 0.5rem;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
    margin: 0;
    max-width: 280px;
}

.footer-cert-badges {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex-wrap: wrap;
    margin: 0.4rem 0 0;
}

.footer-cert-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    border-radius: 6px;
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.footer-cert-img:hover {
    opacity: 1;
}

.footer-nav-heading {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 1rem;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-nav ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-nav ul li a:hover {
    color: var(--clr-green);
}

.footer-bottom {
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer-media {
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.media-heading {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.75rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--clr-white);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: background 0.2s ease, color 0.2s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--clr-green);
}

.social-icon {
    width: 24px;
    height: 24px;
}

/* --- Animations (Intersection Observer Targets) --- */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-in-up.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal,
.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    visibility: hidden;
}

.reveal.active {
    animation: fadeInUp 0.8s ease forwards;
}

.reveal-up.active {
    animation: fadeInUp 0.8s ease forwards;
}

.reveal-left.active {
    animation: fadeInLeft 0.8s ease forwards;
}

.reveal-right.active {
    animation: fadeInRight 0.8s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
        visibility: visible;
    }

    to {
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
        visibility: visible;
    }

    to {
        opacity: 1;
        transform: translateX(0);
        visibility: visible;
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
        visibility: visible;
    }

    to {
        opacity: 1;
        transform: translateX(0);
        visibility: visible;
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .pillars-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {

    .split-layout,
    .grid-2 {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 32px;
    height: 28px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}
.nav-toggle span {
    width: 100%;
    height: 3px;
    background: #111111;
    border-radius: 2px;
    transition: var(--trans-smooth);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: rgba(5, 5, 5, 0.98);
        flex-direction: column;
        justify-content: center;
        gap: 1.5rem;
        padding: 4rem 2rem;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }
    .nav-links.is-open {
        transform: translateX(0);
    }
    .nav-links li a {
        font-size: 1.1rem;
        color: var(--clr-white);
        border-color: rgba(255, 255, 255, 0.2);
        padding: 0.55rem 1.25rem;
    }
    .nav-links li a:hover {
        color: var(--clr-black);
        background: var(--clr-white);
        border-color: var(--clr-white);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    /* Who We Are collage: flat grid on mobile instead of overlapping */
    .image-collage {
        min-height: unset;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
        position: static;
    }

    .collage-img {
        position: static !important;
        width: 100% !important;
        height: 160px !important;
        transform: none !important;
        border-radius: 12px;
    }

    .img-3 {
        grid-column: 1 / -1;
        height: 200px !important;
    }

    .glow-orb {
        display: none;
    }

    /* Disable card/image parallax on mobile — only keep Mission & Vision bg active */
    .parallax-card[data-speed]:not(.mv-bg-layer),
    .parallax-img[data-speed] {
        transform: none !important;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section {
        padding: 5rem 0;
    }

    .hero-buttons {
        flex-direction: column;
    }
}