    /* ─── DESIGN TOKENS ─── */
    :root {
      --primary:    #354D3F;
      --secondary:  #1F4F4A;
      --gold:       #C6A86B;
      --gold-dark:  #b29357;
      --white:      #ffffff;
      --muted:      rgba(255,255,255,0.50);
      --nav-bg:     rgba(31, 42, 38, 0.85);
      --pad:        144px;
      --nav-h:      125px;
      --radius:     10px;
      --font-h:     'Montserrat', sans-serif;
      --font-ui:    'Inter', sans-serif;
    }

    /* ─── RESET ─── */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html, body { font-family: var(--font-h); background: var(--primary); color: var(--white); overflow-x: hidden; line-height: 1.5; }
    img { display: block; max-width: 100%; }
    a { text-decoration: none; }

    /* ─── NAVBAR ─── */
    .admin-bar nav { top: 32px; }

    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      background: var(--nav-bg);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(255,255,255,0.07);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 141px;
      height: 125px;
    }

    .nav-logo {
      display: inline-flex;
      align-items: center;
      text-decoration: none;
      flex-shrink: 0;
    }

    nav .nav-logo img {
      height: 75px;
      width: auto;
      max-width: 260px;
      display: block;
      object-fit: contain;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 28px;
      list-style: none;
    }

    .nav-links a {
      display: inline-flex;
      padding: 16px;
      justify-content: center;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      color: rgba(255,255,255,0.50);
      font-family: 'Montserrat', sans-serif;
      font-size: 14px;
      font-weight: 400;
      white-space: nowrap;
      transition: color 0.2s;
    }

    .nav-links a:hover { color: var(--white); }
    .nav-links a.active { color: var(--gold); }

    .btn-contact-nav {
      background: var(--gold);
      color: var(--white) !important;
      padding: 0 28px !important;
      height: 55px;
      line-height: 55px;
      border-radius: 999px;
      font-family: 'Montserrat', sans-serif !important;
      font-weight: 400 !important;
      font-size: 14px !important;
      letter-spacing: 0.4px;
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
      transition: background 0.25s, border-color 0.25s, color 0.25s !important;
    }
    .btn-contact-nav:hover {
      background: var(--gold-dark) !important;
      color: var(--white) !important;
    }

    /* Hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      cursor: pointer;
      padding: 6px;
      background: none;
      border: none;
      z-index: 200;
    }
    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--white);
      border-radius: 2px;
      transition: all 0.3s ease;
      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); }

    .mobile-menu {
      display: none;
      position: fixed;
      top: 125px;
      left: 0; right: 0;
      background: rgba(31, 46, 39, 0.98);
      backdrop-filter: blur(12px);
      z-index: 99;
      padding: 20px 24px 28px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      flex-direction: column;
      gap: 0;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      display: block;
      padding: 16px 0;
      font-size: 15px;
      color: rgba(255,255,255,0.80);
      text-decoration: none;
      border-bottom: 1px solid rgba(255,255,255,0.07);
      transition: color 0.2s;
    }
    .mobile-menu a:hover { color: var(--white); }
    .mobile-menu a.active { color: var(--gold); }
    .mobile-menu .btn-contact-mobile {
      margin-top: 16px;
      display: inline-block;
      background: var(--gold);
      color: var(--white) !important;
      border: none;
      padding: 12px 24px;
      border-radius: 999px;
      font-family: 'Montserrat', sans-serif;
      font-weight: 600;
      font-size: 14px;
      text-align: center;
      border-bottom: none !important;
    }

    /* ───────────────────────────────────────────
       SECTION 1 — WHO WE ARE
    ─────────────────────────────────────────── */
    .sec-hero {
      position: relative;
      background: var(--primary);
      min-height: auto;
      overflow: hidden;
    }

    /* Hero background image with pointed bottom clip */
    .sec-hero__bg {
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 479px;
      background: url('../../figma-assets/header_img.webp') center center / cover no-repeat;
      clip-path: polygon(
        0% 0%, 100% 0%, 100% 84.5%,
        54.5% 84.5%, 50% 100%, 45.5% 84.5%,
        0% 84.5%
      );
      z-index: 0;
    }

    /* Gradient so text is readable */

    .sec-hero__inner {
      position: relative;
      z-index: 1;
      padding: 0 var(--pad);
      min-height: auto;
      display: flex;
      flex-direction: column;
    }

    /* "ABOUT US" — right-aligned, y:299 from section top */
    .sec-hero__label {
      font-family: var(--font-h);
      font-weight: 700;
      font-size: 60px;
      line-height: 1em;
      text-transform: uppercase;
      text-align: right;
      color: var(--white);
      margin-top: 299px;
      letter-spacing: 0;
    }

    /* Two-col: WHO WE ARE + body, y:537 */
    .sec-hero__grid {
      display: grid;
      grid-template-columns: 367px 1fr;
      gap: 24px;
      margin-top: 129px;
      padding-top: clamp(32px, 4vw, 50px);
      flex: 1;
    }

    .sec-hero__who {
      font-family: var(--font-h);
      font-weight: 700;
      font-size: 50px;
      line-height: 1em;
      text-transform: uppercase;
      color: var(--white);
    }

    .sec-hero__right {
      display: flex;
      flex-direction: column;
      gap: 28px;
      padding-bottom: clamp(82px, calc(5vw + 50px), 100px);
    }

    .sec-hero__right p {
      font-size: 16px;
      line-height: 1.5;
      color: var(--white);
    }

    /* Know More button */
    .btn-more {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      height: 55px;
      padding: 0 28px;
      border-radius: 999px;
      border: 1.5px solid rgba(255,255,255,0.55);
      color: var(--white);
      font-family: 'Montserrat', sans-serif;
      font-size: 14px;
      font-weight: 400;
      transition: background 0.25s, border-color 0.25s, color 0.25s;
      cursor: pointer;
      width: fit-content;
    }
    .btn-more:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }

    /* ───────────────────────────────────────────
       SECTION 2 — WHAT MAKES US DIFFERENT
    ─────────────────────────────────────────── */
    .sec-diff {
      background: var(--secondary);
      padding: 100px var(--pad) 100px;
      position: relative;
    }

    .sec-diff__head-wrap {
      padding-top: 0;
      padding-bottom: 80px;
      text-align: center;
    }

    .sec-diff__heading {
      font-family: var(--font-h);
      font-weight: 700;
      font-size: 50px;
      line-height: 1em;
      text-transform: uppercase;
      color: var(--white);
      position: relative;
      z-index: 1;
      background: var(--secondary);
      padding: 25px 48px;
      display: inline-block;
    }

    /* Center vertical line — spans full section height */
    .sec-diff::after {
      content: '';
      position: absolute;
      left: 50%; top: 0; bottom: 0;
      width: 1px;
      background: rgba(255,255,255,0.35);
      transform: translateX(-50%);
      pointer-events: none;
      z-index: 0;
    }
    .sec-diff__rows {
      position: relative;
    }

    /* Each alternating row */
    .diff-row {
      display: grid;
      grid-template-columns: 1fr 174px 1fr;
      align-items: start;
      min-height: 341px;
      margin-bottom: 87px;
    }

    .diff-row:last-child { margin-bottom: 0; }

    /* Center column: dot */
    .diff-col-center {
      display: flex;
      justify-content: center;
      padding-top: 0;
      position: relative;
      z-index: 1;
    }

    .diff-dot {
      width: 24px; height: 24px;
      border-radius: 50%;
      background: var(--white);
      border: 2px solid var(--secondary);
      flex-shrink: 0;
    }

    /* Image column */
    .diff-img {
      border-radius: var(--radius);
      overflow: hidden;
      height: 341px;
    }
    .diff-img img {
      width: 100%; height: 100%;
      object-fit: cover;
    }

    /* Text column */
    .diff-text {
      padding-top: 0;
      padding-bottom: 0;
    }
    .diff-text--left  { padding-right: 0; text-align: right; }
    .diff-text--right { padding-left: 0;  text-align: left; }

    .diff-text__heading {
      font-family: var(--font-h);
      font-weight: 700;
      font-size: 30px;
      line-height: 1.067em;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 20px;
    }

    .diff-text__para {
      font-family: var(--font-h);
      font-weight: 400;
      font-size: 16px;
      line-height: 1.5;
      color: var(--white);
    }

    /* ───────────────────────────────────────────
       SECTION 3 — OUR LEADERSHIP
    ─────────────────────────────────────────── */
    .sec-lead {
      background: var(--primary);
      display: grid;
      grid-template-columns: 1fr 512px;
      min-height: 810px;
      overflow: hidden;
      align-items: stretch;
    }

    .sec-lead__content {
      padding: 0 80px 80px var(--pad);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-end;
    }

    .sec-lead__heading {
      font-family: var(--font-h);
      font-weight: 700;
      font-size: 50px;
      line-height: 1em;
      text-transform: uppercase;
      text-align: right;
      color: var(--white);
      max-width: 564px;
      margin-bottom: 32px;
    }

    .sec-lead__desc {
      font-family: var(--font-h);
      font-weight: 400;
      font-size: 16px;
      line-height: 1.5;
      text-align: right;
      color: var(--white);
      max-width: 491px;
      margin-bottom: 48px;
    }

    .btn-lead {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      height: 55px;
      padding: 0 28px;
      border-radius: 999px;
      border: 1.5px solid rgba(255,255,255,0.55);
      color: var(--white);
      font-family: 'Montserrat', sans-serif;
      font-size: 14px;
      font-weight: 400;
      transition: background 0.25s, border-color 0.25s, color 0.25s;
      cursor: pointer;
    }
    .btn-lead:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }

    .sec-lead__image {
      position: relative;
      overflow: hidden;
      align-self: stretch;
      padding-right: var(--pad);
    }
    .sec-lead__image img {
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center center;
      display: block;
    }

    /* Pointed notch on left edge of image */
    .sec-lead__notch {
      position: absolute;
      top: 0; bottom: 0; left: 0;
      width: 70px;
      background: var(--primary);
      clip-path: polygon(0 0, 100% 38%, 100% 62%, 0 100%);
      z-index: 1;
    }

    /* ───────────────────────────────────────────
       SECTION 4 — PRINCIPLES THAT GUIDE OUR WORK
    ─────────────────────────────────────────── */
    .sec-prin {
      background: var(--secondary);
      padding: 100px var(--pad);
      min-height: 810px;
    }

    .sec-prin__top {
      display: grid;
      grid-template-columns: 564px 1fr;
      gap: 70px;
      margin-bottom: 60px;
      align-items: end;
    }

    .sec-prin__heading {
      font-family: var(--font-h);
      font-weight: 700;
      font-size: 50px;
      line-height: 1em;
      text-transform: uppercase;
      color: var(--white);
    }

    .sec-prin__desc {
      font-family: var(--font-h);
      font-weight: 400;
      font-size: 16px;
      line-height: 1.5;
      color: var(--white);
      text-align: left;
      align-self: end;
    }

    /* "Our Values" label with dotted lines */
    .sec-prin__values {
      display: flex;
      align-items: center;
      gap: 16px;
      width: 100%;
      margin-bottom: 35px;
      font-family: var(--font-h);
      font-size: 16px;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.55);
      font-weight: 600;
      white-space: nowrap;
    }

    .sec-prin__line {
      flex: 1;
      height: 0;
      border-top: 1px dotted rgba(255,255,255,0.25);
    }

    .sec-prin__label {
      font-family: var(--font-h);
      font-weight: 600;
      font-size: 16px;
      text-transform: uppercase;
      letter-spacing: 4px;
      color: rgba(255,255,255,0.55);
      white-space: nowrap;
    }

    /* Three branch image cards */
    .sec-prin__cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .prin-item {
      display: flex;
      flex-direction: column;
      gap: 0;
      cursor: pointer;
    }

    .prin-card {
      position: relative;
      border-radius: var(--radius);
      overflow: hidden;
      height: 256px;
    }
    .prin-card img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s;
    }
    .prin-card:hover img {
      transform: scale(1.04);
    }

    .prin-card-overlay {
      position: absolute;
      inset: 0;
      background: transparent;
      mix-blend-mode: color;
      transition: background 0.4s;
    }
    .prin-card:hover .prin-card-overlay {
      background: var(--secondary);
    }

    .prin-name {
      font-family: var(--font-h);
      font-weight: 700;
      font-size: clamp(18px, 1.8vw, 30px);
      text-transform: uppercase;
      letter-spacing: 0.7px;
      color: var(--white);
      margin-top: -22px;
      position: relative;
      z-index: 1;
      padding: 0 20px;
    }

    /* ───────────────────────────────────────────
       FOOTER
    ─────────────────────────────────────────── */
    .site-footer {
      background: var(--primary);
      padding: 28px var(--pad) 22px;
      border-top: 1px dotted rgba(255,255,255,0.08);
    }

    .footer-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
      margin-bottom: 18px;
    }

    .footer-logo img { height: 75px; width: auto; object-fit: contain; }

    .footer-nav {
      display: flex;
      align-items: center;
      list-style: none;
    }
    .footer-nav a {
      display: flex;
      align-items: center;
      padding: 16px;
      font-family: var(--font-h);
      font-size: 14px;
      font-weight: 400;
      color: rgba(255,255,255,0.5);
      transition: color 0.2s;
    }
    .footer-nav a:hover { color: var(--white); }
    .footer-nav a.active { color: var(--gold); }

    .footer-divider {
      height: 0;
      border-top: 1px dotted rgba(255,255,255,0.12);
      margin-bottom: 16px;
    }

    .footer-copy {
      text-align: center;
      font-family: var(--font-h);
      font-size: 12px;
      font-weight: 400;
      color: rgba(255,255,255,0.45);
      letter-spacing: 0.3px;
    }

    /* ─── SHORT SCREENS (max-height 810px, e.g. 1366x768) ─── */
    @media (min-width: 1440px) {
      .sec-lead { grid-template-columns: 1fr 580px; min-height: 900px; }
    }

    @media (max-height: 810px) and (min-width: 961px) {
      .sec-hero__inner { padding-bottom: clamp(40px, 5vh, 60px); }
      .sec-diff { padding-bottom: 100px; }
      .sec-lead { min-height: auto; }
      .sec-lead__content { padding: clamp(40px, 5vh, 60px) 80px clamp(40px, 5vh, 60px) var(--pad); }
      .sec-lead__image { min-height: auto; }
      .sec-prin { min-height: auto; padding-bottom: 100px; }
    }

    /* ─── FOCUS STATES ─── */
    :focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

    /* ─── REDUCED MOTION ─── */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
    }

    /* ───────────────────────────────────────────
       RESPONSIVE — TABLET (≤960px)
    ─────────────────────────────────────────── */
    @media (max-width: 1280px) {
      :root { --pad: 80px; }
      nav { padding: 0 60px; }
      .nav-links a { padding: 12px 10px; font-size: 14px; }
      .sec-hero__label  { font-size: clamp(32px, 5vw, 56px); }
      .sec-hero__who    { font-size: clamp(28px, 4vw, 46px); }
      .sec-diff__heading,
      .sec-lead__heading,
      .sec-prin__heading { font-size: clamp(28px, 4vw, 46px); }

      /* Principles: switch fixed 564px col to proportional, give desc breathing room */
      .sec-prin { min-height: auto; }
      .sec-prin__top { grid-template-columns: 1fr 1fr; gap: 40px; }
      .sec-prin__desc { font-size: 16px; }

      /* prin-name: clamp so long names (HUMAN POTENTIAL) stay on one line in ~272px card */
      .prin-name { font-size: clamp(16px, 2vw, 28px); }
    }

