/* ============================================
   V2 — Green & Sustainability Theme
   CSS Variables & Design Tokens
   ============================================ */
:root {
    /* === Dark Neutral Theme (Default) === */
    --bg-color:          #09090B;
    --surface-color:     #18181B;
    --surface-2:         #27272A;
    --surface-hover:     #3F3F46;
    --text-primary:      #FAFAFA;
    --text-secondary:    #A1A1AA;
    --text-muted:        #71717A;

    /* Accent — Sustainability Green Palette */
    --accent:            #22C55E;
    --accent-light:      #4ADE80;
    --accent-dark:       #16A34A;
    --accent-dim:        rgba(34, 197, 94, 0.12);
    --accent-dim-strong: rgba(34, 197, 94, 0.22);

    /* Earth Tones */
    --earth-brown:       #92714F;
    --earth-tan:         #D6C4A4;
    --earth-sage:        #8FA68E;

    /* Borders */
    --border-color:      rgba(161, 161, 170, 0.15);
    --border-color-strong: rgba(161, 161, 170, 0.3);

    /* Shadows */
    --card-shadow:       0 4px 24px -4px rgba(0, 0, 0, 0.7), 0 2px 8px rgba(0, 0, 0, 0.4);
    --card-shadow-hover: 0 16px 48px -8px rgba(34, 197, 94, 0.18), 0 4px 16px rgba(0, 0, 0, 0.5);
    --glow-green:        0 0 30px rgba(34, 197, 94, 0.35);

    /* Hero */
    --hero-overlay-opacity: 0.8;

    /* Navbar */
    --navbar-bg:         rgba(9, 9, 11, 0.7);
    --navbar-border:     rgba(34, 197, 94, 0.12);

    /* Typography */
    --font-heading: 'Lora', serif;
    --font-body:    'Manrope', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    /* Layout */
    --container-width: 1200px;
    --card-radius:     8px;
    --card-radius-lg:  16px;
    --card-radius-xl:  24px;

    /* Transitions */
    --transition:      all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* === Light Neutral Theme === */
[data-theme="light"] {
    --bg-color:          #FAFAFA;
    --surface-color:     #FFFFFF;
    --surface-2:         #F4F4F5;
    --surface-hover:     #E4E4E7;
    --text-primary:      #09090B;
    --text-secondary:    #52525B;
    --text-muted:        #71717A;

    --accent:            #16A34A;
    --accent-light:      #22C55E;
    --accent-dark:       #15803D;
    --accent-dim:        rgba(22, 163, 74, 0.08);
    --accent-dim-strong: rgba(22, 163, 74, 0.15);

    --border-color:      rgba(82, 82, 91, 0.15);
    --border-color-strong: rgba(82, 82, 91, 0.3);

    --card-shadow:       0 4px 16px -4px rgba(0, 0, 0, 0.08), 0 1px 4px rgba(0, 0, 0, 0.06);
    --card-shadow-hover: 0 12px 32px -8px rgba(22, 163, 74, 0.16), 0 4px 10px rgba(0, 0, 0, 0.08);
    --glow-green:        0 0 20px rgba(22, 163, 74, 0.18);

    --navbar-bg:         rgba(250, 250, 250, 0.85);
    --navbar-border:     rgba(22, 163, 74, 0.1);
}

/* ============================================
   Reset & Base
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
    transition: background-color 0.35s ease, color 0.35s ease;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.2;
}

h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: var(--spacing-sm); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.45rem); }

p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul { list-style: none; }

img {
    max-width: 100%;
    display: block;
}

strong { color: var(--accent-light); font-weight: 600; }
em { color: var(--accent); font-style: normal; font-weight: 600; }

/* ============================================
   Layout Utilities
   ============================================ */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, var(--spacing-md));
}

.section { padding: var(--spacing-xl) 0; }

/* Simple banner used at the top of non-Home pages, in place of the hero */
.page-header {
    position: relative;
    overflow: hidden;
    padding: 150px 0 3rem;
    text-align: center;
    background: linear-gradient(180deg, var(--surface-color), var(--bg-color));
    border-bottom: 1px solid var(--border-color);
    perspective: 1200px;
}

.page-header-glow {
    position: absolute;
    inset: -35% -10% 0 -10%;
    height: 170%;
    background: radial-gradient(ellipse 55% 50% at 50% 15%, var(--accent-dim-strong), transparent 70%);
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
    will-change: transform;
}

.page-header-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
    transform-style: preserve-3d;
}

.page-header .container {
    position: relative;
    z-index: 1;
    transform-style: preserve-3d;
    will-change: transform, opacity;
}

.page-header h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 0.75rem;
}

.page-header p {
    max-width: 640px;
    margin: 0 auto;
    color: var(--text-secondary);
}

.page-header .subtitle { margin-bottom: 1rem; }

@media (max-width: 640px) {
    .page-header { padding: 120px 0 2.5rem; }
}

.section-header {
    margin-bottom: var(--spacing-lg);
}

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

.subtitle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    text-transform: uppercase;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 0.75rem;
    font-family: var(--font-body);
    padding: 0.3rem 0.85rem;
    border: 1px solid var(--accent-dim-strong);
    border-radius: 100px;
    background: var(--accent-dim);
}

.subtitle::before {
    content: '🌿';
    font-size: 0.9em;
}

.highlight {
    color: var(--accent);
    font-style: italic;
    position: relative;
}

[data-theme="light"] .hero .highlight {
    color: #A5D6A7; /* Light seafoam green for readability on dark hero bg */
}

.text-green { color: var(--accent); }

.section-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-top: 0.5rem;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: padding 0.3s ease, background 0.35s ease, box-shadow 0.35s ease;
    background: var(--navbar-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--navbar-border);
}

.navbar.scrolled {
    padding: 0.75rem 0;
    background: var(--surface-color);
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.2);
    border-bottom-color: var(--border-color);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.logo-leaf { font-size: 1.3rem; }
.logo-dot  { color: var(--accent); }

.logo-img {
    height: 64px;
    width: auto;
    object-fit: contain;
    border-radius: 50%;
    transition: var(--transition);
}

.navbar.scrolled .logo-img {
    height: 50px;
}

.logo-text {
    display: flex;
    align-items: center;
}

/* Nav Links */
.nav-links {
    display: flex;
    gap: 1.75rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 4px;
    color: var(--text-secondary);
    white-space: nowrap;
}

.nav-links a:not(.btn-nav)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-links a:not(.btn-nav):hover {
    color: var(--accent);
}

.nav-links a:not(.btn-nav):hover::after {
    width: 100%;
}

.nav-links a.nav-active:not(.btn-nav) { color: var(--accent); }
.nav-links a.nav-active:not(.btn-nav)::after { width: 100%; }

.btn-nav.nav-active {
    background: var(--accent);
    color: var(--bg-color) !important;
}

/* Nav "More" Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: none;
    border: none;
    padding: 0 0 4px;
    cursor: pointer;
}

.nav-dropdown-chevron {
    transition: transform 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown-toggle:focus-visible,
.nav-dropdown-toggle.nav-active {
    color: var(--accent);
}

.nav-dropdown:hover .nav-dropdown-chevron,
.nav-dropdown:focus-within .nav-dropdown-chevron {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    list-style: none;
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    min-width: 180px;
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: var(--card-shadow-hover, 0 12px 32px rgba(0, 0, 0, 0.25));
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 200;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown.open .nav-dropdown-chevron { transform: rotate(180deg); }

.nav-dropdown-menu li { width: 100%; }

.nav-dropdown-menu a {
    display: block;
    padding: 0.55rem 0.75rem;
    border-radius: 8px;
    font-size: 0.88rem;
    white-space: nowrap;
    color: var(--text-primary);
}

.nav-dropdown-menu a::after { display: none; }

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.nav-active {
    background: var(--accent-dim);
    color: var(--accent);
}

/* Nav CTA */
.btn-nav {
    border: 1.5px solid var(--accent);
    padding: 0.45rem 1.2rem;
    border-radius: 100px;
    color: var(--accent) !important;
    font-weight: 700;
    background: transparent;
    transition: var(--transition);
}

.btn-nav:hover {
    background: var(--accent) !important;
    color: #0A120A !important;
    box-shadow: var(--glow-green);
}

.btn-nav::after { display: none !important; }

