  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --green-50: #f0faf0;
    --green-100: #d4edda;
    --green-200: #a8d8b0;
    --green-400: #4caf6e;
    --green-600: #1e7e45;
    --green-700: #155c32;
    --green-800: #0d3d21;
    --green-900: #062812;
    --white: #ffffff;
    --off-white: #f8fdf8;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-400: #9ca3af;
    --gray-600: #4b5563;
    --gray-800: #1f2937;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', sans-serif;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 32px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  }

  html { scroll-behavior: smooth; }
  body { font-family: var(--font-body); color: var(--gray-800); background: var(--white); overflow-x: hidden; }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--green-100);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 5%; height: 70px;
    transition: var(--transition);
  }
  .nav-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
  .nav-logo {
    width: 42px; height: 42px; border-radius: 50%;
    background: linear-gradient(135deg, var(--green-600), var(--green-400));
    display: flex; align-items: center; justify-content: center;
    color: white; font-family: var(--font-display); font-size: 17px; font-weight: 700;
    flex-shrink: 0;
  }
  .nav-name {
    font-family: var(--font-display); font-size: 14px; font-weight: 600;
    color: var(--green-800); line-height: 1.2;
  }
  .nav-name span {
    display: block; font-family: var(--font-body); font-size: 10.5px;
    font-weight: 400; color: var(--gray-400); letter-spacing: 0.06em;
    text-transform: uppercase; margin-top: 2px;
  }
  .nav-links { display: flex; align-items: center; gap: 6px; }
  .nav-links > a {
    font-size: 14px; font-weight: 500; color: var(--gray-600);
    text-decoration: none; transition: color 0.2s;
    padding: 8px 12px; border-radius: var(--radius-sm);
  }
  .nav-links > a:hover { color: var(--green-600); }

  /* dropdown parent */
  .nav-dropdown { position: relative; }
  .nav-dropdown > .nav-drop-trigger {
    font-size: 14px; font-weight: 500; color: var(--green-600);
    text-decoration: none; padding: 8px 12px; border-radius: var(--radius-sm);
    display: flex; align-items: center; gap: 5px; cursor: pointer;
    background: var(--green-50); transition: var(--transition);
    border: none; font-family: var(--font-body);
  }
  .nav-dropdown > .nav-drop-trigger i.drop-arrow {
    font-size: 11px; transition: transform 0.25s;
  }
  .nav-dropdown:hover > .nav-drop-trigger i.drop-arrow { transform: rotate(180deg); }
  .nav-dropdown:hover > .nav-drop-trigger { background: var(--green-100); }

  /* dropdown panel */
  .drop-menu {
    position: absolute; top: calc(100% + 10px); left: 50%;
    transform: translateX(-50%);
    background: white; border: 1px solid var(--green-100);
    border-radius: var(--radius-md); box-shadow: var(--shadow-md);
    padding: 8px; min-width: 220px;
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    transform: translateX(-50%) translateY(-6px);
    z-index: 200;
  }
  .nav-dropdown:hover .drop-menu {
    opacity: 1; visibility: visible; pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
  .drop-menu a {
    display: flex; align-items: center; gap: 9px;
    font-size: 13.5px; font-weight: 500; color: var(--gray-700);
    text-decoration: none; padding: 9px 12px; border-radius: var(--radius-sm);
    transition: background 0.15s, color 0.15s; white-space: nowrap;
  }
  .drop-menu a i { font-size: 14px; color: var(--gray-400); flex-shrink: 0; }
  .drop-menu a:hover { background: var(--green-50); color: var(--green-700); }
  .drop-menu a:hover i { color: var(--green-600); }
  .drop-menu a.active {
    background: var(--green-50); color: var(--green-700); font-weight: 600;
  }
  .drop-menu a.active i { color: var(--green-600); }
  .drop-menu .drop-divider { height: 1px; background: var(--green-100); margin: 6px 0; }

  .nav-cta {
    background: var(--green-600); color: white !important;
    padding: 9px 22px; border-radius: 100px; font-size: 14px;
    font-weight: 500; text-decoration: none; transition: var(--transition);
    margin-left: 10px;
  }
  .nav-cta:hover { background: var(--green-700) !important; transform: translateY(-1px); }

  .nav-hamburger {
    display: none; background: none; border: none; cursor: pointer;
    font-size: 22px; color: var(--green-800); padding: 4px;
  }

  /* mobile menu */
  .mobile-menu {
    display: none; position: fixed; top: 70px; left: 0; right: 0; z-index: 999;
    background: white; border-bottom: 1px solid var(--green-100);
    padding: 16px 5% 24px; flex-direction: column; gap: 4px;
    box-shadow: var(--shadow-md); max-height: calc(100vh - 70px); overflow-y: auto;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu > a, .mobile-menu .m-section-label {
    font-size: 15px; font-weight: 500; color: var(--gray-700);
    text-decoration: none; padding: 11px 14px; border-radius: var(--radius-sm);
    transition: background 0.2s, color 0.2s; display: flex; align-items: center; gap: 9px;
  }
  .mobile-menu > a:hover { background: var(--green-50); color: var(--green-700); }
  .mobile-menu .m-section-label {
    font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--gray-400); padding: 12px 14px 4px; font-weight: 600;
  }
  .mobile-menu .m-sub a {
    display: flex; align-items: center; gap: 9px;
    font-size: 14px; color: var(--gray-600); text-decoration: none;
    padding: 9px 14px 9px 32px; border-radius: var(--radius-sm);
    transition: background 0.15s, color 0.15s;
  }
  .mobile-menu .m-sub a:hover { background: var(--green-50); color: var(--green-700); }
  .mobile-menu .m-sub a.active { color: var(--green-700); font-weight: 600; background: var(--green-50); }
  .mobile-menu .m-cta {
    background: var(--green-600); color: white !important; margin-top: 8px;
    text-align: center; border-radius: 100px; padding: 13px 14px;
    justify-content: center;
  }
  .mobile-menu .m-cta:hover { background: var(--green-700) !important; }

  /* HERO */
  .hero {
    min-height: 100vh; position: relative;
    display: flex; align-items: center;
    background: var(--green-800);
    overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background-image: url('https://images.unsplash.com/photo-1559757148-5c350d0d3c56?w=1800&q=80');
    background-size: cover; background-position: center;
    opacity: 0.25;
  }
  .hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(105deg, rgba(13,61,33,0.97) 45%, rgba(13,61,33,0.55) 100%);
  }
  .hero-content {
    position: relative; z-index: 2;
    display: grid; grid-template-columns: 1fr 380px;
    gap: 60px; align-items: center;
    max-width: 1200px; margin: 0 auto;
    padding: 140px 6% 80px;
    width: 100%;
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(76,175,110,0.2); border: 1px solid rgba(76,175,110,0.4);
    color: var(--green-200); font-size: 13px; font-weight: 500;
    padding: 6px 16px; border-radius: 100px; margin-bottom: 24px;
    letter-spacing: 0.04em;
  }
  .hero-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--green-400); }
  .hero-title {
    font-family: var(--font-display); font-size: clamp(36px, 5vw, 58px);
    font-weight: 700; color: white; line-height: 1.12;
    margin-bottom: 20px;
  }
  .hero-title em { color: var(--green-400); font-style: normal; }
  .hero-subtitle {
    font-size: 17px; color: rgba(255,255,255,0.7); line-height: 1.7;
    margin-bottom: 36px; max-width: 480px;
  }
  .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
  .btn-primary {
    background: var(--green-400); color: white; padding: 14px 32px;
    border-radius: 100px; font-size: 15px; font-weight: 600;
    text-decoration: none; border: none; cursor: pointer;
    transition: background 0.2s, transform 0.2s; display: inline-block;
  }
  .btn-primary:hover { background: var(--green-600); transform: translateY(-2px); }
  .btn-outline {
    background: transparent; color: white; padding: 13px 32px;
    border-radius: 100px; font-size: 15px; font-weight: 500;
    text-decoration: none; border: 1.5px solid rgba(255,255,255,0.3);
    cursor: pointer; transition: border-color 0.2s, background 0.2s; display: inline-block;
  }
  .btn-outline:hover { border-color: white; background: rgba(255,255,255,0.08); }

  /* ENQUIRY FORM */
  .enquiry-form {
    background: white; border-radius: var(--radius-lg);
    padding: 36px 28px; box-shadow: var(--shadow-lg);
    position: relative;
  }
  .form-header {
    font-family: var(--font-display); font-size: 20px; font-weight: 600;
    color: var(--green-800); margin-bottom: 6px;
  }
  .form-sub { font-size: 13px; color: var(--gray-400); margin-bottom: 24px; }
  .form-group { margin-bottom: 16px; }
  .form-group label { display: block; font-size: 13px; font-weight: 500; color: var(--gray-600); margin-bottom: 6px; }
  .form-group input, .form-group select {
    width: 100%; padding: 11px 14px; border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 14px;
    color: var(--gray-800); outline: none; transition: border-color 0.2s;
  }
  .form-group input:focus, .form-group select:focus { border-color: var(--green-400); }
  .form-group select { background: white; cursor: pointer; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .form-submit {
    width: 100%; background: var(--green-600); color: white; padding: 14px;
    border: none; border-radius: var(--radius-sm); font-family: var(--font-body);
    font-size: 15px; font-weight: 600; cursor: pointer; margin-top: 8px;
    transition: background 0.2s, transform 0.2s;
  }
  .form-submit:hover { background: var(--green-700); transform: translateY(-1px); }
  .form-privacy { font-size: 11.5px; color: var(--gray-400); text-align: center; margin-top: 12px; }

  /* SECTIONS */
  section { padding: 100px 6%; }
  .section-tag {
    display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--green-600);
    background: var(--green-50); border: 1px solid var(--green-100);
    padding: 5px 14px; border-radius: 100px; margin-bottom: 16px;
  }
  .section-title {
    font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 700; color: var(--green-900); line-height: 1.2; margin-bottom: 16px;
  }
  .section-title em { color: var(--green-600); font-style: normal; }
  .section-lead { font-size: 17px; color: var(--gray-600); line-height: 1.7; max-width: 560px; }
  .centered { text-align: center; }
  .centered .section-lead { margin: 0 auto; }

  /* ABOUT */
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; max-width: 1200px; margin: 0 auto; }
  .about-image {
    position: relative; border-radius: var(--radius-lg); overflow: hidden;
    aspect-ratio: 4/3;
  }
  .about-image img { width: 100%; height: 100%; object-fit: cover; }
  .about-image-badge {
    position: absolute; bottom: 24px; left: 24px;
    background: white; border-radius: var(--radius-md);
    padding: 16px 20px; box-shadow: var(--shadow-md);
  }
  .about-image-badge .big-num { font-family: var(--font-display); font-size: 32px; font-weight: 700; color: var(--green-600); line-height: 1; }
  .about-image-badge .big-label { font-size: 12px; color: var(--gray-400); margin-top: 4px; }
  .about-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 36px; }
  .pillar {
    background: var(--green-50); border: 1px solid var(--green-100);
    border-radius: var(--radius-md); padding: 20px;
  }
  .pillar-icon {
    width: 40px; height: 40px; border-radius: 10px;
    background: var(--green-600); display: flex; align-items: center; justify-content: center;
    font-size: 18px; margin-bottom: 12px;
  }
  .pillar h4 { font-size: 14px; font-weight: 600; color: var(--green-800); margin-bottom: 4px; }
  .pillar p { font-size: 13px; color: var(--gray-600); line-height: 1.5; }

  /* STATS */
  .stats-section {
    background: linear-gradient(135deg, var(--green-800) 0%, var(--green-700) 100%);
    padding: 80px 6%;
  }
  .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; max-width: 1100px; margin: 0 auto; }
  .stat-card {
    background: rgba(255,255,255,0.07); padding: 48px 32px;
    text-align: center; border-right: 1px solid rgba(255,255,255,0.1);
    position: relative;
  }
  .stat-card:last-child { border-right: none; }
  .stat-num {
    font-family: var(--font-display); font-size: 52px; font-weight: 700;
    color: var(--green-400); line-height: 1;
  }
  .stat-plus { font-size: 32px; }
  .stat-label { font-size: 15px; color: rgba(255,255,255,0.7); margin-top: 12px; line-height: 1.4; }

  /* COURSES */
  .courses-section { background: var(--off-white); }
  .courses-inner { max-width: 1200px; margin: 0 auto; }
  .courses-header { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; margin-bottom: 56px; }
  .courses-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .course-card {
    background: white; border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-sm); border: 1px solid var(--green-100);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .course-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
  .course-img { aspect-ratio: 16/9; overflow: hidden; }
  .course-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
  .course-card:hover .course-img img { transform: scale(1.05); }
  .course-body { padding: 28px 24px 32px; }
  .course-tag {
    display: inline-block; background: var(--green-50); color: var(--green-700);
    font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
    padding: 4px 12px; border-radius: 100px; border: 1px solid var(--green-100);
    margin-bottom: 14px;
  }
  .course-title { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--green-900); margin-bottom: 10px; line-height: 1.3; }
  .course-desc { font-size: 14px; color: var(--gray-600); line-height: 1.6; margin-bottom: 20px; }
  .course-meta { display: flex; gap: 20px; }
  .course-meta span { font-size: 13px; color: var(--gray-600); display: flex; align-items: center; gap: 5px; }
  .course-meta span::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--green-400); flex-shrink: 0; }
  .course-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 14px; font-weight: 600; color: var(--green-600);
    text-decoration: none; margin-top: 20px; border-top: 1px solid var(--green-100);
    padding-top: 18px; width: 100%; transition: gap 0.2s;
  }
  .course-link:hover { gap: 10px; }
  .course-link::after { content: '→'; }

  /* WHY CHOOSE US */
  .why-inner { max-width: 1200px; margin: 0 auto; }
  .why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 60px; }
  .why-card {
    background: white; border: 1px solid var(--green-100);
    border-radius: var(--radius-lg); padding: 36px 28px;
    position: relative; overflow: hidden;
    transition: border-color 0.3s, transform 0.3s;
  }
  .why-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 3px; background: linear-gradient(90deg, var(--green-400), var(--green-600));
    transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
  }
  .why-card:hover { border-color: var(--green-200); transform: translateY(-4px); }
  .why-card:hover::before { transform: scaleX(1); }
  .why-num { font-family: var(--font-display); font-size: 48px; font-weight: 700; color: var(--green-100); line-height: 1; margin-bottom: 16px; }
  .why-title { font-size: 17px; font-weight: 600; color: var(--green-900); margin-bottom: 10px; }
  .why-desc { font-size: 14px; color: var(--gray-600); line-height: 1.7; }

  /* FACILITIES */
  .facilities-section { background: var(--green-900); color: white; }
  .facilities-inner { max-width: 1200px; margin: 0 auto; }
  .facilities-section .section-title { color: white; }
  .facilities-section .section-title em { color: var(--green-400); }
  .facilities-section .section-lead { color: rgba(255,255,255,0.65); }
  .facilities-section .section-tag { background: rgba(76,175,110,0.15); border-color: rgba(76,175,110,0.3); color: var(--green-400); }
  .facilities-header { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 60px; }
  .facilities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .facility-item {
    position: relative; border-radius: var(--radius-md); overflow: hidden;
    aspect-ratio: 4/3; cursor: pointer;
  }
  .facility-item:first-child { grid-column: span 2; aspect-ratio: 2/1; }
  .facility-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
  .facility-item:hover img { transform: scale(1.06); }
  .facility-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(6,40,18,0.9) 0%, transparent 55%);
    display: flex; align-items: flex-end; padding: 20px;
  }
  .facility-label { font-size: 15px; font-weight: 600; color: white; }
  .facilities-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 32px; }
  .fac-tag {
    background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-sm); padding: 12px 16px;
    font-size: 13px; color: rgba(255,255,255,0.8); font-weight: 500;
    display: flex; align-items: center; gap: 8px;
  }
  .fac-tag::before { content: '✦'; font-size: 10px; color: var(--green-400); }

  /* TESTIMONIALS */
  .testimonials-section { background: var(--off-white); }
  .testimonials-inner { max-width: 1200px; margin: 0 auto; }
  .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 56px; }
  .testimonial-card {
    background: white; border-radius: var(--radius-lg); padding: 32px 28px;
    border: 1px solid var(--green-100); position: relative;
    box-shadow: var(--shadow-sm);
  }
  .testimonial-card::before {
    content: '\201C'; font-family: var(--font-display);
    font-size: 80px; color: var(--green-100); line-height: 0.6;
    display: block; margin-bottom: 16px;
  }
  .testimonial-text { font-size: 15px; color: var(--gray-600); line-height: 1.75; margin-bottom: 24px; }
  .testimonial-stars { color: #f59e0b; font-size: 13px; letter-spacing: 1px; margin-bottom: 20px; }
  .testimonial-author { display: flex; align-items: center; gap: 14px; border-top: 1px solid var(--green-100); padding-top: 20px; }
  .author-avatar {
    width: 46px; height: 46px; border-radius: 50%;
    background: linear-gradient(135deg, var(--green-400), var(--green-600));
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; font-weight: 700; color: white; flex-shrink: 0;
  }
  .author-name { font-size: 14px; font-weight: 600; color: var(--green-900); }
  .author-role { font-size: 12px; color: var(--gray-400); margin-top: 2px; }

  /* LIFE AT SENGUNTHAR */
  .life-section { background: white; }
  .life-inner { max-width: 1200px; margin: 0 auto; }
  .life-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 16px; margin-top: 56px;
  }
  .life-item {
    border-radius: var(--radius-md); overflow: hidden;
    position: relative; cursor: pointer;
  }
  .life-item:nth-child(1) { grid-row: span 2; aspect-ratio: 3/4; }
  .life-item:nth-child(2), .life-item:nth-child(3) { aspect-ratio: 3/2; }
  .life-item:nth-child(4), .life-item:nth-child(5) { aspect-ratio: 3/2; }
  .life-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
  .life-item:hover img { transform: scale(1.06); }
  .life-caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(6,40,18,0.85), transparent);
    padding: 20px 16px 14px;
    font-size: 13px; font-weight: 600; color: white; letter-spacing: 0.02em;
  }

  /* CTA */
  .cta-section {
    padding: 100px 6%;
    background: linear-gradient(135deg, var(--green-600) 0%, var(--green-800) 100%);
    text-align: center; position: relative; overflow: hidden;
  }
  .cta-section::before {
    content: '';
    position: absolute; top: -60px; right: -60px;
    width: 300px; height: 300px; border-radius: 50%;
    background: rgba(255,255,255,0.05);
  }
  .cta-section::after {
    content: '';
    position: absolute; bottom: -80px; left: -40px;
    width: 240px; height: 240px; border-radius: 50%;
    background: rgba(255,255,255,0.04);
  }
  .cta-inner { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }
  .cta-tag { background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25); color: white; }
  .cta-title { font-family: var(--font-display); font-size: clamp(32px, 4vw, 48px); font-weight: 700; color: white; line-height: 1.2; margin-bottom: 16px; }
  .cta-sub { font-size: 17px; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 40px; }
  .cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
  .cta-btn-white {
    background: white; color: var(--green-800); padding: 16px 36px;
    border-radius: 100px; font-size: 16px; font-weight: 700;
    text-decoration: none; border: none; cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s; display: inline-block;
  }
  .cta-btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
  .cta-btn-ghost {
    background: transparent; color: white; padding: 15px 36px;
    border-radius: 100px; font-size: 16px; font-weight: 600;
    text-decoration: none; border: 2px solid rgba(255,255,255,0.5); display: inline-block;
    transition: border-color 0.2s, background 0.2s;
  }
  .cta-btn-ghost:hover { border-color: white; background: rgba(255,255,255,0.1); }

  /* FOOTER */
  footer {
    background: white;
    color: var(--gray-600);
    border-top: 1px solid var(--green-100);
    padding: 60px 5% 28px;
  }
  .footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 44px; max-width: 1200px; margin: 0 auto 44px;
  }
  .footer-logo-wrap { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
  .footer-logo {
    width: 42px; height: 42px; border-radius: 50%;
    background: linear-gradient(135deg, var(--green-600), var(--green-400));
    display: flex; align-items: center; justify-content: center;
    color: white; font-family: var(--font-display); font-size: 17px; font-weight: 700; flex-shrink: 0;
  }
  .footer-name { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--green-900); line-height: 1.3; }
  .footer-about { font-size: 13.5px; line-height: 1.7; color: var(--gray-600); }
  .footer-col h5 {
    font-size: 12px; font-weight: 600; letter-spacing: 0.09em;
    text-transform: uppercase; color: var(--green-900); margin-bottom: 18px;
  }
  .footer-col a {
    display: flex; align-items: center; gap: 7px;
    font-size: 13.5px; color: var(--gray-600);
    text-decoration: none; margin-bottom: 10px; transition: color 0.2s;
  }
  .footer-col a i { font-size: 14px; color: var(--green-500, var(--green-600)); flex-shrink: 0; }
  .footer-col a:hover { color: var(--green-600); }
  .footer-bottom {
    max-width: 1200px; margin: 0 auto;
    border-top: 1px solid var(--green-100); padding-top: 24px;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 10px; font-size: 12.5px; color: var(--gray-400);
  }
  .footer-bottom a { color: var(--green-600); text-decoration: none; }


  /* ─── BREADCRUMB HERO ────────────────────────── */
  .page-hero {
    min-height: 320px; position: relative;
    display: flex; align-items: flex-end;
    background: var(--green-900); overflow: hidden;
    padding-top: 70px;
  }
  .page-hero-bg {
    position: absolute; inset: 0;
    background-image: url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?w=1600&q=80');
    background-size: cover; background-position: center top;
    opacity: 0.18;
  }
  .page-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(160deg, rgba(6,40,18,0.96) 40%, rgba(13,61,33,0.80) 100%);
  }
  /* decorative circle */
  .page-hero::before {
    content: ''; position: absolute; top: -80px; right: -80px;
    width: 340px; height: 340px; border-radius: 50%;
    border: 1px solid rgba(76,175,110,0.15); pointer-events: none;
  }
  .page-hero::after {
    content: ''; position: absolute; top: -20px; right: -20px;
    width: 200px; height: 200px; border-radius: 50%;
    border: 1px solid rgba(76,175,110,0.1); pointer-events: none;
  }
  .page-hero-content {
    position: relative; z-index: 2;
    width: 100%; max-width: 1200px; margin: 0 auto;
    padding: 0 5% 52px;
  }
  /* breadcrumb */
  .breadcrumb {
    display: flex; align-items: center; flex-wrap: wrap;
    gap: 6px; margin-bottom: 20px;
  }
  .breadcrumb a {
    font-size: 13px; color: rgba(255,255,255,0.55);
    text-decoration: none; transition: color 0.2s;
    display: flex; align-items: center; gap: 4px;
  }
  .breadcrumb a:hover { color: var(--green-400); }
  .breadcrumb .sep { font-size: 11px; color: rgba(255,255,255,0.3); }
  .breadcrumb .current { font-size: 13px; color: var(--green-400); font-weight: 500; }
  .page-title {
    font-family: var(--font-display); font-size: clamp(32px, 5vw, 52px);
    font-weight: 700; color: white; line-height: 1.12; margin-bottom: 14px;
  }
  .page-title em { color: var(--green-400); font-style: normal; }
  .page-desc {
    font-size: 16px; color: rgba(255,255,255,0.65); max-width: 520px;
    line-height: 1.65;
  }

  /* ─── SECTION DEFAULTS ───────────────────────── */
  section { padding: 90px 5%; }
  .container { max-width: 1200px; margin: 0 auto; }
  .section-tag {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: 12px; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--green-600);
    background: var(--green-50); border: 1px solid var(--green-100);
    padding: 5px 15px; border-radius: 100px; margin-bottom: 16px;
  }
  .section-tag i { font-size: 13px; }
  .section-title {
    font-family: var(--font-display); font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 700; color: var(--green-900); line-height: 1.2; margin-bottom: 14px;
  }
  .section-title em { color: var(--green-600); font-style: normal; }
  .section-lead { font-size: 16px; color: var(--gray-600); line-height: 1.75; }
  .centered { text-align: center; }
  .centered .section-lead { max-width: 580px; margin: 0 auto; }

  /* ─── WHO WE ARE ─────────────────────────────── */
  .who-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 72px; align-items: center;
  }
  .who-image { position: relative; }
  .who-img-main {
    width: 100%; border-radius: var(--radius-lg); overflow: hidden;
    aspect-ratio: 4/3; position: relative;
  }
  .who-img-main img { width: 100%; height: 100%; object-fit: cover; }
  .who-img-badge {
    position: absolute; bottom: -22px; right: -22px;
    background: var(--green-600); color: white;
    border-radius: var(--radius-md); padding: 20px 24px;
    box-shadow: var(--shadow-lg); text-align: center; min-width: 130px;
    border: 3px solid white;
  }
  .who-img-badge .badge-num {
    font-family: var(--font-display); font-size: 36px; font-weight: 700;
    line-height: 1; color: white;
  }
  .who-img-badge .badge-label { font-size: 11px; color: rgba(255,255,255,0.8); margin-top: 5px; font-weight: 500; letter-spacing: 0.04em; }
  .who-img-float {
    position: absolute; top: -18px; left: -18px;
    background: white; border-radius: var(--radius-md);
    padding: 14px 18px; box-shadow: var(--shadow-md);
    display: flex; align-items: center; gap: 10px;
    border: 1px solid var(--green-100);
  }
  .who-img-float .float-icon {
    width: 38px; height: 38px; border-radius: 10px;
    background: var(--green-50); display: flex; align-items: center; justify-content: center;
    color: var(--green-600); font-size: 18px; flex-shrink: 0;
  }
  .who-img-float .float-text { font-size: 12px; font-weight: 600; color: var(--green-900); line-height: 1.3; }
  .who-img-float .float-text span { display: block; font-weight: 400; color: var(--gray-400); font-size: 11px; }
  .who-content { }
  .who-body {
    font-size: 15px; color: var(--gray-600); line-height: 1.8; margin-bottom: 16px;
  }
  .who-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; }
  .highlight-item {
    display: flex; align-items: flex-start; gap: 12px;
    background: var(--green-50); border: 1px solid var(--green-100);
    border-radius: var(--radius-md); padding: 16px;
  }
  .highlight-icon {
    width: 36px; height: 36px; border-radius: 9px; flex-shrink: 0;
    background: var(--green-600); color: white;
    display: flex; align-items: center; justify-content: center; font-size: 16px;
  }
  .highlight-text h4 { font-size: 13px; font-weight: 600; color: var(--green-900); margin-bottom: 3px; }
  .highlight-text p { font-size: 12px; color: var(--gray-600); line-height: 1.5; }

  /* ─── VISION & MISSION ───────────────────────── */
  .vm-section { background: var(--green-900); }
  .vm-section .section-tag { background: rgba(76,175,110,0.15); border-color: rgba(76,175,110,0.3); color: var(--green-300); }
  .vm-section .section-title { color: white; }
  .vm-section .section-title em { color: var(--green-400); }
  .vm-section .section-lead { color: rgba(255,255,255,0.6); }
  .vm-header { margin-bottom: 56px; }
  .vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
  .vm-card {
    border-radius: var(--radius-lg); padding: 44px 36px;
    position: relative; overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    transition: var(--transition);
  }
  .vm-card:hover { transform: translateY(-4px); border-color: rgba(76,175,110,0.3); }
  .vm-vision { background: rgba(255,255,255,0.05); }
  .vm-mission { background: rgba(76,175,110,0.1); }
  .vm-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 3px;
  }
  .vm-vision::before { background: linear-gradient(90deg, var(--green-400), var(--green-600)); }
  .vm-mission::before { background: linear-gradient(90deg, var(--green-600), var(--green-400)); }
  .vm-icon-wrap {
    width: 56px; height: 56px; border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; margin-bottom: 24px;
  }
  .vm-vision .vm-icon-wrap { background: rgba(76,175,110,0.2); color: var(--green-400); }
  .vm-mission .vm-icon-wrap { background: rgba(76,175,110,0.25); color: var(--green-300); }
  .vm-card-title {
    font-family: var(--font-display); font-size: 24px; font-weight: 700;
    color: white; margin-bottom: 16px;
  }
  .vm-card-text { font-size: 15px; color: rgba(255,255,255,0.68); line-height: 1.8; margin-bottom: 24px; }
  .vm-values { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .vm-values li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 14px; color: rgba(255,255,255,0.75);
  }
  .vm-values li i { color: var(--green-400); font-size: 15px; margin-top: 2px; flex-shrink: 0; }

  /* ─── ACCREDITATION ──────────────────────────── */
  .acc-section { background: var(--off-white); }
  .acc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 52px; }
  .acc-card {
    background: white; border-radius: var(--radius-lg);
    border: 1px solid var(--green-100); padding: 36px 28px;
    text-align: center; transition: var(--transition);
    position: relative; overflow: hidden;
  }
  .acc-card::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 3px; background: linear-gradient(90deg, var(--green-400), var(--green-600));
    transform: scaleX(0); transform-origin: center; transition: transform 0.35s;
  }
  .acc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
  .acc-card:hover::after { transform: scaleX(1); }
  .acc-emblem {
    width: 72px; height: 72px; border-radius: 50%;
    margin: 0 auto 20px;
    display: flex; align-items: center; justify-content: center;
    font-size: 30px; border: 2px solid var(--green-100);
  }
  .acc-card:nth-child(1) .acc-emblem { background: #fff3e0; color: #e65100; }
  .acc-card:nth-child(2) .acc-emblem { background: #e3f2fd; color: #1565c0; }
  .acc-card:nth-child(3) .acc-emblem { background: #f3e5f5; color: #6a1b9a; }
  .acc-card:nth-child(4) .acc-emblem { background: var(--green-50); color: var(--green-600); }
  .acc-card:nth-child(5) .acc-emblem { background: #fce4ec; color: #c62828; }
  .acc-card:nth-child(6) .acc-emblem { background: #e0f2f1; color: #00695c; }
  .acc-title { font-size: 16px; font-weight: 700; color: var(--green-900); margin-bottom: 8px; }
  .acc-body { font-size: 13px; color: var(--gray-600); line-height: 1.6; margin-bottom: 16px; }
  .acc-badge {
    display: inline-flex; align-items: center; gap: 5px;
    background: var(--green-50); border: 1px solid var(--green-100);
    color: var(--green-700); font-size: 11.5px; font-weight: 600;
    padding: 5px 12px; border-radius: 100px;
  }
  .acc-badge i { font-size: 12px; }

  /* ─── JOURNEY / TIMELINE ─────────────────────── */
  .journey-section { background: white; }
  .timeline { position: relative; margin-top: 64px; }
  .timeline::before {
    content: ''; position: absolute; left: 50%; top: 0; bottom: 0;
    width: 2px; background: var(--green-100); transform: translateX(-50%);
  }
  .tl-item {
    display: grid; grid-template-columns: 1fr 60px 1fr;
    gap: 0; margin-bottom: 52px; align-items: start;
    position: relative;
  }
  .tl-item:last-child { margin-bottom: 0; }
  .tl-left { padding-right: 40px; text-align: right; }
  .tl-right { padding-left: 40px; }
  .tl-center {
    display: flex; align-items: flex-start; justify-content: center;
    padding-top: 6px; position: relative; z-index: 1;
  }
  .tl-dot {
    width: 52px; height: 52px; border-radius: 50%;
    background: white; border: 3px solid var(--green-400);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; color: var(--green-600); flex-shrink: 0;
    box-shadow: 0 0 0 6px var(--green-50);
    transition: var(--transition);
  }
  .tl-item:hover .tl-dot { background: var(--green-600); color: white; border-color: var(--green-600); }
  .tl-year {
    font-family: var(--font-display); font-size: 28px; font-weight: 700;
    color: var(--green-400); line-height: 1;
  }
  .tl-title { font-size: 17px; font-weight: 600; color: var(--green-900); margin-bottom: 8px; }
  .tl-desc { font-size: 14px; color: var(--gray-600); line-height: 1.7; }
  .tl-card {
    background: var(--green-50); border: 1px solid var(--green-100);
    border-radius: var(--radius-md); padding: 22px 24px;
  }
  /* alternate sides */
  .tl-item.right .tl-left { order: 3; padding-right: 0; padding-left: 40px; text-align: left; }
  .tl-item.right .tl-center { order: 2; }
  .tl-item.right .tl-right { order: 1; padding-left: 0; padding-right: 40px; text-align: right; }
  .tl-item.right .tl-right .tl-card { }

  /* Mobile timeline */
  @media (max-width: 768px) {
    .timeline::before { left: 28px; transform: none; }
    .tl-item, .tl-item.right {
      grid-template-columns: 60px 1fr;
      grid-template-rows: auto auto;
    }
    .tl-left, .tl-item.right .tl-left,
    .tl-right, .tl-item.right .tl-right { order: unset !important; padding: 0 0 0 16px !important; text-align: left !important; }
    .tl-center, .tl-item.right .tl-center { order: unset !important; justify-content: flex-start; grid-row: 1; grid-column: 1; }
    .tl-left { grid-row: 1; grid-column: 2; }
    .tl-right { grid-column: 2; grid-row: 2; }
    .tl-item.right .tl-left { grid-row: 2; }
    .tl-item.right .tl-right { grid-row: 1; grid-column: 2; }
    .tl-dot { width: 44px; height: 44px; font-size: 17px; }
  }

  /* ─── CTA ────────────────────────────────────── */
  .cta-section {
    padding: 100px 5%;
    background: linear-gradient(135deg, var(--green-600) 0%, var(--green-800) 100%);
    text-align: center; position: relative; overflow: hidden;
  }
  .cta-section::before {
    content: ''; position: absolute; top: -80px; right: -80px;
    width: 340px; height: 340px; border-radius: 50%;
    background: rgba(255,255,255,0.04); pointer-events: none;
  }
  .cta-section::after {
    content: ''; position: absolute; bottom: -100px; left: -60px;
    width: 280px; height: 280px; border-radius: 50%;
    background: rgba(255,255,255,0.04); pointer-events: none;
  }
  .cta-inner { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }
  .cta-tag { background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25); color: white; }
  .cta-title {
    font-family: var(--font-display); font-size: clamp(28px, 4vw, 44px);
    font-weight: 700; color: white; line-height: 1.2; margin-bottom: 14px;
  }
  .cta-sub { font-size: 16px; color: rgba(255,255,255,0.72); line-height: 1.7; margin-bottom: 40px; }
  .cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
  .cta-btn-white {
    background: white; color: var(--green-800); padding: 15px 34px;
    border-radius: 100px; font-size: 15px; font-weight: 700;
    text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
    transition: var(--transition);
  }
  .cta-btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
  .cta-btn-ghost {
    background: transparent; color: white; padding: 14px 34px;
    border-radius: 100px; font-size: 15px; font-weight: 600;
    text-decoration: none; border: 2px solid rgba(255,255,255,0.45);
    display: inline-flex; align-items: center; gap: 8px;
    transition: var(--transition);
  }
  .cta-btn-ghost:hover { border-color: white; background: rgba(255,255,255,0.1); }
  .cta-info {
    display: flex; align-items: center; justify-content: center;
    gap: 28px; margin-top: 40px; flex-wrap: wrap;
  }
  .cta-info-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.7); font-size: 14px; }
  .cta-info-item i { color: var(--green-300); font-size: 16px; }



  /* ─── RESPONSIVE ─────────────────────────────── */
  @media (max-width: 1024px) {
    .who-grid { gap: 48px; }
    .vm-grid { gap: 20px; }
    .acc-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  }
  @media (max-width: 768px) {
    section { padding: 70px 5%; }
    nav { padding: 0 5%; }
    .nav-links { display: none; }
    .nav-hamburger { display: block; }
    .who-grid { grid-template-columns: 1fr; gap: 52px; }
    .who-img-float { top: -12px; left: -10px; }
    .who-img-badge { right: -12px; bottom: -14px; }
    .who-highlights { grid-template-columns: 1fr; }
    .vm-grid { grid-template-columns: 1fr; }
    .acc-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .page-hero { min-height: 280px; }
    .page-title { font-size: clamp(26px, 6vw, 38px); }
  }
  @media (max-width: 480px) {
    .who-highlights { grid-template-columns: 1fr; }
    .cta-actions { flex-direction: column; align-items: stretch; }
    .cta-btn-white, .cta-btn-ghost { justify-content: center; }
    .cta-info { flex-direction: column; gap: 14px; }
  }

  /* ─── SCROLL REVEAL ──────────────────────────── */
  .reveal {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.65s ease, transform 0.65s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }



  /* ─── SECTION DEFAULTS ───────────────────────── */
  section { padding: 90px 5%; }
  .container { max-width: 1200px; margin: 0 auto; }
  .section-tag {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: 12px; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--green-600);
    background: var(--green-50); border: 1px solid var(--green-100);
    padding: 5px 15px; border-radius: 100px; margin-bottom: 16px;
  }
  .section-tag i { font-size: 13px; }
  .section-title {
    font-family: var(--font-display); font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 700; color: var(--green-900); line-height: 1.2; margin-bottom: 14px;
  }
  .section-title em { color: var(--green-600); font-style: normal; }
  .section-lead { font-size: 16px; color: var(--gray-600); line-height: 1.75; }

  /* ─── ABOUT TRUST INTRO ──────────────────────── */
  .trust-intro-section { background: var(--white); }
  .trust-intro-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 72px; align-items: start; margin-top: 48px;
  }
  .trust-intro-body {
    font-size: 15.5px; color: var(--gray-600); line-height: 1.85; margin-bottom: 20px;
  }
  .trust-founded-badge {
    display: inline-flex; align-items: center; gap: 12px;
    background: var(--green-50); border: 1px solid var(--green-100);
    border-radius: var(--radius-md); padding: 16px 22px; margin-top: 8px;
  }
  .trust-founded-badge .badge-icon {
    width: 44px; height: 44px; border-radius: 12px;
    background: var(--green-600); color: white;
    display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0;
  }
  .trust-founded-badge .badge-text { font-size: 13px; color: var(--gray-600); line-height: 1.4; }
  .trust-founded-badge .badge-text strong { display: block; font-size: 16px; color: var(--green-900); font-weight: 700; }

  /* summary cards on right */
  .trust-summary-cards { display: flex; flex-direction: column; gap: 16px; }
  .trust-summary-card {
    background: var(--green-50); border: 1px solid var(--green-100);
    border-radius: var(--radius-md); padding: 20px 22px;
    display: flex; align-items: flex-start; gap: 14px;
    transition: var(--transition);
  }
  .trust-summary-card:hover { border-color: var(--green-300); box-shadow: var(--shadow-sm); }
  .trust-summary-card .card-icon {
    width: 42px; height: 42px; border-radius: 11px; flex-shrink: 0;
    background: var(--green-600); color: white;
    display: flex; align-items: center; justify-content: center; font-size: 18px;
  }
  .trust-summary-card .card-text h4 { font-size: 14px; font-weight: 600; color: var(--green-900); margin-bottom: 4px; }
  .trust-summary-card .card-text p { font-size: 13px; color: var(--gray-600); line-height: 1.55; }

  /* ─── PILLARS SECTION ────────────────────────── */
  .pillars-section { background: var(--off-white); }
  .pillars-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 52px; }
  .pillar-card {
    background: white; border-radius: var(--radius-lg);
    border: 1px solid var(--green-100); padding: 36px 30px;
    position: relative; overflow: hidden; transition: var(--transition);
  }
  .pillar-card::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 3px; background: linear-gradient(90deg, var(--green-400), var(--green-600));
    transform: scaleX(0); transform-origin: left; transition: transform 0.35s;
  }
  .pillar-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
  .pillar-card:hover::after { transform: scaleX(1); }
  .pillar-icon {
    width: 54px; height: 54px; border-radius: 15px;
    background: var(--green-50); border: 1px solid var(--green-100);
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; color: var(--green-600); margin-bottom: 20px;
  }
  .pillar-title { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--green-900); margin-bottom: 12px; }
  .pillar-body { font-size: 14.5px; color: var(--gray-600); line-height: 1.75; }

  /* ─── COMMITMENTS SECTION ────────────────────── */
  .commitments-section { background: var(--green-900); }
  .commitments-section .section-tag { background: rgba(76,175,110,0.15); border-color: rgba(76,175,110,0.3); color: var(--green-300); }
  .commitments-section .section-title { color: white; }
  .commitments-section .section-title em { color: var(--green-400); }
  .commitments-section .section-lead { color: rgba(255,255,255,0.6); }
  .commit-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 52px; }
  .commit-card {
    border-radius: var(--radius-md); padding: 28px 26px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
    display: flex; align-items: flex-start; gap: 16px;
    transition: var(--transition);
  }
  .commit-card:hover { border-color: rgba(76,175,110,0.3); background: rgba(76,175,110,0.06); }
  .commit-icon {
    width: 46px; height: 46px; border-radius: 13px; flex-shrink: 0;
    background: rgba(76,175,110,0.2); color: var(--green-400);
    display: flex; align-items: center; justify-content: center; font-size: 20px;
  }
  .commit-text h4 { font-size: 15px; font-weight: 600; color: white; margin-bottom: 7px; }
  .commit-text p { font-size: 13.5px; color: rgba(255,255,255,0.62); line-height: 1.65; }

  /* ─── MEMBERS TABLE SECTION ──────────────────── */
  .members-section { background: var(--white); }
  .members-section .section-header { max-width: 600px; margin-bottom: 48px; }
  .members-table-wrap {
    background: white; border-radius: var(--radius-lg);
    border: 1px solid var(--green-100); overflow: hidden;
    box-shadow: var(--shadow-sm);
  }
  .members-table {
    width: 100%; border-collapse: collapse; font-size: 14.5px;
  }
  .members-table thead tr {
    background: var(--green-900);
  }
  .members-table thead th {
    font-family: var(--font-body); font-size: 12px; font-weight: 600;
    letter-spacing: 0.09em; text-transform: uppercase;
    color: rgba(255,255,255,0.85); padding: 18px 28px; text-align: left;
  }
  .members-table thead th:first-child { width: 48px; text-align: center; }
  .members-table tbody tr {
    border-bottom: 1px solid var(--green-100); transition: background 0.18s;
  }
  .members-table tbody tr:last-child { border-bottom: none; }
  .members-table tbody tr:hover { background: var(--green-50); }
  .members-table tbody td {
    padding: 16px 28px; color: var(--gray-700); vertical-align: middle;
  }
  .members-table tbody td:first-child {
    text-align: center; font-size: 13px; font-weight: 600;
    color: var(--green-600); font-family: var(--font-display); width: 48px;
  }
  .member-name { font-weight: 600; color: var(--green-900); font-size: 15px; }
  .designation-badge {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 13px; font-weight: 500; color: var(--green-700);
    background: var(--green-50); border: 1px solid var(--green-100);
    padding: 4px 12px; border-radius: 100px;
  }
  /* special highlight for President/Secretary/Treasurer */
  .members-table tbody tr.rank-1 .designation-badge { background: linear-gradient(90deg, #fff3e0, #fce4ec); border-color: #ffccbc; color: #bf360c; }
  .members-table tbody tr.rank-2 .designation-badge { background: var(--green-100); border-color: var(--green-300); color: var(--green-800); }
  .members-table tbody tr.rank-3 .designation-badge { background: #e3f2fd; border-color: #90caf9; color: #0d47a1; }

  /* ─── NAV SUBNAV (sub-page menu) ───────────────── */
  .subnav {
    background: white; border-bottom: 1px solid var(--green-100);
    padding: 0 5%; position: sticky; top: 70px; z-index: 990;
    box-shadow: var(--shadow-sm);
  }
  .subnav-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; gap: 0; overflow-x: auto;
  }
  .subnav-inner::-webkit-scrollbar { display: none; }
  .subnav-inner a {
    font-size: 13.5px; font-weight: 500; color: var(--gray-600);
    text-decoration: none; padding: 16px 18px; white-space: nowrap;
    border-bottom: 2px solid transparent; transition: color 0.2s, border-color 0.2s;
  }
  .subnav-inner a:hover { color: var(--green-700); }
  .subnav-inner a.active { color: var(--green-600); border-bottom-color: var(--green-600); font-weight: 600; }


  /* ─── SCROLL REVEAL ──────────────────────────── */
  .reveal {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.65s ease, transform 0.65s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }

  /* ─── RESPONSIVE ─────────────────────────────── */
  @media (max-width: 1024px) {
    .trust-intro-grid { gap: 48px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  }
  @media (max-width: 768px) {
    section { padding: 70px 5%; }
    .nav-hamburger { display: block; }
    .trust-intro-grid { grid-template-columns: 1fr; gap: 36px; }
    .pillars-grid { grid-template-columns: 1fr; }
    .commit-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .page-hero { min-height: 280px; }
    .members-table { font-size: 13px; }
    .members-table tbody td, .members-table thead th { padding: 14px 16px; }
  }
  @media (max-width: 480px) {
    .pillars-grid { grid-template-columns: 1fr; }
    .commit-grid { grid-template-columns: 1fr; }
    .subnav-inner a { padding: 14px 14px; font-size: 13px; }
  }