@media (max-width: 960px) {
      :root { --pad: 40px; }

      nav { padding: 0 40px; }
      .nav-links { display: none; }
      .hamburger { display: flex; }

      /* Hero */
      .sec-hero__label { font-size: clamp(36px, 5vw, 50px); margin-top: 299px; }
      .sec-hero__grid { grid-template-columns: 1fr; gap: 32px; margin-top: 130px; }
      .sec-hero__who { font-size: 36px; }

      /* Different */
      .sec-diff__head-wrap { padding-top: 0; padding-bottom: 48px; }
      .sec-diff__heading { font-size: 36px; }
      .sec-diff::after { display: none; }
      .diff-row { grid-template-columns: 1fr; gap: 24px; margin-bottom: clamp(40px, 5vw, 60px); }
      .diff-col-center { display: none; }
      .diff-text--left { text-align: left; padding-right: 0; order: 2; }
      .diff-text--right { padding-left: 0; }
      .diff-img { height: 220px; }

      /* Leadership */
      .sec-lead { grid-template-columns: 1fr; min-height: auto; }
      .sec-lead__content { padding: 60px var(--pad); align-items: flex-start; }
      .sec-lead__heading { text-align: left; font-size: 36px; }
      .sec-lead__desc { text-align: left; }
      .sec-lead__image { height: 320px; }
      .sec-lead__notch { display: none; }

      /* Principles */
      .sec-prin { min-height: auto; }
      .sec-prin__top { grid-template-columns: 1fr; gap: 24px; }
      .sec-prin__heading { font-size: 36px; }
      .sec-prin__desc { font-size: 16px; }
      .sec-prin__cards { grid-template-columns: 1fr 1fr; }
      .prin-name { font-size: clamp(16px, 2.8vw, 26px); }

      /* Footer */
      .footer-top { flex-direction: column; align-items: flex-start; gap: 20px; }
      .footer-nav { flex-wrap: nowrap; overflow-x: auto; gap: 0; width: 100%; scrollbar-width: none; }
      .footer-nav::-webkit-scrollbar { display: none; }
      .footer-nav a { white-space: nowrap; }
    }

    /* ───────────────────────────────────────────
       RESPONSIVE — MOBILE (≤600px)
    ─────────────────────────────────────────── */
    @media (max-width: 600px) {
      :root { --pad: 20px; --nav-h: 90px; }

      .mobile-menu { top: 90px; }
      nav { height: 90px; padding: 0 20px; }
      nav .nav-logo img { height: 54px; }

      /* Hero */
      .sec-hero { min-height: auto; }
      .sec-hero__bg { height: 300px; }
      .sec-hero__inner { min-height: auto; padding-bottom: 60px; }
      .sec-hero__label { font-size: clamp(28px, 8vw, 36px); margin-top: 187px; }
      .sec-hero__grid { margin-top: 75px; }
      .sec-hero__who { font-size: clamp(24px, 7vw, 30px); line-height: 1.2; }
      .sec-hero__who br { display: inline; }
      .sec-hero__right p { font-size: 16px; }

      /* Different */
      .sec-diff { padding-top: 100px; padding-bottom: 100px; }
      .sec-diff__heading { font-size: clamp(22px, 6vw, 30px); }
      .sec-diff__head-wrap { padding-top: 0; padding-bottom: 32px; }
      .diff-heading { font-size: 18px; }
      .diff-img { height: 180px; }
      .diff-text__para { font-size: 16px; }

      /* Leadership */
      .sec-lead__heading { font-size: clamp(24px, 6vw, 32px); }
      .sec-lead__desc { font-size: 16px; }
      .sec-lead__image { height: 240px; }

      /* Principles */
      .sec-prin { padding-bottom: 100px; }
      .sec-prin__heading { font-size: clamp(24px, 6vw, 32px); }
      .sec-prin__desc { font-size: 15px; }
      .sec-prin__top { }
      .sec-prin__cards { grid-template-columns: 1fr; }
      .prin-card { height: 200px; }
      .prin-name { font-size: 22px; margin-top: -16px; }

      /* Footer */
      .site-footer { padding: 28px 20px 20px; }
      .footer-top { flex-direction: column; align-items: flex-start; gap: 16px; }
      .footer-logo img { height: 54px; }
      .footer-nav { flex-direction: row; flex-wrap: nowrap; overflow-x: auto; gap: 0; width: 100%; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
      .footer-nav::-webkit-scrollbar { display: none; }
      .footer-nav a { white-space: nowrap; font-size: 14px; padding: 6px 12px; }
      .footer-copy { font-size: 12px; }
    }