/* ============================================
   Theme Toggle
   ============================================ */
.theme-toggle {
    background: none;
    border: 1.5px solid var(--border-color-strong);
    cursor: pointer;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: var(--spacing-sm);
    padding: 0.45rem;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    transition: var(--transition);
}

.theme-toggle:hover {
    background: var(--accent-dim);
    border-color: var(--accent);
    color: var(--accent);
    transform: rotate(20deg);
}

.theme-toggle i { width: 18px; height: 18px; display: block; }

.icon-moon { display: none; }
.icon-sun  { display: block; }

[data-theme="light"] .icon-moon { display: block; }
[data-theme="light"] .icon-sun  { display: none; }

/* ============================================
   Mobile Toggle (Hamburger)
   ============================================ */
.mobile-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    gap: 5px;
    margin-left: auto;
    margin-right: 0.5rem;
}

.mobile-toggle .bar {
    display: block;
    width: 24px;
    height: 2.5px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-toggle:hover .bar { background-color: var(--accent); }

.mobile-toggle.active .bar:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.mobile-toggle.active .bar:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.mobile-toggle.active .bar:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================
   Hero Section
   ============================================ */
.hero {
    height: 100vh;
    min-height: 640px;
    padding-top: 130px;
    padding-bottom: 32px;
    display: flex;
    align-items: center;
    align-items: safe center;
    position: relative;
    overflow: hidden;
    perspective: 1200px;
}

@media (max-width: 640px) {
    .hero { padding-top: 90px; }
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    transform-style: preserve-3d;
}

.hero-bg-img {
    width: 100%;
    height: 110%;
    object-fit: cover;
    transform-origin: center top;
    filter: saturate(1.1);
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(5, 20, 5, 0.90) 0%,
        rgba(10, 30, 10, 0.75) 50%,
        rgba(15, 40, 15, 0.55) 100%
    );
    opacity: var(--hero-overlay-opacity);
}

.hero-stamp {
    position: absolute;
    top: 140px;
    right: 5%;
    z-index: 10;
    pointer-events: none;
    opacity: 0.7;
    transform-style: preserve-3d;
    will-change: transform;
}

.hero-stamp img {
    height: 200px;
    width: auto;
    border-radius: 50%;
    filter: drop-shadow(0 0 30px rgba(34, 197, 94, 0.3));
    transform: rotate(12deg);
    transition: var(--transition-slow);
}

.hero:hover .hero-stamp img {
    transform: rotate(8deg) scale(1.05);
    opacity: 0.9;
}

/* Floating Eco Particles */
.eco-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
    transform-style: preserve-3d;
}

/* Outer layer: scroll-depth parallax (JS-driven translateY) */
.particle-layer {
    position: absolute;
    will-change: transform;
}

.particle-layer.p1 { left: 8%;  top: 20%; }
.particle-layer.p2 { left: 75%; top: 30%; }
.particle-layer.p3 { left: 20%; top: 70%; }
.particle-layer.p4 { left: 85%; top: 65%; }
.particle-layer.p5 { left: 50%; top: 80%; }

/* Inner layer: continuous CSS float/rotate, independent of scroll transform */
.particle {
    display: inline-block;
    font-size: 1.5rem;
    opacity: 0.6;
    animation: floatParticle linear infinite;
}

.particle.p1 { animation-duration: 14s; animation-delay: 0s; }
.particle.p2 { animation-duration: 18s; animation-delay: 2s; }
.particle.p3 { animation-duration: 12s; animation-delay: 4s; }
.particle.p4 { animation-duration: 16s; animation-delay: 1s; }
.particle.p5 { animation-duration: 20s; animation-delay: 3s; }

@keyframes floatParticle {
    0%   { transform: translateY(0px) rotate(0deg); opacity: 0.6; }
    50%  { transform: translateY(-30px) rotate(180deg); opacity: 0.3; }
    100% { transform: translateY(0px) rotate(360deg); opacity: 0.6; }
}

.hero-content {
    max-width: 840px;
    z-index: 2;
    position: relative;
    transform-style: preserve-3d;
    will-change: transform, opacity;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.4);
    color: var(--accent-light);
    padding: 0.45rem 1.1rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(8px);
}

[data-theme="light"] .hero-badge {
    color: #E8F5E9;
    border-color: rgba(232, 245, 232, 0.3);
    background: rgba(232, 245, 232, 0.1);
}

.hero-badge i { width: 14px; height: 14px; }

/* Hero Typography */
.hero h1 {
    font-size: clamp(2.4rem, 6vw, 4.8rem);
    line-height: 1.08;
    margin-bottom: var(--spacing-md);
    color: #E8F5E9;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
}

.hero p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    max-width: 580px;
    margin-bottom: var(--spacing-lg);
    color: rgba(168, 213, 168, 0.92);
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.85rem;
    border-radius: 100px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.82rem;
    letter-spacing: 1.2px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
}

.btn i { width: 16px; height: 16px; }

.btn-primary {
    background: linear-gradient(135deg, var(--accent-dark), var(--accent));
    color: #fff;
    border: 1.5px solid transparent;
    box-shadow: 0 4px 16px rgba(34, 197, 94, 0.35);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(34, 197, 94, 0.5);
}

.btn-outline {
    background: transparent;
    color: rgba(232, 245, 232, 0.92);
    border: 1.5px solid rgba(232, 245, 232, 0.45);
}

.btn-outline:hover {
    background: rgba(232, 245, 232, 0.1);
    border-color: rgba(232, 245, 232, 0.8);
    transform: translateY(-3px);
}

.btn-green-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.75rem;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    cursor: pointer;
    border: 1.5px solid var(--accent);
    color: var(--accent);
    background: transparent;
    font-family: var(--font-body);
}

.btn-green-outline:hover {
    background: var(--accent);
    color: #0A120A;
    box-shadow: var(--glow-green);
    transform: translateY(-2px);
}

.btn-green-outline i { width: 16px; height: 16px; }

.btn-block { width: 100%; justify-content: center; }

/* ============================================
   Scroll Indicator
   ============================================ */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.scroll-text {
    color: rgba(168, 213, 168, 0.6);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(168, 213, 168, 0.45);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 6px;
    background: var(--accent);
    border-radius: 3px;
    position: absolute;
    top: 7px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2.2s infinite;
    box-shadow: 0 0 6px var(--accent);
}

@keyframes scroll-wheel {
    0%   { top: 7px;  opacity: 1; }
    80%  { top: 22px; opacity: 0; }
    100% { top: 7px;  opacity: 0; }
}

/* ============================================
   Animations
   ============================================ */
