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

    :root {
      --navy: #0D1B2A;
      --gold: #C8963E;
      --gold-light: #D4A84E;
      --white: #FFFFFF;
      --light-gray: #F5F5F5;
      --dark-text: #1A1A2E;
      --text-muted: #6B7280;
    }

    html {
      scroll-behavior: smooth;
      -webkit-text-size-adjust: 100%;
    }

    body {
      font-family: 'Plus Jakarta Sans', sans-serif;
      background: #FFFFFF;
      color: #1A1A2E;
      min-height: 100vh;
      line-height: 1.6;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    h1, h2, h3, h4 {
      font-family: 'DM Serif Display', serif;
      line-height: 1.2;
    }

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

    img {
      max-width: 100%;
      height: auto;
    }

    ul {
      list-style: none;
    }

    /* ========================================
       UTILITY
       ======================================== */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .section-label {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 13px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 2.5px;
      color: #C8963E;
      margin-bottom: 16px;
    }

    .section-title {
      font-size: clamp(32px, 5vw, 48px);
      color: var(--dark-text);
      margin-bottom: 20px;
    }

    .section-subtitle {
      font-size: 18px;
      color: var(--text-muted);
      max-width: 640px;
      line-height: 1.7;
    }

    /* Fade-in animation */
    .fade-in {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease-out, transform 0.7s ease-out;
    }

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

    .fade-in-delay-1 { transition-delay: 0.1s; }
    .fade-in-delay-2 { transition-delay: 0.2s; }
    .fade-in-delay-3 { transition-delay: 0.3s; }
    .fade-in-delay-4 { transition-delay: 0.4s; }
    .fade-in-delay-5 { transition-delay: 0.5s; }
    .fade-in-delay-6 { transition-delay: 0.6s; }

    /* ========================================
       NAVIGATION
       ======================================== */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: rgba(13, 27, 42, 0.85);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      transition: background 0.3s ease, box-shadow 0.3s ease;
    }

    .navbar.scrolled {
      background: rgba(13, 27, 42, 0.95);
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    }

    .navbar-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
    }

    .navbar-logo {
      display: flex;
      align-items: center;
      gap: 14px;
      text-decoration: none;
    }

    .navbar-logo-bar {
      width: 3px;
      height: 36px;
      background: linear-gradient(180deg, #C8963E, #E8B85E);
      border-radius: 2px;
    }

    .navbar-logo-text {
      font-family: 'DM Serif Display', serif;
      font-size: 18px;
      color: #FFFFFF;
      letter-spacing: 1.5px;
      line-height: 1.2;
    }

    .navbar-logo-text span {
      display: block;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 10px;
      color: #C8963E;
      letter-spacing: 3px;
      text-transform: uppercase;
      font-weight: 500;
      margin-top: 2px;
    }

    .navbar-links {
      display: flex;
      align-items: center;
      gap: 36px;
    }

    .navbar-links a {
      font-size: 14px;
      font-weight: 500;
      color: #8899AA;
      transition: color 0.3s ease;
      position: relative;
    }

    .navbar-links a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: #C8963E;
      transition: width 0.3s ease;
    }

    .navbar-links a:hover,
    .navbar-links a.active {
      color: #FFFFFF;
    }

    .navbar-links a:hover::after,
    .navbar-links a.active::after {
      width: 100%;
    }

    .navbar-links a:focus-visible {
      outline: 2px solid #C8963E;
      outline-offset: 4px;
      border-radius: 2px;
    }

    .navbar-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 24px;
      background: #C8963E;
      color: #FFFFFF;
      font-size: 14px;
      font-weight: 600;
      border-radius: 8px;
      transition: background 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

    .navbar-cta:hover {
      background: #B8862E;
      transform: translateY(-1px);
    }

    .navbar-cta:focus-visible {
      outline: 2px solid #C8963E;
      outline-offset: 4px;
    }

    /* Hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px;
      z-index: 1001;
    }

    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: #E0E7EE;
      border-radius: 2px;
      transition: all 0.3s ease;
    }

    .hamburger.open span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.open span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.open span:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Mobile menu */
    .mobile-menu {
      display: none;
      position: fixed;
      top: 72px;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(13, 27, 42, 0.98);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      z-index: 999;
      padding: 40px 24px;
      flex-direction: column;
      gap: 8px;
      overflow-y: auto;
    }

    .mobile-menu.open {
      display: flex;
    }

    .mobile-menu a {
      font-size: 20px;
      font-weight: 500;
      color: #8899AA;
      padding: 16px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      transition: color 0.3s ease;
    }

    .mobile-menu a:hover,
    .mobile-menu a.active {
      color: #FFFFFF;
    }

    .mobile-menu .navbar-cta {
      margin-top: 24px;
      text-align: center;
      justify-content: center;
      padding: 16px 24px;
      font-size: 16px;
    }

    /* ========================================
       HERO SECTION
       ======================================== */
    .hero {
      position: relative;
      padding: 180px 0 120px;
      overflow: hidden;
      text-align: center;
      background: var(--navy);
    }

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

    .hero-bg::before {
      content: '';
      position: absolute;
      top: -200px;
      right: -200px;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(200, 150, 62, 0.08) 0%, transparent 70%);
      border-radius: 50%;
    }

    .hero-bg::after {
      content: '';
      position: absolute;
      bottom: -100px;
      left: -100px;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(200, 150, 62, 0.05) 0%, transparent 70%);
      border-radius: 50%;
    }

    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .hero-label {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 13px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 3px;
      color: #C8963E;
      margin-bottom: 24px;
    }

    .hero h1 {
      font-size: clamp(40px, 6vw, 64px);
      color: #FFFFFF;
      margin-bottom: 24px;
      line-height: 1.1;
    }

    .hero h1 em {
      font-style: italic;
      color: #C8963E;
    }

    .hero-text {
      font-size: 18px;
      color: #8899AA;
      line-height: 1.8;
      max-width: 620px;
      margin: 0 auto;
    }

    .hero-divider {
      width: 60px;
      height: 3px;
      background: linear-gradient(90deg, #C8963E, #E8B85E);
      border-radius: 2px;
      margin: 40px auto 0;
    }

    /* ========================================
       OUR STORY
       ======================================== */
    .story-section {
      padding: 100px 0;
      position: relative;
      background: var(--white);
    }

    .story-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: start;
    }

    .story-left .section-label {
      margin-bottom: 16px;
    }

    .story-left .section-title {
      margin-bottom: 0;
    }

    .story-accent-line {
      width: 50px;
      height: 3px;
      background: linear-gradient(90deg, #C8963E, #E8B85E);
      border-radius: 2px;
      margin-top: 24px;
    }

    .story-right p {
      font-size: 16px;
      color: #374151;
      line-height: 1.8;
      margin-bottom: 20px;
    }

    .story-right p:last-child {
      margin-bottom: 0;
    }

    .story-right strong {
      color: #C8963E;
      font-weight: 600;
    }

    /* ========================================
       MISSION, VISION, PROMISE
       ======================================== */
    .mvp-section {
      padding: 100px 0;
      position: relative;
      background: var(--light-gray);
    }

    .mvp-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: none;
      pointer-events: none;
    }

    .mvp-header {
      text-align: center;
      margin-bottom: 60px;
      position: relative;
      z-index: 1;
    }

    .mvp-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
      position: relative;
      z-index: 1;
    }

    .mvp-card {
      background: var(--white);
      border: 1px solid #E5E7EB;
      border-radius: 16px;
      padding: 40px 32px;
      transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    }

    .mvp-card:hover {
      transform: translateY(-4px);
      border-color: transparent;
      box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    }

    .mvp-icon {
      width: 56px;
      height: 56px;
      border-radius: 14px;
      background: rgba(200, 150, 62, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
      font-size: 24px;
    }

    .mvp-card h3 {
      font-size: 24px;
      color: var(--dark-text);
      margin-bottom: 16px;
    }

    .mvp-card p {
      font-size: 15px;
      color: var(--text-muted);
      line-height: 1.7;
    }

    /* ========================================
       STATS / BY THE NUMBERS
       ======================================== */
    .stats-section {
      padding: 100px 0;
      position: relative;
      background: var(--navy);
    }

    .stats-section .section-title {
      color: #FFFFFF;
    }

    .stats-section .section-subtitle {
      color: #8899AA;
    }

    .stats-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .stat-card {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.06);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-radius: 16px;
      padding: 36px 28px;
      text-align: center;
      transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    }

    .stat-card:hover {
      transform: translateY(-4px);
      border-color: rgba(200, 150, 62, 0.25);
      box-shadow: 0 8px 40px rgba(200, 150, 62, 0.08);
    }

    .stat-number {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(36px, 4vw, 48px);
      color: #C8963E;
      line-height: 1;
      margin-bottom: 8px;
    }

    .stat-label {
      font-size: 14px;
      font-weight: 500;
      color: #8899AA;
      letter-spacing: 0.5px;
    }

    /* ========================================
       WHAT SETS US APART
       ======================================== */
    .apart-section {
      padding: 100px 0;
      position: relative;
      background: var(--white);
    }

    .apart-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: none;
      pointer-events: none;
    }

    .apart-header {
      text-align: center;
      margin-bottom: 60px;
      position: relative;
      z-index: 1;
    }

    .apart-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
      position: relative;
      z-index: 1;
    }

    .apart-card {
      background: var(--white);
      border: 1px solid #E5E7EB;
      border-radius: 16px;
      padding: 36px 28px;
      transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    }

    .apart-card:hover {
      transform: translateY(-4px);
      border-color: transparent;
      box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    }

    .apart-card-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: rgba(200, 150, 62, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      font-size: 22px;
    }

    .apart-card h3 {
      font-size: 20px;
      color: var(--dark-text);
      margin-bottom: 12px;
    }

    .apart-card p {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.7;
    }

    /* ========================================
       LEADERSHIP
       ======================================== */
    .leadership-section {
      padding: 100px 0;
      position: relative;
      background: var(--light-gray);
    }

    .leadership-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .leadership-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }

    .leader-card {
      background: var(--white);
      border: 1px solid #E5E7EB;
      border-radius: 16px;
      padding: 40px 28px;
      text-align: center;
      transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    }

    .leader-card:hover {
      transform: translateY(-4px);
      border-color: transparent;
      box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    }

    .leader-avatar {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'DM Serif Display', serif;
      font-size: 28px;
      color: #FFFFFF;
      margin: 0 auto 20px;
      position: relative;
    }

    .leader-avatar::after {
      content: '';
      position: absolute;
      inset: -3px;
      border-radius: 50%;
      border: 2px solid rgba(200, 150, 62, 0.3);
    }

    .leader-avatar-srl {
      background: linear-gradient(135deg, #C8963E, #A07830);
    }

    .leader-avatar-ops {
      background: linear-gradient(135deg, #2563EB, #1D4ED8);
    }

    .leader-avatar-ot {
      background: linear-gradient(135deg, #059669, #047857);
    }

    .leader-name {
      font-size: 22px;
      color: var(--dark-text);
      margin-bottom: 6px;
    }

    .leader-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 13px;
      font-weight: 600;
      color: #C8963E;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 16px;
    }

    .leader-bio {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.7;
    }

    /* ========================================
       CTA SECTION
       ======================================== */
    .cta-section {
      padding: 100px 0;
      position: relative;
      text-align: center;
      background: var(--navy);
    }

    .cta-section .section-title {
      color: #FFFFFF;
    }

    .cta-box {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.06);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-radius: 24px;
      padding: 80px 40px;
      position: relative;
      overflow: hidden;
    }

    .cta-box::before {
      content: '';
      position: absolute;
      top: -100px;
      left: 50%;
      transform: translateX(-50%);
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(200, 150, 62, 0.06) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }

    .cta-box h2 {
      font-size: clamp(32px, 4vw, 44px);
      color: #FFFFFF;
      margin-bottom: 16px;
      position: relative;
      z-index: 1;
    }

    .cta-box p {
      font-size: 17px;
      color: #8899AA;
      margin-bottom: 40px;
      position: relative;
      z-index: 1;
    }

    .cta-buttons {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
      position: relative;
      z-index: 1;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 32px;
      background: #C8963E;
      color: #FFFFFF;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 15px;
      font-weight: 600;
      border-radius: 10px;
      transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .btn-primary:hover {
      background: #B8862E;
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(200, 150, 62, 0.3);
    }

    .btn-primary:focus-visible {
      outline: 2px solid #C8963E;
      outline-offset: 4px;
    }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 32px;
      background: transparent;
      color: #C8963E;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 15px;
      font-weight: 600;
      border-radius: 10px;
      border: 2px solid rgba(200, 150, 62, 0.4);
      transition: border-color 0.3s ease, background 0.3s ease, transform 0.2s ease;
      cursor: pointer;
    }

    .btn-secondary:hover {
      border-color: #C8963E;
      background: rgba(200, 150, 62, 0.08);
      transform: translateY(-2px);
    }

    .btn-secondary:focus-visible {
      outline: 2px solid #C8963E;
      outline-offset: 4px;
    }

    /* ========================================
       FOOTER
       ======================================== */
    .footer {
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      padding: 80px 0 40px;
      position: relative;
      background: var(--navy);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 60px;
    }

    .footer-brand p {
      font-size: 14px;
      color: #667788;
      line-height: 1.7;
      margin-top: 16px;
      max-width: 280px;
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .footer-logo-bar {
      width: 3px;
      height: 30px;
      background: linear-gradient(180deg, #C8963E, #E8B85E);
      border-radius: 2px;
    }

    .footer-logo-text {
      font-family: 'DM Serif Display', serif;
      font-size: 16px;
      color: #FFFFFF;
      letter-spacing: 1px;
    }

    .footer-col h4 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 13px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: #C8963E;
      margin-bottom: 20px;
    }

    .footer-col ul li {
      margin-bottom: 12px;
    }

    .footer-col ul li a {
      font-size: 14px;
      color: #667788;
      transition: color 0.3s ease;
    }

    .footer-col ul li a:hover {
      color: #FFFFFF;
    }

    .footer-col ul li a:focus-visible {
      outline: 2px solid #C8963E;
      outline-offset: 2px;
      border-radius: 2px;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      padding-top: 32px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
    }

    .footer-bottom p {
      font-size: 13px;
      color: #4A5568;
    }

    .footer-bottom-links {
      display: flex;
      gap: 24px;
    }

    .footer-bottom-links a {
      font-size: 13px;
      color: #4A5568;
      transition: color 0.3s ease;
    }

    .footer-bottom-links a:hover {
      color: #C8963E;
    }

    /* ========================================
       RESPONSIVE — TABLET
       ======================================== */
    @media (max-width: 1024px) {
      .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }

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

      .mvp-grid .mvp-card:last-child,
      .leadership-grid .leader-card:last-child {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
      }

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

      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
      }
    }

    /* ========================================
       RESPONSIVE — MOBILE
       ======================================== */
    @media (max-width: 768px) {
      .navbar-links,
      .navbar-cta-desktop {
        display: none;
      }

      .hamburger {
        display: flex;
      }

      .hero {
        padding: 140px 0 80px;
      }

      .hero-text {
        font-size: 16px;
      }

      .story-section,
      .mvp-section,
      .stats-section,
      .apart-section,
      .leadership-section,
      .cta-section {
        padding: 70px 0;
      }

      .mvp-grid,
      .apart-grid,
      .leadership-grid {
        grid-template-columns: 1fr;
      }

      .mvp-grid .mvp-card:last-child,
      .leadership-grid .leader-card:last-child {
        max-width: 100%;
      }

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

      .cta-box {
        padding: 50px 24px;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
      }

      .footer-bottom {
        flex-direction: column;
        text-align: center;
      }
    }

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

      .hero h1 {
        font-size: 34px;
      }

      .navbar-inner {
        padding: 0 16px;
      }

      .container {
        padding: 0 16px;
      }
    }

    /* ========================================
       SKIP LINK (Accessibility)
       ======================================== */
    .skip-link {
      position: absolute;
      top: -100%;
      left: 16px;
      background: #C8963E;
      color: #FFFFFF;
      padding: 12px 24px;
      border-radius: 8px;
      font-weight: 600;
      z-index: 10000;
      transition: top 0.3s ease;
    }

    .skip-link:focus {
      top: 16px;
    }

    /* ========================================
       REDUCED MOTION
       ======================================== */
    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      .fade-in {
        opacity: 1;
        transform: none;
        transition: none;
      }

      .mvp-card,
      .apart-card,
      .stat-card,
      .leader-card {
        transition: none;
      }

      .navbar-links a::after {
        transition: none;
      }
    }
  
