 /* ===== RESET & BASE ===== */
        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

        :root {
            --dark: #023336;
            --green: #4da674;
            --green-hover: #3d8f62;
            --light-green: #c1e6ba;
            --pale: #eaf8e7;
            --white: #ffffff;
            --gray-50: #f8faf8;
            --gray-100: #f0f4f0;
            --gray-400: #8a9a8a;
            --gray-600: #4a5a4a;
            --shadow-sm: 0 1px 3px rgba(2,51,54,.08);
            --shadow-md: 0 4px 20px rgba(2,51,54,.1);
            --shadow-lg: 0 12px 40px rgba(2,51,54,.15);
            --radius: 12px;
            --radius-lg: 20px;
            --transition: .3s cubic-bezier(.4,0,.2,1);
        }

        html { scroll-behavior: smooth; scroll-padding-top: 80px; }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background: var(--white);
            -webkit-font-smoothing: antialiased;
        }

        img { max-width: 100%; display: block; }
        a { text-decoration: none; color: inherit; }
        button { font-family: inherit; cursor: pointer; border: none; }

        .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

        /* ===== HEADER ===== */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(2,51,54,.95);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(77,166,116,.15);
            transition: var(--transition);
        }

        .header.scrolled {
            background: rgba(2,51,54,.98);
            box-shadow: 0 4px 30px rgba(0,0,0,.2);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 76px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }

        .logo-img {
            width: 52px;
            height: 52px;
            object-fit: contain;
            border-radius: 6px;
        }

        .logo-text {
            font-family: 'Playfair Display', serif;
            font-size: 22px;
            font-weight: 800;
            color: var(--white);
            letter-spacing: 1.5px;
        }

        .logo-text small {
            display: block;
            font-family: 'Inter', sans-serif;
            font-size: 9px;
            font-weight: 500;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: var(--green);
            margin-top: -2px;
        }

        /* NAV */
        .nav-list {
            display: flex;
            list-style: none;
            gap: 6px;
        }

        .nav-list a {
            display: block;
            padding: 8px 14px;
            font-size: 13.5px;
            font-weight: 500;
            color: rgba(255,255,255,.8);
            border-radius: 8px;
            transition: var(--transition);
            white-space: nowrap;
        }

        .nav-list a:hover,
        .nav-list a.active {
            color: var(--white);
            background: rgba(77,166,116,.2);
        }

        /* HAMBURGER */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            padding: 8px;
            border-radius: 8px;
            transition: var(--transition);
        }

        .hamburger:hover { background: rgba(255,255,255,.1); }

        .hamburger span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--white);
            border-radius: 2px;
            transition: var(--transition);
            transform-origin: center;
        }

        .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
        .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
        .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

        /* ===== PAGE HERO / BANNER ===== */
        .page-hero {
            position: relative;
            padding: 160px 0 100px;
            background: var(--dark);
            overflow: hidden;
        }

        .page-hero::before {
            content: '';
            position: absolute;
            top: -200px;
            right: -150px;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(77,166,116,.12), transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .page-hero::after {
            content: '';
            position: absolute;
            bottom: -250px;
            left: -100px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(193,230,186,.08), transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .page-hero-inner {
            position: relative;
            z-index: 1;
        }

        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: rgba(255,255,255,.5);
            margin-bottom: 20px;
        }

        .breadcrumb a {
            color: rgba(255,255,255,.6);
            transition: var(--transition);
        }

        .breadcrumb a:hover { color: var(--green); }

        .breadcrumb-sep {
            width: 16px;
            height: 16px;
            stroke: rgba(255,255,255,.35);
            stroke-width: 2;
            fill: none;
        }

        .breadcrumb-current { color: var(--green); font-weight: 600; }

        .page-hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.2rem, 4.5vw, 3.4rem);
            font-weight: 800;
            color: var(--white);
            line-height: 1.15;
            margin-bottom: 18px;
        }

        .page-hero h1 span { color: var(--green); }

        .page-hero-desc {
            font-size: clamp(1rem, 1.8vw, 1.15rem);
            color: rgba(255,255,255,.65);
            max-width: 600px;
            line-height: 1.75;
        }

        /* ===== SECTION SHARED ===== */
        .section { padding: 100px 0; }
        .section-pale { background: var(--pale); }
        .section-white { background: var(--white); }
        .section-dark { background: var(--dark); color: var(--white); }

        .section-label {
            display: inline-block;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: var(--green);
            margin-bottom: 14px;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.8rem, 3.5vw, 2.6rem);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 18px;
        }

        /* ===== WHO WE ARE ===== */
        .who-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: center;
        }

        .who-img-wrap {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }

        .who-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            aspect-ratio: 4/3;
        }

        .who-img-accent {
            position: absolute;
            bottom: -6px;
            right: -6px;
            width: 120px;
            height: 120px;
            border: 4px solid var(--green);
            border-radius: var(--radius-lg);
            pointer-events: none;
            z-index: -1;
        }

        .who-content .section-label { margin-bottom: 12px; }

        .who-content h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            font-weight: 700;
            line-height: 1.25;
            margin-bottom: 24px;
        }

        .who-text {
            font-size: 1.05rem;
            color: var(--gray-600);
            line-height: 1.8;
            margin-bottom: 18px;
        }

        .who-highlight {
            display: flex;
            gap: 16px;
            align-items: flex-start;
            background: var(--pale);
            padding: 20px 24px;
            border-radius: var(--radius);
            margin-top: 32px;
            border-left: 4px solid var(--green);
        }

        .who-highlight-icon {
            width: 44px;
            height: 44px;
            background: var(--green);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .who-highlight-icon svg {
            width: 22px;
            height: 22px;
            stroke: var(--white);
            stroke-width: 2;
            fill: none;
        }

        .who-highlight-text {
            font-size: .95rem;
            color: var(--dark);
            line-height: 1.7;
        }

        .who-highlight-text strong {
            display: block;
            font-size: 1rem;
            margin-bottom: 4px;
        }

        /* ===== MISSION & VISION ===== */
        .mv-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
        }

        .mv-card {
            position: relative;
            padding: 48px 40px;
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: var(--transition);
        }

        .mv-card-mission {
            background: var(--dark);
            color: var(--white);
        }

        .mv-card-vision {
            background: var(--green);
            color: var(--white);
        }

        .mv-card::before {
            content: '';
            position: absolute;
            top: -60px;
            right: -60px;
            width: 200px;
            height: 200px;
            background: rgba(255,255,255,.06);
            border-radius: 50%;
            pointer-events: none;
        }

        .mv-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

        .mv-icon {
            width: 60px;
            height: 60px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 28px;
        }

        .mv-card-mission .mv-icon { background: rgba(77,166,116,.2); }
        .mv-card-vision .mv-icon { background: rgba(255,255,255,.2); }

        .mv-icon svg {
            width: 28px;
            height: 28px;
            stroke: var(--white);
            stroke-width: 2;
            fill: none;
        }

        .mv-card-label {
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            margin-bottom: 12px;
            opacity: .7;
        }

        .mv-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.4rem, 2.5vw, 1.8rem);
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 18px;
        }

        .mv-card p {
            font-size: 1.05rem;
            line-height: 1.8;
            opacity: .85;
        }

        /* ===== CORE VALUES ===== */
        .values-header {
            text-align: center;
            margin-bottom: 56px;
            max-width: 620px;
            margin-left: auto;
            margin-right: auto;
        }

        .values-header p {
            font-size: 1.05rem;
            color: var(--gray-600);
            line-height: 1.7;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .value-card {
            text-align: center;
            padding: 36px 24px;
            border-radius: var(--radius-lg);
            background: var(--white);
            border: 1px solid rgba(2,51,54,.06);
            transition: var(--transition);
        }

        .value-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
            border-color: transparent;
        }

        .value-icon {
            width: 64px;
            height: 64px;
            margin: 0 auto 20px;
            background: var(--pale);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .value-card:hover .value-icon { background: var(--green); }
        .value-card:hover .value-icon svg { stroke: var(--white); }

        .value-icon svg {
            width: 28px;
            height: 28px;
            stroke: var(--green);
            stroke-width: 2;
            fill: none;
        }

        .value-card h3 {
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .value-card p {
            font-size: .9rem;
            color: var(--gray-600);
            line-height: 1.65;
        }

        /* ===== STATS BAR ===== */
        .stats-bar {
            background: linear-gradient(135deg, var(--dark) 0%, #045a60 100%);
            padding: 64px 0;
            position: relative;
            overflow: hidden;
        }

        .stats-bar::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -50px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(77,166,116,.12), transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .stat-item { padding: 0 16px; }

        .stat-value {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 3.5vw, 2.8rem);
            font-weight: 800;
            color: var(--green);
            margin-bottom: 8px;
        }

        .stat-label {
            font-size: .92rem;
            color: rgba(255,255,255,.6);
        }

        .stat-divider {
            width: 40px;
            height: 2px;
            background: rgba(77,166,116,.3);
            margin: 12px auto 0;
        }

        /* ===== CTA BANNER ===== */
        .cta-banner {
            padding: 80px 0;
            background: var(--pale);
            text-align: center;
        }

        .cta-inner {
            max-width: 640px;
            margin: 0 auto;
        }

        .cta-banner h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.8rem, 3.5vw, 2.4rem);
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 16px;
        }

        .cta-banner p {
            font-size: 1.1rem;
            color: var(--gray-600);
            line-height: 1.7;
            margin-bottom: 36px;
        }

        .cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

        /* BUTTONS */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-size: 15px;
            font-weight: 600;
            padding: 15px 32px;
            border-radius: 10px;
            transition: var(--transition);
            white-space: nowrap;
        }

        .btn-primary { background: var(--green); color: var(--dark); }

        .btn-primary:hover {
            background: var(--green-hover);
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(77,166,116,.35);
        }

        .btn-dark { background: var(--dark); color: var(--white); }

        .btn-dark:hover {
            background: #034a4f;
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(2,51,54,.35);
        }

        /* ===== FOOTER ===== */
        .footer {
            background: var(--dark);
            color: var(--white);
            padding: 60px 0 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 40px;
            padding-bottom: 48px;
            border-bottom: 1px solid rgba(255,255,255,.1);
        }

        .footer-brand p {
            color: rgba(255,255,255,.6);
            font-size: .92rem;
            line-height: 1.7;
            margin-top: 16px;
        }

        .footer h4 {
            font-size: .85rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--green);
            margin-bottom: 20px;
        }

        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 12px; }

        .footer-links a {
            font-size: .92rem;
            color: rgba(255,255,255,.6);
            transition: var(--transition);
        }

        .footer-links a:hover { color: var(--white); padding-left: 4px; }

        .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 24px 0;
            font-size: .85rem;
            color: rgba(255,255,255,.45);
        }

        /* ===== ANIMATIONS ===== */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(24px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity .7s ease, transform .7s ease;
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ===== MOBILE NAV ===== */
        .mobile-nav {
            display: none;
            position: fixed;
            top: 76px;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(2,51,54,.98);
            backdrop-filter: blur(12px);
            z-index: 999;
            padding: 32px 24px;
            overflow-y: auto;
            transform: translateX(100%);
            transition: transform .35s cubic-bezier(.4,0,.2,1);
        }

        .mobile-nav.open { transform: translateX(0); }

        .mobile-nav-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .mobile-nav-list a {
            display: block;
            padding: 16px 20px;
            font-size: 16px;
            font-weight: 500;
            color: rgba(255,255,255,.8);
            border-radius: 10px;
            transition: var(--transition);
        }

        .mobile-nav-list a:hover { background: rgba(77,166,116,.15); color: var(--white); }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .hamburger { display: flex; }
            .desktop-nav { display: none; }
            .mobile-nav { display: block; }
            .who-grid { grid-template-columns: 1fr; gap: 40px; }
            .mv-grid { grid-template-columns: 1fr; }
            .values-grid { grid-template-columns: repeat(2, 1fr); }
            .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
            .footer-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 640px) {
            .section { padding: 64px 0; }
            .page-hero { padding: 130px 0 64px; }
            .values-grid { grid-template-columns: 1fr; }
            .stats-grid { grid-template-columns: 1fr; gap: 32px; }
            .mv-card { padding: 36px 28px; }
            .cta-btns { flex-direction: column; }
            .btn { width: 100%; justify-content: center; }
            .footer-grid { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
        }