.fade-in-up {
    opacity: 0;
    transform: translateY(56px) scale(0.97);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.fade-in-up.visible { opacity: 1; transform: translateY(0) scale(1); }

.fade-in-left {
    opacity: 0;
    transform: translateX(-64px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.fade-in-left.visible { opacity: 1; transform: translateX(0); }

.fade-in-right {
    opacity: 0;
    transform: translateX(64px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.fade-in-right.visible { opacity: 1; transform: translateX(0); }

.scale-in {
    opacity: 0;
    transform: scale(0.8) translateY(50px) rotate(-6deg);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.scale-in.visible { opacity: 1; transform: scale(1) translateY(0) rotate(0deg); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.22s; }
.delay-3 { transition-delay: 0.38s; }

/* Never let content stay permanently hidden if JS fails to run */
.no-js .fade-in-up,
.no-js .fade-in-left,
.no-js .fade-in-right,
.no-js .scale-in {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .fade-in-up,
    .fade-in-left,
    .fade-in-right,
    .scale-in {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
.delay-4 { transition-delay: 0.54s; }
.delay-5 { transition-delay: 0.70s; }

/* ============================================
   Stats Strip
   ============================================ */
.stats-strip {
    background: var(--surface-2);
    border-top:    1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 3rem 0;
    position: relative;
    z-index: 2;
}

.stats-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-dim) 0%, transparent 60%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    position: relative;
}

.stat-item {
    text-align: center;
    padding: var(--spacing-md) var(--spacing-sm);
    border: 1px solid var(--border-color);
    border-radius: var(--card-radius-lg);
    background: var(--surface-color);
    transition: var(--transition);
    cursor: default;
}

.stat-item:hover {
    border-color: var(--accent);
    box-shadow: var(--glow-green);
    transform: translateY(-4px);
}

.stat-item i {
    width: 28px;
    height: 28px;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.stat-number {
    display: block;
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 800;
    font-family: var(--font-heading);
    background: linear-gradient(135deg, var(--accent-dark), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-suffix {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-dark), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item p {
    margin: 0.5rem 0 0;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   About Section
   ============================================ */
.about-section {
    background: var(--surface-color);
    position: relative;
    overflow: hidden;
}

/* Clear the fixed navbar when jumped to directly (e.g. cross-page links
   like team.html -> index.html#about), where the JS-computed offset
   scroll doesn't apply. */
#about,
#impact-stats {
    scroll-margin-top: 120px;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-dim) 0%, transparent 70%);
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.about-text .subtitle { margin-bottom: 1rem; }

.about-text h2 {
    margin-bottom: var(--spacing-md);
    line-height: 1.15;
}

.lead {
    font-size: clamp(1.1rem, 2.8vw, 1.35rem);
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    font-family: var(--font-heading);
    line-height: 1.5;
    font-weight: 600;
}

/* About Right Side */
.about-visuals {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.about-img-wrapper {
    position: relative;
    height: 280px;
    border-radius: var(--card-radius-xl);
    overflow: hidden;
    box-shadow: var(--card-shadow-hover);
    border: 1px solid var(--border-color);
}

.about-img-parallax {
    position: absolute;
    inset: 0;
    will-change: transform;
}

.about-main-img {
    width: 100%;
    height: 130%;
    object-fit: cover;
    transition: transform 0.8s ease;
    filter: saturate(1.15);
}

.about-img-wrapper:hover .about-main-img {
    transform: scale(1.04);
}

.about-img-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(10, 18, 10, 0.82);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color-strong);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.78rem;
    color: var(--accent-light);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: 0.5px;
}

.about-img-badge i { width: 14px; height: 14px; }

[data-theme="light"] .about-img-badge {
    background: rgba(240, 250, 240, 0.9);
}

.about-value-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.value-card {
    background: var(--surface-2);
    border: 1px solid var(--border-color);
    border-radius: var(--card-radius-lg);
    padding: 1rem 0.5rem;
    text-align: center;
    transition: border-color var(--transition), background var(--transition), box-shadow var(--transition), transform 0.15s ease-out;
    cursor: default;
}

.value-card:hover {
    border-color: var(--accent);
    background: var(--accent-dim);
    box-shadow: var(--glow-green);
}

.value-card i {
    width: 24px;
    height: 24px;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.value-card h4 {
    font-size: 0.75rem;
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--text-secondary);
    line-height: 1.3;
}

/* ============================================
   Philosophy Section
   ============================================ */
.philosophy-section {
    background: var(--bg-color);
    position: relative;
    overflow: hidden;
}

.philosophy-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, var(--accent-dim) 0%, transparent 70%);
    pointer-events: none;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.card {
    background: var(--surface-color);
    padding: var(--spacing-lg) var(--spacing-md);
    border-radius: var(--card-radius-xl);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    box-shadow: var(--card-shadow);
    position: relative;
    overflow: hidden;
    cursor: default;
}

.card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-dim) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.card:hover::before { opacity: 1; }

.card:hover {
    border-color: var(--accent);
    box-shadow: var(--card-shadow-hover);
}

.card-icon-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.card-icon {
    width: 72px;
    height: 72px;
    background: var(--accent-dim);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border-color-strong);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.card-icon.featured {
    background: linear-gradient(135deg, var(--accent-dark), var(--accent));
    color: #fff;
    border-color: var(--accent);
    box-shadow: var(--glow-green);
}

.card-glow {
    position: absolute;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0;
    filter: blur(16px);
    transition: opacity 0.4s ease;
    top: 0;
}

.card-glow.featured { opacity: 0.25; }

.card:hover .card-glow { opacity: 0.2; }

.card:hover .card-icon:not(.featured) {
    background: linear-gradient(135deg, var(--accent-dark), var(--accent));
    color: #fff;
    border-color: var(--accent);
}

.card-icon i { width: 30px; height: 30px; }

.card h3 {
    font-family: var(--font-body);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-xs);
    color: var(--text-primary);
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.card p {
    font-size: 0.95rem;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.card-leaf-accent {
    position: absolute;
    bottom: 12px;
    right: 14px;
    font-size: 1.6rem;
    opacity: 0.15;
    transition: opacity 0.4s ease;
}

.card:hover .card-leaf-accent { opacity: 0.4; }

/* ============================================
   Brands Section
   ============================================ */
.brands-section {
    background: var(--surface-color);
    position: relative;
    overflow: hidden;
}

.brand-showcase {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.brand-item {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 0;
    align-items: stretch;
    background: var(--bg-color);
    border-radius: var(--card-radius-xl);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition-slow);
}

.brand-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--card-shadow-hover);
    border-color: var(--accent);
}

.brand-item.reverse {
    grid-template-columns: 1.3fr 1fr;
}

.brand-item.reverse .brand-content { order: 2; }
.brand-item.reverse .brand-image   { order: 1; }

.brand-content {
    padding: var(--spacing-lg) clamp(var(--spacing-md), 4vw, var(--spacing-lg));
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    background: var(--accent-dim);
    border: 1px solid var(--accent-dim-strong);
    padding: 0.3rem 0.8rem;
    border-radius: 100px;
    margin-bottom: var(--spacing-sm);
    width: fit-content;
}

.brand-tag i { width: 12px; height: 12px; }

.brand-content h3 {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    margin-bottom: var(--spacing-xs);
    color: var(--text-primary);
}

.brand-tagline {
    font-style: italic;
    color: var(--accent);
    margin-bottom: var(--spacing-sm);
    font-size: 1.05rem;
    font-weight: 500;
    font-family: var(--font-heading);
}

.brand-content p:not(.brand-tagline) {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.75;
}

.brand-pillars {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: var(--spacing-md);
    margin-top: var(--spacing-xs);
}

.brand-pillars span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-muted);
    border: 1px solid var(--border-color);
    padding: 0.3rem 0.7rem;
    border-radius: 100px;
    background: var(--surface-color);
    transition: var(--transition);
}

.brand-pillars span i { width: 12px; height: 12px; color: var(--accent); }

.brand-item:hover .brand-pillars span {
    border-color: var(--border-color-strong);
    color: var(--text-secondary);
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    width: fit-content;
    padding-bottom: 2px;
    border-bottom: 1px solid transparent;
}

.link-arrow:hover {
    border-bottom-color: var(--accent);
    gap: 0.75rem;
}

.link-arrow i { width: 16px; height: 16px; transition: transform 0.3s ease; }
.link-arrow:hover i { transform: translateX(4px); }

.brand-image {
    height: 100%;
    min-height: 380px;
    position: relative;
    overflow: hidden;
}

.brand-image-parallax {
    position: absolute;
    inset: 0;
    will-change: transform;
}

.brand-image img {
    width: 100%;
    height: 120%;
    object-fit: cover;
    transition: transform 0.9s ease;
    filter: saturate(1.1);
}

.brand-item:hover .brand-image img { transform: scale(1.07); }

.brand-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 50%,
        rgba(10, 18, 10, 0.7) 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.brand-stat {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.bstat-num {
    font-size: 2rem;
    line-height: 1;
}

.bstat-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(168, 213, 168, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   Services Section
   ============================================ */
.services-section {
    background: var(--bg-color);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: var(--spacing-lg);
}

.service-item {
    background: var(--surface-color);
    padding: var(--spacing-md) var(--spacing-md);
    border-radius: var(--card-radius-lg);
    position: relative;
    transition: var(--transition);
    cursor: default;
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-dark), var(--accent-light));
    transform: scaleX(0);
    transition: transform 0.35s ease;
    transform-origin: left;
}

.service-item:hover::before { transform: scaleX(1); }

.service-item:hover {
    border-color: var(--accent);
    box-shadow: var(--card-shadow-hover);
    background: var(--surface-2);
}

.service-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-dim);
    border-radius: var(--card-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.service-icon i { width: 22px; height: 22px; color: var(--accent); }

.service-item:hover .service-icon {
    background: linear-gradient(135deg, var(--accent-dark), var(--accent));
}

.service-item:hover .service-icon i { color: #fff; }

.service-number {
    display: block;
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--accent);
    opacity: 0.5;
    margin-bottom: 0.25rem;
    font-family: var(--font-body);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.service-item h4 {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.service-item p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.65;
}

/* Clickable / CTA service cards (link straight to the contact form) */
.service-item-cta {
    display: block;
    cursor: pointer;
    border-color: var(--accent-dim-strong);
    background: linear-gradient(180deg, var(--accent-dim), var(--surface-color) 55%);
}

.service-item-cta::before { transform: scaleX(1); opacity: 0.65; }
.service-item-cta:hover::before { opacity: 1; }

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.85rem;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
}

.service-cta i { width: 15px; height: 15px; transition: transform 0.25s ease; }

.service-item-cta:hover .service-cta i { transform: translateX(4px); }

/* ============================================
   Leadership Section
   ============================================ */
.leadership-section {
    background: var(--surface-color);
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.team-card {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: var(--card-radius-lg);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--card-shadow);
}

.team-card:hover {
    border-color: var(--accent);
    box-shadow: var(--card-shadow-hover);
}

.team-img {
    width: 100%;
    height: 320px;
    overflow: hidden;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.team-info {
    padding: var(--spacing-md);
    text-align: left;
}

.team-info h3 {
    margin-bottom: 0.2rem;
    color: var(--text-primary);
    font-size: 1.4rem;
}

.team-role {
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-info p:not(.team-role) {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.team-social {
    display: flex;
    gap: 0.75rem;
}

.team-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent-dim);
    color: var(--accent);
    transition: var(--transition);
    border: 1px solid transparent;
}

.team-social a:hover {
    background: var(--accent);
    color: var(--bg-color);
    box-shadow: var(--glow-green);
}

.team-social a .brand-icon {
    width: 16px;
    height: 16px;
}

/* ============================================
   Impact Section (Always Deep Green / Dark)
   ============================================ */
.impact-section {
    position: relative;
    padding: 120px 0;
    background: #020D02;
    color: #E8F5E9;
    overflow: hidden;
}

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

.impact-bg img {
    width: 100%;
    height: 140%;
    object-fit: cover;
    opacity: 0.25;
    filter: saturate(1.3) hue-rotate(10deg);
    will-change: transform;
}

.impact-green-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at center,
        rgba(34, 197, 94, 0.12) 0%,
        rgba(2, 13, 2, 0.6) 60%,
        rgba(2, 13, 2, 0.85) 100%
    );
}

.impact-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    border: 1px solid rgba(34, 197, 94, 0.35);
    padding: clamp(2rem, 6vw, 4rem);
    background: rgba(2, 13, 2, 0.78);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--card-radius-xl);
    box-shadow: 0 0 60px rgba(34, 197, 94, 0.12);
}

.impact-leaf-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.impact-content h2 {
    color: #E8F5E9;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    margin-bottom: var(--spacing-sm);
}

.impact-sub {
    color: rgba(165, 200, 160, 0.85);
    margin-bottom: var(--spacing-md);
    font-size: 1rem;
}

.impact-list {
    text-align: left;
    display: inline-block;
}

.impact-list li {
    font-size: 1.05rem;
    margin-bottom: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(232, 245, 232, 0.88);
}

.impact-list li:last-child { margin-bottom: 0; }

.impact-list li i {
    color: var(--accent-light);
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.key-highlights-glance {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.key-highlights-list {
    margin-top: 0.85rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.key-highlights-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    color: var(--text-secondary);
    font-size: 0.98rem;
    line-height: 1.6;
}

.key-highlights-list li i {
    color: var(--accent);
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
}

/* ============================================
   Work & Achievements Section
   ============================================ */
.achievement-card {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: var(--card-radius-xl);
    padding: clamp(1.5rem, 4vw, 2.5rem);
    box-shadow: var(--card-shadow);
    margin-top: var(--spacing-lg);
}

.achievement-card + .achievement-card { margin-top: var(--spacing-md); }

.achievement-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
    background: var(--accent-dim);
    border: 1px solid var(--accent-dim-strong);
    border-radius: var(--card-radius-lg);
    padding: 1.1rem 1.4rem;
    margin-bottom: 1.5rem;
}

.achievement-badge i {
    width: 30px;
    height: 30px;
    color: var(--accent);
    flex-shrink: 0;
}

.achievement-badge strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.achievement-badge span {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.achievement-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
    margin-top: 0.85rem;
}

.achievement-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 600;
}

.achievement-meta i {
    width: 15px;
    height: 15px;
    color: var(--accent);
}

.achievement-gallery {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.75rem;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) transparent;
}

.achievement-gallery img {
    scroll-snap-align: start;
    flex: 0 0 auto;
    width: min(360px, 75vw);
    height: 250px;
    object-fit: cover;
    border-radius: var(--card-radius-lg);
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
    will-change: transform;
}

/* ============================================
   Clients Section
   ============================================ */
.clients-marquee {
    margin-top: var(--spacing-lg);
    overflow: hidden;
    -webkit-mask-image: linear-gradient(
        90deg,
        transparent 0,
        #000 8%,
        #000 92%,
        transparent 100%
    );
    mask-image: linear-gradient(
        90deg,
        transparent 0,
        #000 8%,
        #000 92%,
        transparent 100%
    );
}

.clients-track {
    display: flex;
    gap: 1.25rem;
    width: max-content;
    animation: clients-scroll 32s linear infinite;
}

.clients-marquee:hover .clients-track { animation-play-state: paused; }

@keyframes clients-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .clients-track {
        animation: none;
        flex-wrap: wrap;
        width: 100%;
    }
    .clients-marquee { overflow-x: auto; -webkit-mask-image: none; mask-image: none; }
    /* Hide the duplicated set used only to loop the animation */
    .clients-track > *:nth-child(n + 8) { display: none; }
}

.client-card {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: var(--card-radius-lg);
    box-shadow: var(--card-shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    height: 130px;
    width: 200px;
    flex: 0 0 auto;
    transition: var(--transition);
}

.client-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: var(--card-shadow-hover);
}

.client-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.75;
    transition: var(--transition);
}

.client-card:hover img {
    filter: grayscale(0);
    opacity: 1;
}

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

.client-card-text span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

.client-card-text:hover span { color: var(--accent); }

/* ============================================
   Contact Section
   ============================================ */
.contact-section { background: var(--surface-color); }

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(var(--spacing-lg), 6vw, var(--spacing-xl));
    align-items: start;
}

.contact-info h2 {
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
}

.contact-info > p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    line-height: 1.75;
}

.contact-details { margin-bottom: var(--spacing-lg); }

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: var(--spacing-sm);
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.contact-icon-wrap {
    width: 40px;
    height: 40px;
    background: var(--accent-dim);
    border: 1px solid var(--border-color-strong);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-detail-item:hover .contact-icon-wrap {
    background: var(--accent);
    border-color: var(--accent);
}

.contact-icon-wrap i {
    width: 18px;
    height: 18px;
    color: var(--accent);
    transition: var(--transition);
}

.contact-detail-item:hover .contact-icon-wrap i { color: #fff; }

.email-list {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.email-list a {
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

.email-list a:hover { color: var(--accent); }

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-bottom: var(--spacing-md);
}

.social-links a {
    width: 44px;
    height: 44px;
    border: 1.5px solid var(--border-color-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--text-muted);
    transition: var(--transition);
}

.social-links a .brand-icon { width: 18px; height: 18px; }

.social-links a:hover {
    background: var(--accent);
    color: #0A120A;
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: var(--glow-green);
}

.eco-pledge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border: 1px solid var(--border-color-strong);
    border-radius: var(--card-radius-lg);
    background: var(--accent-dim);
    font-size: 0.875rem;
    color: var(--accent);
    font-weight: 600;
    font-style: italic;
}

.eco-pledge i { width: 18px; height: 18px; flex-shrink: 0; }

/* Contact Form */
.contact-form {
    background: var(--bg-color);
    padding: clamp(1.5rem, 4vw, 2.5rem);
    border-radius: var(--card-radius-xl);
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
}

.form-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 1px solid var(--border-color);
}

.form-header h3 {
    font-size: 1.2rem;
    font-family: var(--font-body);
    font-weight: 700;
}

.form-header i { width: 20px; height: 20px; color: var(--accent); }

.form-group { margin-bottom: 1.5rem; }

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.85rem 1rem;
    background: var(--surface-color);
    border: 1.5px solid var(--border-color);
    color: var(--text-primary);
    border-radius: var(--card-radius-lg);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    appearance: none;
    -webkit-appearance: none;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322C55E' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-dim);
    background: var(--surface-2);
}

.form-group textarea {
    resize: vertical;
    min-height: 110px;
}

.form-success {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 600;
    text-align: center;
    min-height: 1.5em;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    padding: var(--spacing-lg) 0 var(--spacing-md);
    border-top: 1px solid var(--border-color);
    background: var(--bg-color);
}

.footer-top {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.footer-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 64px;
    width: auto;
    object-fit: contain;
    border-radius: 50%;
}

.footer-logo span { color: var(--accent); }

.footer-tagline {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin: 0;
}

[data-theme="light"] .footer-tagline {
    color: #166534; /* Deep forest green for readability on white */
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    margin-bottom: var(--spacing-md);
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 600;
    transition: color 0.2s ease;
}

.footer-links a:hover { color: var(--accent); }

.footer-bottom {
    text-align: center;
    border-top: 1px solid var(--border-color);
    padding-top: var(--spacing-md);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.84rem;
    margin-bottom: 0.25rem;
}

.footer-eco {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ============================================
   Responsive — Tablet (≤ 992px)
   ============================================ */
@media (max-width: 992px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 5rem;
    }

    .about-grid        { grid-template-columns: 1fr; }
    .about-visuals     { margin-top: 0; }
    .about-value-cards { grid-template-columns: repeat(4, 1fr); }

    .brand-item,
    .brand-item.reverse { grid-template-columns: 1fr; }

    .brand-item.reverse .brand-content,
    .brand-item.reverse .brand-image { order: unset; }

    .brand-image { min-height: 280px; order: -1; }
    .brand-item.reverse .brand-image { order: -1; }

    .cards-grid     { grid-template-columns: repeat(2, 1fr); }
    .services-grid  { grid-template-columns: repeat(2, 1fr); }
    .contact-wrapper{ grid-template-columns: 1fr; }
    .stats-grid     { grid-template-columns: repeat(2, 1fr); }

    /* Mobile nav */
    .nav-links {
        display: none;
        position: absolute;
        top: calc(100% + 1px);
        left: 0;
        width: 100%;
        background: var(--surface-color);
        flex-direction: column;
        padding: var(--spacing-md);
        gap: 0.5rem;
        border-bottom: 3px solid var(--accent);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }

    .nav-links.active { display: flex; }

    .nav-links a {
        font-size: 1rem;
        padding: 0.6rem 0;
        border-bottom: 1px solid var(--border-color);
        color: var(--text-primary);
    }

    .nav-links li:last-child a { border-bottom: none; }

    .mobile-toggle { display: flex; }

    /* Dropdown becomes an always-open inline group on touch/mobile */
    .nav-dropdown-toggle {
        width: 100%;
        justify-content: space-between;
        font-size: 1rem;
        padding: 0.6rem 0;
        border-bottom: 1px solid var(--border-color);
        cursor: default;
    }

    .nav-dropdown-chevron { display: none; }

    .nav-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        min-width: 0;
        background: none;
        border: none;
        box-shadow: none;
        padding: 0 0 0 1rem;
    }

    .nav-dropdown-menu a {
        padding: 0.6rem 0;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-dropdown-menu li:last-child a { border-bottom: none; }
}

/* ============================================
   Responsive — Mobile (≤ 576px)
   ============================================ */
@media (max-width: 576px) {
    :root {
        --spacing-lg: 2.5rem;
        --spacing-xl: 4rem;
    }

    .hero h1 { font-size: 2.1rem; }
    .hero p  { font-size: 0.95rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    
    .hero-stamp { top: 80px; right: 2%; }
    .hero-stamp img { height: 120px; }

    .section { padding: var(--spacing-lg) 0; }

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

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

    .brand-image { min-height: 220px; }

    .navbar  { padding: 1rem 0; }
    .logo {font-size: 1.45rem; }

    .leadership-card {
        flex-direction: column;
        text-align: center;
    }

    .leader-badges { justify-content: center; }

    .footer-links { gap: var(--spacing-sm); }
}

/* ============================================
   Articles Section
   ============================================ */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.75rem;
    margin-top: var(--spacing-lg);
}

.article-card {
    display: flex;
    flex-direction: column;
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: var(--card-radius-lg);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

.article-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent);
    box-shadow: var(--card-shadow-hover);
}

.article-card-img {
    height: 200px;
    overflow: hidden;
}

.article-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

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

.article-card-tag {
    display: inline-block;
    align-self: flex-start;
    color: var(--accent);
    background: var(--accent-dim);
    border: 1px solid var(--accent-dim-strong);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.3rem 0.75rem;
    border-radius: 100px;
    margin-bottom: 0.85rem;
}

.article-card-body h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 0.6rem;
    line-height: 1.35;
}

.article-card-body p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    margin-bottom: 1rem;
}

.article-card-meta {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-top: auto;
    margin-bottom: 0.75rem;
}

/* Full article page */
.article-hero-img-wrapper {
    position: relative;
    height: 420px;
    overflow: hidden;
    border-radius: var(--card-radius-lg);
    margin-bottom: var(--spacing-md);
    box-shadow: var(--card-shadow);
}

.article-hero-img-parallax {
    position: absolute;
    inset: 0;
    will-change: transform;
}

.article-hero-img {
    width: 100%;
    height: 130%;
    object-fit: cover;
}

@media (max-width: 576px) {
    .article-hero-img-wrapper { height: 260px; }
}

.article-body {
    max-width: 760px;
    margin: 0 auto;
}

.article-body p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.4rem;
}

.article-body h2 {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    margin: var(--spacing-md) 0 1rem;
}

.article-body blockquote {
    border-left: 3px solid var(--accent);
    padding: 0.25rem 0 0.25rem 1.25rem;
    margin: 1.75rem 0;
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.15rem;
    color: var(--text-primary);
}

.article-meta-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: var(--spacing-md);
}

.article-cta {
    margin-top: var(--spacing-lg);
    padding: 2rem;
    text-align: center;
    background: var(--accent-dim);
    border: 1px solid var(--accent-dim-strong);
    border-radius: var(--card-radius-lg);
}

.article-cta h3 { margin-bottom: 0.5rem; }
.article-cta p { color: var(--text-secondary); margin-bottom: 1.25rem; }

@media (max-width: 576px) {
    .article-body p { font-size: 1rem; }
}

/* ================================================================
   V2 CINEMATIC REDESIGN — Phase 1: Homepage Nav / Hero / Stats
   New design tokens + components. Scoped to new class names so the
   existing site (all other pages, and everything on this page below
   the stats section) is completely unaffected.
   ================================================================ */
:root {
    --v2-near-black: #07120D;
    --v2-charcoal:   #0B1F16;
    --v2-forest:     #123524;
    --v2-forest-mid: #1E5138;
    --v2-electric:   #6FAF72;
    --v2-off-white:  #E8EFE8;
    --v2-paper:      #F4F5EF;
    --v2-ink:        #0A0A0A;
    --v2-sans: 'Manrope', sans-serif;
    --v2-serif: 'Lora', serif;
}

/* ---------- Nav V2 ---------- */
.nav-v2 {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1.75rem 0;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background 0.5s ease, padding 0.4s ease, backdrop-filter 0.5s ease, border-color 0.5s ease;
}

.nav-v2.scrolled {
    padding: 1.1rem 0;
    background: rgba(7, 18, 13, 0.72);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    border-bottom-color: rgba(232, 239, 232, 0.08);
}

.nav-v2-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-v2-logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
    color: var(--v2-off-white);
    font-family: var(--v2-sans);
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin-right: auto;
}

.nav-v2-logo-img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.nav-v2-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-v2-links a {
    color: rgba(232, 239, 232, 0.82);
    text-decoration: none;
    font-family: var(--v2-sans);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
}

.nav-v2-links a::after {
    content: '';
    position: absolute;
    left: 0; right: 100%;
    bottom: -6px;
    height: 1px;
    background: var(--v2-electric);
    transition: right 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-v2-links a:hover { color: var(--v2-off-white); }
.nav-v2-links a:hover::after { right: 0; }

.nav-v2-cta {
    border: 1.5px solid rgba(232, 239, 232, 0.35);
    color: var(--v2-off-white);
    text-decoration: none;
    font-family: var(--v2-sans);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    padding: 0.7rem 1.5rem;
    border-radius: 100px;
    white-space: nowrap;
    transition: var(--transition);
}

.nav-v2-cta:hover {
    background: var(--v2-electric);
    border-color: var(--v2-electric);
    color: var(--v2-near-black);
}

.nav-v2 .theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--v2-off-white);
    width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}
.nav-v2 .theme-toggle:hover { background: rgba(232, 239, 232, 0.1); }
.nav-v2 .theme-toggle svg,
.nav-v2 .theme-toggle i { width: 18px; height: 18px; }

.nav-v2-toggle {
    display: none;
    width: 44px; height: 44px;
    border: none; background: none; cursor: pointer;
    flex-direction: column; align-items: center; justify-content: center;
    gap: 6px;
}
.nav-v2-toggle span {
    display: block; width: 22px; height: 2px;
    background: var(--v2-off-white);
    transition: transform 0.3s ease;
}
.nav-v2-toggle.open span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.nav-v2-toggle.open span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

.nav-v2-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--v2-near-black);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
.nav-v2-menu.open { opacity: 1; visibility: visible; pointer-events: auto; }

.nav-v2-menu ul {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.nav-v2-menu a {
    font-family: var(--v2-serif);
    font-size: clamp(1.9rem, 7vw, 3.2rem);
    color: var(--v2-off-white);
    text-decoration: none;
    opacity: 0;
    transform: translateY(24px);
    display: inline-block;
    transition: opacity 0.5s ease, transform 0.5s ease, color 0.3s ease;
    transition-delay: calc(var(--i) * 0.06s);
}
.nav-v2-menu.open a { opacity: 1; transform: translateY(0); }
.nav-v2-menu a:hover { color: var(--v2-electric); }

.nav-v2-menu-cta {
    border: 1.5px solid var(--v2-electric);
    color: var(--v2-electric);
    text-decoration: none;
    padding: 0.9rem 2.2rem;
    border-radius: 100px;
    font-family: var(--v2-sans);
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    font-size: 0.82rem;
}

body.nav-v2-menu-open { overflow: hidden; }

.nav-v2-dropdown { position: relative; }
.nav-v2-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: none;
    border: none;
    cursor: pointer;
    color: rgba(232, 239, 232, 0.82);
    font-family: var(--v2-sans);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0;
    transition: color 0.3s ease;
}
.nav-v2-dropdown-toggle svg { transition: transform 0.3s ease; }
.nav-v2-dropdown:hover .nav-v2-dropdown-toggle,
.nav-v2-dropdown-toggle[aria-expanded="true"] { color: var(--v2-electric); }
.nav-v2-dropdown:hover .nav-v2-dropdown-toggle svg,
.nav-v2-dropdown-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }

.nav-v2-dropdown-menu {
    position: absolute;
    top: calc(100% + 1.25rem);
    left: 50%;
    transform: translateX(-50%);
    min-width: 200px;
    list-style: none;
    background: rgba(7, 18, 13, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(232, 239, 232, 0.12);
    border-radius: 14px;
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}
.nav-v2-dropdown:hover .nav-v2-dropdown-menu,
.nav-v2-dropdown.open .nav-v2-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(4px);
}
.nav-v2-dropdown-menu li + li { margin-top: 0.15rem; }
.nav-v2-dropdown-menu a {
    display: block;
    padding: 0.65rem 0.9rem;
    border-radius: 8px;
    color: rgba(232, 239, 232, 0.82);
    font-family: var(--v2-sans);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
}
.nav-v2-dropdown-menu a:hover { background: rgba(111, 175, 114, 0.15); color: var(--v2-electric); }

@media (max-width: 1100px) {
    .nav-v2-links { display: none; }
    .nav-v2-cta { display: none; }
    .nav-v2-toggle { display: flex; }
}

/* ---------- Hero V2 ---------- */
.hero-v2 {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    background: var(--v2-near-black);
}

.hero-v2-media { position: absolute; inset: 0; z-index: 0; }
.hero-v2-img {
    width: 100%; height: 100%;
    object-fit: cover;
    transform: scale(1.08);
    filter: saturate(0.9) brightness(0.75);
    animation: heroV2Zoom 26s ease-in-out infinite alternate;
}
@keyframes heroV2Zoom {
    from { transform: scale(1.08) translate3d(0, 0, 0); }
    to   { transform: scale(1.18) translate3d(-1%, -1%, 0); }
}

.hero-v2-scrim {
    position: absolute; inset: 0;
    background:
        linear-gradient(180deg, rgba(7,18,13,0.55) 0%, rgba(7,18,13,0.35) 40%, rgba(7,18,13,0.88) 100%),
        linear-gradient(90deg, rgba(7,18,13,0.6) 0%, rgba(7,18,13,0.1) 45%, rgba(7,18,13,0.5) 100%);
}

.hero-v2-motes { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero-v2-mote {
    position: absolute;
    left: var(--x); top: var(--y);
    width: var(--s, 4px); height: var(--s, 4px);
    border-radius: 50%;
    background: var(--v2-electric);
    box-shadow: 0 0 10px 2px rgba(111, 175, 114, 0.65);
    opacity: var(--o, 0.5);
    animation: moteDrift var(--dur, 8s) ease-in-out infinite alternate;
}
@keyframes moteDrift {
    from { transform: translate3d(0, 0, 0); }
    to   { transform: translate3d(10px, -18px, 0); }
}

.hero-v2-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
    width: 100%;
}

.hero-v2-kicker {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--v2-sans);
    font-size: clamp(0.95rem, 1.8vw, 1.35rem);
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--v2-electric);
    text-shadow: 0 0 24px rgba(111, 175, 114, 0.5);
    margin-bottom: 2.25rem;
    opacity: 0;
}

.hero-v2-kicker-line {
    display: inline-block;
    width: 56px;
    height: 2px;
    background: linear-gradient(90deg, var(--v2-electric), transparent);
    flex-shrink: 0;
}

@media (max-width: 576px) {
    .hero-v2-kicker { letter-spacing: 2.5px; gap: 0.6rem; }
    .hero-v2-kicker-line { width: 32px; }
}

.hero-v2-headline {
    font-family: var(--v2-sans);
    font-weight: 800;
    font-size: clamp(2.8rem, 9vw, 7.2rem);
    line-height: 0.98;
    letter-spacing: -2px;
    color: var(--v2-off-white);
    text-transform: uppercase;
    margin: 0;
}
.hero-v2-line { display: block; overflow: hidden; }
.hero-v2-line-inner { display: block; transform: translateY(110%); }
.hero-v2-accent { color: var(--v2-electric); }

.hero-v2-sub-wrap { overflow: hidden; margin: 1.25rem 0 1.75rem; }
.hero-v2-sub-inner {
    display: block;
    font-family: var(--v2-serif);
    font-style: italic;
    font-size: clamp(1.25rem, 2.6vw, 2rem);
    color: rgba(232, 239, 232, 0.88);
    transform: translateY(110%);
}
.hero-v2-sub-inner em { color: var(--v2-electric); font-style: italic; }

.hero-v2-desc {
    max-width: 560px;
    font-family: var(--v2-sans);
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(232, 239, 232, 0.7);
    margin-bottom: 2.5rem;
    opacity: 0;
}

.hero-v2-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    opacity: 0;
}

.hero-v2-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2.1rem;
    border-radius: 100px;
    font-family: var(--v2-sans);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition);
}
.hero-v2-btn--primary { background: var(--v2-electric); color: var(--v2-near-black); }
.hero-v2-btn--primary:hover { background: var(--v2-off-white); transform: translateY(-2px); }
.hero-v2-btn--ghost { border: 1.5px solid rgba(232, 239, 232, 0.35); color: var(--v2-off-white); }
.hero-v2-btn--ghost:hover { border-color: var(--v2-electric); color: var(--v2-electric); }

.hero-v2-scroll {
    position: absolute;
    bottom: 2.5rem; left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    color: rgba(232, 239, 232, 0.6);
    font-family: var(--v2-sans);
    font-size: 0.66rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    opacity: 0;
}
.hero-v2-scroll-line {
    width: 1px; height: 40px;
    background: linear-gradient(180deg, rgba(232, 239, 232, 0.7), transparent);
    position: relative;
    overflow: hidden;
}
.hero-v2-scroll-line::after {
    content: '';
    position: absolute; top: -100%; left: 0;
    width: 100%; height: 100%;
    background: var(--v2-electric);
    animation: scrollLineDrop 2.2s ease-in-out infinite;
}
@keyframes scrollLineDrop {
    0% { top: -100%; }
    60% { top: 100%; }
    100% { top: 100%; }
}

@media (max-width: 768px) {
    .hero-v2-content { padding: 0 1.5rem; }
    .hero-v2-headline { letter-spacing: -1px; }
    .hero-v2-desc { font-size: 0.95rem; }
    .hero-v2-scroll { display: none; }
}

.no-js .hero-v2-line-inner,
.no-js .hero-v2-sub-inner { transform: none; }
.no-js .hero-v2-kicker,
.no-js .hero-v2-desc,
.no-js .hero-v2-actions,
.no-js .hero-v2-scroll { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
    .hero-v2-img { animation: none; transform: scale(1); }
    .hero-v2-mote { animation: none; }
    .hero-v2-scroll-line::after { animation: none; display: none; }
    .hero-v2-line-inner,
    .hero-v2-sub-inner { transform: none; }
    .hero-v2-kicker,
    .hero-v2-desc,
    .hero-v2-actions,
    .hero-v2-scroll { opacity: 1; }
}

/* ---------- Stats V2 ---------- */
.stats-v2 {
    background: var(--v2-paper);
    padding: 5rem 0;
}
.stats-v2-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.stats-v2-item {
    text-align: center;
    padding: 0 1rem;
    border-left: 1px solid rgba(10, 10, 10, 0.1);
}
.stats-v2-item:first-child { border-left: none; }

.stats-v2-number-wrap {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 2px;
}
.stats-v2-number {
    font-family: var(--v2-sans);
    font-weight: 800;
    font-size: clamp(2.4rem, 5vw, 4rem);
    color: var(--v2-ink);
    letter-spacing: -1px;
    line-height: 1;
}
.stats-v2-suffix {
    font-family: var(--v2-sans);
    font-weight: 800;
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    color: var(--v2-ink);
}
.stats-v2-label {
    display: block;
    margin-top: 0.75rem;
    font-family: var(--v2-sans);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(10, 10, 10, 0.55);
}

@media (max-width: 768px) {
    .stats-v2-inner { grid-template-columns: repeat(2, 1fr); row-gap: 2.5rem; }
    .stats-v2-item:nth-child(3) { border-left: none; }
}

/* ---------- Impact V2 (Achievements as case studies) ---------- */
.impact-v2-case {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
    margin-top: var(--spacing-xl);
}

.impact-v2-case-img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: var(--card-radius-lg);
    display: block;
}

.impact-v2-case-thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-top: 0.75rem;
}
.impact-v2-case-thumbs img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: var(--card-radius);
    filter: grayscale(0.35);
    transition: transform 0.4s ease, filter 0.4s ease;
}
.impact-v2-case-thumbs img:hover { transform: scale(1.04); filter: grayscale(0); }

.impact-v2-case-index {
    display: block;
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1;
    font-weight: 700;
    color: var(--border-color-strong);
    margin-bottom: 0.5rem;
}

.impact-v2-case-tag {
    display: inline-block;
    color: var(--accent);
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
}

.impact-v2-case-content h3 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 1rem; }
.impact-v2-case-content p { color: var(--text-secondary); line-height: 1.75; margin-bottom: 1.5rem; }

.impact-v2-case-meta { display: flex; flex-direction: column; gap: 0.6rem; }
.impact-v2-case-meta span {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}
.impact-v2-case-meta i { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }

.impact-v2-minor-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
    margin-top: clamp(2.5rem, 5vw, 4rem);
}

.impact-v2-minor {
    padding: 2.25rem;
    border: 1px solid var(--border-color);
    border-radius: var(--card-radius-lg);
    background: var(--surface-color);
    transition: var(--transition);
}
.impact-v2-minor:hover { border-color: var(--accent); box-shadow: var(--glow-green); }
.impact-v2-minor .impact-v2-case-index { font-size: 2.25rem; margin-bottom: 1rem; }
.impact-v2-minor > i { width: 28px; height: 28px; color: var(--accent); display: block; margin-bottom: 1rem; }
.impact-v2-minor h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.impact-v2-minor p { color: var(--text-secondary); line-height: 1.65; margin: 0; }

@media (max-width: 900px) {
    .impact-v2-case { grid-template-columns: 1fr; }
    .impact-v2-case-img { height: 320px; }
    .impact-v2-minor-grid { grid-template-columns: 1fr; }
}

/* ---------- Mission & Vision V2 (editorial elevation) ---------- */
.about-v2-heading {
    font-size: clamp(2.2rem, 4.5vw, 3.4rem) !important;
    letter-spacing: -1px;
    margin-bottom: var(--spacing-md) !important;
}
.about-v2-index {
    font-size: 2.75rem;
    margin-bottom: 0.25rem;
}

/* ---------- Philosophy V2 (full-width scroll moments) ---------- */
.philosophy-v2-list {
    display: flex;
    flex-direction: column;
    margin-top: var(--spacing-lg);
}
.philosophy-v2-row {
    display: grid;
    grid-template-columns: 100px 90px 1fr;
    align-items: center;
    gap: 2rem;
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--border-color);
    transition: background 0.3s ease;
}
.philosophy-v2-row:first-child { border-top: 1px solid var(--border-color); }
.philosophy-v2-row:hover { background: var(--accent-dim); }

.philosophy-v2-index {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--border-color-strong);
}

.philosophy-v2-icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: var(--accent-dim);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border-color-strong);
    transition: var(--transition);
}
.philosophy-v2-icon i { width: 28px; height: 28px; }
.philosophy-v2-icon--featured {
    background: linear-gradient(135deg, var(--accent-dark), var(--accent));
    color: #fff;
    border-color: var(--accent);
    box-shadow: var(--glow-green);
}
.philosophy-v2-row:hover .philosophy-v2-icon:not(.philosophy-v2-icon--featured) {
    background: linear-gradient(135deg, var(--accent-dark), var(--accent));
    color: #fff;
    border-color: var(--accent);
}

.philosophy-v2-text h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); margin-bottom: 0.5rem; }
.philosophy-v2-text p { color: var(--text-secondary); font-style: italic; margin: 0; }

@media (max-width: 700px) {
    .philosophy-v2-row { grid-template-columns: 52px 52px 1fr; gap: 1rem; padding: 1.75rem 0; }
    .philosophy-v2-index { font-size: 1.6rem; }
    .philosophy-v2-icon { width: 48px; height: 48px; }
    .philosophy-v2-icon i { width: 20px; height: 20px; }
}

/* ---------- Why TLNB V2 ---------- */
.impact-content .impact-v2-heading {
    font-family: var(--v2-sans);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -1px;
    font-size: clamp(1.9rem, 4.2vw, 2.8rem);
    line-height: 1.15;
    color: #E8F5E9;
}
.impact-v2-accent { color: #4ADE80; }

/* ---------- Brand Ecosystem Switcher V2 (brands.html) ---------- */
.brand-switcher-v2 {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--v2-near-black);
}

.brand-switcher-v2-bg { position: absolute; inset: 0; }
.bsw-bg-img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0;
    filter: brightness(0.55) saturate(1.05);
    transition: opacity 1s ease;
}
.bsw-bg-img.active { opacity: 1; }
.bsw-scrim {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(7,18,13,0.88) 0%, rgba(7,18,13,0.55) 55%, rgba(7,18,13,0.3) 100%);
}

.bsw-content { position: relative; z-index: 1; padding: 6rem 0; }
.bsw-subtitle { color: var(--v2-electric) !important; }

.bsw-nodes {
    display: flex;
    flex-direction: column;
    margin-top: 2.5rem;
}

.bsw-node {
    display: block;
    text-align: left;
    background: none;
    border: none;
    border-top: 1px solid rgba(232, 239, 232, 0.15);
    padding: 1.5rem 0;
    cursor: pointer;
    width: 100%;
    max-width: 900px;
    font-family: var(--v2-sans);
}
.bsw-nodes .bsw-node:last-child { border-bottom: 1px solid rgba(232, 239, 232, 0.15); }

.bsw-node-top {
    display: flex;
    align-items: baseline;
    gap: 1.25rem;
}

.bsw-node-num {
    font-family: var(--v2-serif);
    font-size: 1.3rem;
    color: rgba(232, 239, 232, 0.4);
    flex-shrink: 0;
    width: 32px;
}

.bsw-node-name {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    color: rgba(232, 239, 232, 0.55);
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 1.1;
    transition: color 0.3s ease;
}

.bsw-node-tag {
    display: block;
    margin: 0.4rem 0 0 56px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(232, 239, 232, 0.35);
    transition: color 0.3s ease;
}

.bsw-node-desc {
    display: block;
    margin: 0 0 0 56px;
    color: rgba(232, 239, 232, 0.7);
    font-size: 0.95rem;
    max-width: 460px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: opacity 0.4s ease, max-height 0.4s ease, margin-top 0.4s ease;
}

.bsw-node.active .bsw-node-name,
.bsw-node:hover .bsw-node-name { color: var(--v2-electric); }
.bsw-node.active .bsw-node-tag,
.bsw-node:hover .bsw-node-tag { color: var(--v2-electric); }
.bsw-node.active .bsw-node-desc,
.bsw-node:hover .bsw-node-desc { opacity: 1; max-height: 80px; margin-top: 0.6rem; }

.bsw-hint {
    margin-top: 2rem;
    font-size: 0.78rem;
    letter-spacing: 1px;
    color: rgba(232, 239, 232, 0.45);
}

@media (max-width: 768px) {
    .brand-switcher-v2 { min-height: auto; padding: 2rem 0; }
    .bsw-node-tag,
    .bsw-node-desc { margin-left: 46px; }
    .bsw-node-desc { opacity: 1; max-height: none; margin-top: 0.6rem; max-width: none; }
}

/* ---------- Services V2 (What We Do — full-width scroll moments) ---------- */
.services-v2-list {
    display: flex;
    flex-direction: column;
}

.services-v2-row {
    display: grid;
    grid-template-columns: 90px 72px 1fr;
    align-items: center;
    gap: 2rem;
    padding: 2.25rem 0;
    border-bottom: 1px solid var(--border-color);
    transition: background 0.3s ease;
}
.services-v2-list .services-v2-row:first-child { border-top: 1px solid var(--border-color); }

a.services-v2-row { text-decoration: none; color: inherit; }
.services-v2-row:hover { background: var(--accent-dim); }

.services-v2-index {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--border-color-strong);
}

.services-v2-icon {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--accent-dim);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border-color-strong);
    transition: var(--transition);
    flex-shrink: 0;
}
.services-v2-icon i { width: 24px; height: 24px; }
.services-v2-row:hover .services-v2-icon {
    background: linear-gradient(135deg, var(--accent-dark), var(--accent));
    color: #fff;
    border-color: var(--accent);
}

.services-v2-text h3 { font-size: clamp(1.15rem, 2.2vw, 1.4rem); margin-bottom: 0.35rem; }
.services-v2-text p { color: var(--text-secondary); margin: 0; max-width: 640px; }

.services-v2-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.75rem;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.85rem;
}
.services-v2-cta i { width: 15px; height: 15px; transition: transform 0.3s ease; }
.services-v2-row--cta:hover .services-v2-cta i { transform: translateX(4px); }

@media (max-width: 700px) {
    .services-v2-row { grid-template-columns: 44px 44px 1fr; gap: 1rem; padding: 1.5rem 0; }
    .services-v2-index { font-size: 1.4rem; }
    .services-v2-icon { width: 42px; height: 42px; }
    .services-v2-icon i { width: 18px; height: 18px; }
}

/* ---------- Team V2 (editorial portraits) ---------- */
.team-v2-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: clamp(1.5rem, 3vw, 2.5rem);
}

.team-v2-photo {
    position: relative;
    aspect-ratio: 3 / 4;
    border-radius: var(--card-radius-lg);
    overflow: hidden;
    background: var(--surface-2);
}
.team-v2-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) contrast(1.05);
    transition: filter 0.6s ease, transform 0.6s ease;
}
.team-v2-card:hover .team-v2-photo img {
    filter: grayscale(0);
    transform: scale(1.05);
}

.team-v2-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.85) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.team-v2-card:hover .team-v2-overlay { opacity: 1; }

.team-v2-overlay p {
    color: #E8EFE8;
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}
.team-v2-overlay .team-social a { background: rgba(232, 239, 232, 0.15); color: #E8EFE8; }
.team-v2-overlay .team-social a:hover { background: #6FAF72; color: #07120D; }

.team-v2-caption { padding-top: 1.1rem; text-align: left; }
.team-v2-caption h3 { font-size: 1.2rem; margin-bottom: 0.2rem; }

@media (hover: none) {
    .team-v2-overlay {
        opacity: 1;
        background: linear-gradient(180deg, transparent 15%, rgba(0, 0, 0, 0.85) 100%);
    }
    .team-v2-photo img { filter: grayscale(0.4); }
}

/* ---------- Articles V2 (magazine archive) ---------- */
.articles-v2-featured {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(2rem, 5vw, 3.5rem);
    align-items: center;
    margin-bottom: var(--spacing-lg);
    text-decoration: none;
    color: inherit;
}

.articles-v2-featured-img {
    border-radius: var(--card-radius-lg);
    overflow: hidden;
    height: 420px;
}
.articles-v2-featured-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.articles-v2-featured:hover .articles-v2-featured-img img { transform: scale(1.05); }

.articles-v2-featured-body h2 {
    font-size: clamp(1.6rem, 3.2vw, 2.4rem);
    margin: 0.75rem 0 1rem;
}
.articles-v2-featured-body p { color: var(--text-secondary); line-height: 1.7; margin-bottom: 1rem; }

.articles-v2-controls {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.articles-v2-filters { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.articles-v2-filter {
    background: none;
    border: 1px solid var(--border-color-strong);
    color: var(--text-secondary);
    padding: 0.5rem 1.1rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}
.articles-v2-filter:hover { border-color: var(--accent); color: var(--accent); }
.articles-v2-filter.active { background: var(--accent); border-color: var(--accent); color: var(--bg-color); }

.articles-v2-search {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    border: 1px solid var(--border-color-strong);
    border-radius: 100px;
    padding: 0.55rem 1.1rem;
    min-width: 220px;
}
.articles-v2-search i { width: 16px; height: 16px; color: var(--text-secondary); flex-shrink: 0; }
.articles-v2-search input {
    border: none;
    background: none;
    outline: none;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    width: 100%;
}

.article-card.articles-v2-hidden { display: none; }

@media (max-width: 900px) {
    .articles-v2-featured { grid-template-columns: 1fr; }
    .articles-v2-featured-img { height: 260px; }
    .articles-v2-controls { flex-direction: column; align-items: stretch; }
    .articles-v2-search { width: 100%; }
}

/* ---------- Final CTA V2 ---------- */
.final-cta-v2 {
    position: relative;
    padding: clamp(5rem, 12vw, 9rem) 0;
    overflow: hidden;
    background: var(--v2-near-black);
}
.final-cta-v2-bg { position: absolute; inset: 0; }
.final-cta-v2-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.4) saturate(1.1);
}
.final-cta-v2-scrim {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 70% at 50% 50%, rgba(7,18,13,0.4) 0%, rgba(7,18,13,0.92) 100%);
}
.final-cta-v2-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 720px;
}
.final-cta-v2-content h2 {
    font-family: var(--v2-sans);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -1px;
    font-size: clamp(2.2rem, 6vw, 4rem);
    line-height: 1.1;
    color: var(--v2-off-white);
    margin-bottom: 1.5rem;
}
.final-cta-v2-content p {
    color: rgba(232, 239, 232, 0.75);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
}

/* ---------- Article hero cover (no photo yet — CSS placeholder) ---------- */
.article-hero-cover {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-dark), var(--accent) 55%, var(--accent-light));
    transition: var(--transition-slow);
}
.article-hero-cover i {
    width: 96px;
    height: 96px;
    color: rgba(255, 255, 255, 0.88);
}
.article-card-img .article-hero-cover i { width: 56px; height: 56px; }
.article-card:hover .article-card-img .article-hero-cover { transform: scale(1.06); }
