 @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;0,800;1,600;1,700&family=DM+Sans:wght@300;400;500;600&family=DM+Mono:wght@400;500&display=swap');

/* â”€â”€â”€ DESIGN TOKENS â”€â”€â”€ */
:root {
  /* Brand */
  --navy: #0D2545;
  --navy-2: #163460;
  --navy-3: #1E4480;
  --fire: #C8411A;
  --fire-mid: #E05028;
  --fire-pale: #FEF0EB;
  --fire-border: #F8C8B8;
  --jade: #0B7A6A;
  --jade-pale: #E6F5F2;
  --jade-border: #9FD8D0;
  --gold: #A8720A;
  --gold-pale: #FDF5E0;
  --gold-border: #EDD898;
  --slate: #475E7A;

  /* Neutrals */
  --white: #FFFFFF;
  --grey-50: #F8F9FB;
  --grey-100: #F0F2F6;
  --grey-200: #E2E6EE;
  --grey-300: #C8D0DC;
  --grey-400: #9AAABB;
  --grey-500: #6B7F96;
  --grey-700: #374D66;
  --ink: #0D1F35;
  --ink-2: #1E3354;
  --ink-3: #2E4A6E;

  /* Spacing / Shape */
  --nav-h: 76px;
  --topbar-h: 40px;
  --r-xs: 4px;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 24px;
  --r-2xl: 32px;

  /* Shadows */
  --sh-xs: 0 1px 3px rgba(13, 37, 69, .06);
  --sh-sm: 0 2px 10px rgba(13, 37, 69, .08);
  --sh-md: 0 6px 28px rgba(13, 37, 69, .10);
  --sh-lg: 0 16px 56px rgba(13, 37, 69, .12);
  --sh-xl: 0 32px 80px rgba(13, 37, 69, .14);

  /* Borders */
  --bdr: 1px solid var(--grey-200);
  --bdr-mid: 1px solid var(--grey-300);

  --ease: .28s cubic-bezier(.4, 0, .2, 1);
}

/* â”€â”€â”€ RESET â”€â”€â”€ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul,
ol {
  list-style: none;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   TOP UTILITY BAR
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.topbar {
  height: var(--topbar-h);
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 56px;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 24px;
  color: white;
}

.topbar-item {
  font-size: 11.5px;
  font-weight: 500;
  color: white;
  display: flex;
  align-items: center;
  gap: 6px;
}

.topbar-item span {
  color: white;
  margin: 0 4px;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.topbar-right span {
  color: white;
}

.topbar-link {
  font-size: 11.5px;
  font-weight: 500;
  color: white;
  transition: color var(--ease);
}

.topbar-link:hover {
  color: rgba(255, 255, 255, .9);
}

.topbar-link.active {
  color: #F5A43C;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   NAVIGATION
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.site-nav {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 998;
  height: var(--nav-h);
  background: var(--white);
  border-bottom: var(--bdr);
  box-shadow: 0 2px 16px rgba(13, 37, 69, .07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 56px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

p {
  line-height: 1.5;
  letter-spacing: 1px;
}


.nav-logo-box {
  width: 48px;
  height: 48px;
  background: var(--navy);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.nav-logo-box .logo-id {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.nav-logo-box .logo-pic {
  font-family: 'DM Mono', monospace;
  font-size: 8px;
  font-weight: 500;
  color: rgba(255, 255, 255, .55);
  letter-spacing: 1.5px;
}

.nav-brand-info {
  display: flex;
  flex-direction: column;
}

.nav-brand-info .brand-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .1px;
  line-height: 1.2;
}

.nav-brand-info .brand-tagline {
  font-size: 10px;
  color: var(--grey-500);
  letter-spacing: .8px;
  text-transform: uppercase;
  font-weight: 500;
}

.nav-divider {
  width: 1px;
  height: 36px;
  background: var(--grey-200);
  margin: 0 16px;
}

.nav-partner-logo {
  font-size: 11px;
  font-weight: 600;
  color: var(--grey-500);
  letter-spacing: .5px;
  text-transform: uppercase;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 100%;
  padding: 20px;
}

.nav-item {
  position: relative;
  height: 100%;
  display: flex;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 16px;
  border-radius: var(--r-sm);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--grey-700);
  transition: color var(--ease), background var(--ease);
  cursor: pointer;
}

.nav-link:hover {
  color: var(--navy);
  background: var(--grey-50);
}

.nav-link.active {
  color: var(--fire);
  background: var(--fire-pale);
}

.nav-link svg {
  width: 12px;
  height: 12px;
  transition: transform var(--ease);
}

.nav-item:hover .nav-link svg {
  transform: rotate(180deg);
}

/* Mega-Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% - 8px);
  left: 50%;
  transform: translateX(-50%);
  width: 240px;
  background: var(--white);
  border: var(--bdr);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  padding: 8px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity var(--ease), transform var(--ease), visibility var(--ease);
}

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

.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--r-sm);
  font-size: 13px;
  font-weight: 500;
  color: var(--grey-700);
  transition: all var(--ease);
}

.nav-dropdown a:hover {
  background: var(--grey-50);
  color: var(--navy);
}

.nav-dropdown a .dd-icon {
  font-size: 15px;
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-btn-secondary {
  padding: 8px 18px;
  border-radius: var(--r-sm);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  border: 1.5px solid var(--grey-200);
  transition: all var(--ease);
}

.nav-btn-secondary:hover {
  border-color: var(--navy);
  background: var(--grey-50);
}

.nav-btn-primary {
  padding: 8px 20px;
  border-radius: var(--r-sm);
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  background: var(--fire);
  box-shadow: 0 3px 12px rgba(200, 65, 26, .25);
  transition: all var(--ease);
}

.nav-btn-primary:hover {
  background: var(--fire-mid);
  transform: translateY(-1px);
  box-shadow: 0 5px 18px rgba(200, 65, 26, .35);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-hamburger span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PAGE HERO BANNER (inner pages)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.page-hero {
  background: var(--navy);
  padding: 72px 56px 64px;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--fire);
}

.ph-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 70% 50%, rgba(255, 255, 255, .03) 0%, transparent 55%);
}

.ph-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.ph-corner-accent {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 320px;
  height: 260px;
  background: linear-gradient(135deg, transparent 50%, rgba(200, 65, 26, .08) 100%);
  pointer-events: none;
}

.ph-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.ph-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: white;
}

.ph-breadcrumb a {
  color: white;
  transition: color var(--ease);
}

.ph-breadcrumb a:hover {
  color: rgba(255, 255, 255, .7);
}

.ph-breadcrumb .sep {
  color: white;
}

.ph-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 14px;
  background: rgba(200, 65, 26, .2);
  border: 1px solid rgba(200, 65, 26, .35);
  border-radius: 100px;
  font-size: 10.5px;
  font-weight: 700;
  color: #F07540;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.ph-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #F07540;
  animation: blink 2s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .3
  }
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 18px;
}

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

.page-hero h1 .t-jade {
  color: #40D8C8;
}

.ph-lead {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: rgba(255, 255, 255, .55);
  max-width: 620px;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   IMAGE PLACEHOLDER SYSTEM
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.img-placeholder {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: var(--grey-100);
  border: 2px dashed var(--grey-300);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 240px;
  transition: border-color var(--ease), background var(--ease);
}

.img-placeholder:hover {
  border-color: var(--navy);
  background: var(--grey-50);
}

.img-placeholder .ip-icon {
  font-size: 36px;
  margin-bottom: 10px;
  opacity: .4;
}

.img-placeholder .ip-text {
  font-size: 12px;
  font-weight: 600;
  color: var(--grey-400);
  letter-spacing: .5px;
  text-align: center;
}

.img-placeholder .ip-size {
  font-size: 10.5px;
  color: var(--grey-400);
  margin-top: 4px;
  font-family: 'DM Mono', monospace;
}

/* Aspect ratio variants */
.img-16-9 {
  aspect-ratio: 16/9;
  min-height: unset;
}

.img-4-3 {
  aspect-ratio: 4/3;
  min-height: unset;
}

.img-3-2 {
  aspect-ratio: 3/2;
  min-height: unset;
}

.img-1-1 {
  aspect-ratio: 1/1;
  min-height: unset;
}

.img-portrait {
  aspect-ratio: 3/4;
  min-height: unset;
}

.img-banner {
  aspect-ratio: 21/6;
  min-height: unset;
}

.img-card {
  height: 220px;
  min-height: unset;
}

.img-hero {
  height: 480px;
  min-height: unset;
}

.img-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border-radius: 50%;
  min-height: unset;
  flex-shrink: 0;
}

.img-avatar-lg {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  min-height: unset;
  flex-shrink: 0;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SECTION LAYOUTS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.section {
  padding: 88px 56px;
}

.section-white {
  background: var(--white);
}

.section-grey {
  background: var(--grey-50);
}

.section-grey2 {
  background: var(--grey-100);
}

.section-navy {
  background: var(--navy);
}

.section-fire {
  background: var(--fire-pale);
  border-top: 1px solid var(--fire-border);
  border-bottom: 1px solid var(--fire-border);
}

.section-jade {
  background: var(--jade-pale);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.container-sm {
  max-width: 880px;
  margin: 0 auto;
}

.container-lg {
  max-width: 1440px;
  margin: 0 auto;
}

/* Section top label line */
.section-top-rule {
  height: 4px;
  background: var(--navy);
  width: 56px;
  border-radius: 2px;
  margin-bottom: 56px;
}

.section-top-rule.fire {
  background: var(--fire);
}

.section-top-rule.jade {
  background: var(--jade);
}

.section-top-rule.gold {
  background: var(--gold);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   TYPOGRAPHY
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.eyebrow {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--fire);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}

.eyebrow::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--fire);
  flex-shrink: 0;
}

.eyebrow.jade {
  color: var(--jade);
}

.eyebrow.jade::before {
  background: var(--jade);
}

.eyebrow.navy {
  color: var(--navy);
}

.eyebrow.navy::before {
  background: var(--navy);
}

.eyebrow.white {
  color: rgba(255, 255, 255, .6);
  color: var(--inl);
}

.eyebrow.white::before {
  background: var(--ink);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 700;
  line-height: 1.12;
  color: var(--ink);
  margin-bottom: 16px;
}

.section-title em {
  font-style: italic;
  color: var(--fire);
}

.section-title .jade {
  color: var(--jade);
}

.section-title.white {
  color: var(--white);
}

.section-title.white em {
  color: #F07540;
}

.body-text {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.85;
  color: var(--grey-500);
}

.body-text.dark {
  color: var(--grey-700);
}

.body-text.white {
  color: rgba(255, 255, 255, .58);
}

.section-header {
  margin-bottom: 52px;
}

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

.section-header.center .eyebrow {
  justify-content: center;
}

.section-header.center .body-text {
  max-width: 580px;
  margin: 0 auto;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CARDS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.card {
  background: var(--white);
  border: var(--bdr);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-xs);
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}

.card:hover {
  border-color: var(--grey-300);
  box-shadow: var(--sh-md);
  transform: translateY(-3px);
}

.card-img {
  width: 100%;
  overflow: hidden;
}

.card-body {
  padding: 28px;
}

.card-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 9px;
  line-height: 1.3;
  font-family: 'Playfair Display', serif;
}

.card-body p {
  font-size: 13.5px;
  color: var(--grey-500);
  line-height: 1.75;
}

/* Icon card */
.icon-card {
  padding: 32px;
}

.ic-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.ic-fire {
  background: var(--fire-pale);
  border: 1px solid var(--fire-border);
}

.ic-jade {
  background: var(--jade-pale);
  border: 1px solid var(--jade-border);
}

.ic-gold {
  background: var(--gold-pale);
  border: 1px solid var(--gold-border);
}

.ic-navy {
  background: var(--navy);
  border: 1px solid var(--navy-2);
}

.ic-grey {
  background: var(--grey-100);
  border: 1px solid var(--grey-200);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PERSON / MANAGEMENT CARDS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.person-card {
  background: var(--white);
  border: var(--bdr);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: all var(--ease);
  text-align: center;
}

.person-card:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-4px);
  border-color: var(--grey-300);
}

.person-card .pc-photo {
  width: 100%;
  background: var(--grey-100);
  position: relative;
}

.person-card .pc-photo .img-placeholder {
  border-radius: 0;
  border: none;
  height: 200px;
  background: linear-gradient(160deg, var(--grey-100) 0%, var(--grey-200) 100%);
}

.person-card .pc-body {
  padding: 22px 20px 24px;
}

.person-card .pc-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 5px;
  line-height: 1.2;
}

.person-card .pc-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--fire);
  letter-spacing: .4px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.person-card .pc-org {
  font-size: 12.5px;
  color: var(--grey-500);
  margin-bottom: 14px;
  line-height: 1.4;
}

.person-card .pc-bio {
  font-size: 12.5px;
  color: var(--grey-500);
  line-height: 1.65;
  display: none;
}

.person-card:hover .pc-bio {
  display: block;
}

/* Chairman special card */
.chairman-card {
  background: var(--white);
  border: var(--bdr);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-md);
  display: grid;
  grid-template-columns: 280px 1fr;
}

.cc-photo-col {
  background: var(--navy);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.cc-photo-col .img-avatar-lg {
  border: 3px solid rgba(255, 255, 255, .15);
}

.cc-name-dark {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  line-height: 1.2;
}

.cc-title-dark {
  font-size: 11.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, .45);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cc-body {
  padding: 40px;
}

.cc-meta-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 14px;
  background: var(--gold-pale);
  border: 1px solid var(--gold-border);
  border-radius: 100px;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.cc-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.cc-body .cc-role-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--fire);
  margin-bottom: 20px;
}

.cc-body p {
  font-size: 14.5px;
  color: var(--grey-500);
  line-height: 1.85;
  margin-bottom: 14px;
}

.cc-body .cc-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.cc-cred {
  padding: 5px 13px;
  background: var(--grey-50);
  border: var(--bdr);
  border-radius: 100px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--grey-700);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   STAKEHOLDER / MEMBER TILES
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.stakeholder-tile {
  background: var(--white);
  border: var(--bdr);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--sh-xs);
  transition: all var(--ease);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.stakeholder-tile:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-4px);
  border-color: var(--grey-300);
}

.stakeholder-logo {
  width: 72px;
  height: 72px;
  border-radius: var(--r-md);
  background: var(--grey-100);
  border: var(--bdr);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  overflow: hidden;
}

.stakeholder-logo .img-placeholder {
  border-radius: var(--r-md);
  border: none;
  width: 72px;
  height: 72px;
  min-height: unset;
}

.stakeholder-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  text-align: center;
  line-height: 1.3;
}

.stakeholder-type {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--grey-400);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   STAT BOXES
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.stats-row {
  display: grid;
  gap: 0;
}

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

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

.stat-box {
  padding: 40px 32px;
  background: var(--white);
  border: var(--bdr);
  text-align: center;
  transition: background var(--ease);
}

.stat-box:first-child {
  border-radius: var(--r-lg) 0 0 var(--r-lg);
}

.stat-box:last-child {
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
}

.stat-box:not(:first-child) {
  border-left: none;
}

.stat-box:hover {
  background: var(--grey-50);
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-num span {
  font-size: 60px;
  color: var(--fire);
  font-family: arial;
}

.stat-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--grey-500);
  letter-spacing: .5px;
  line-height: 1.45;
  text-transform: uppercase;
}

.stat-sub {
  font-size: 11px;
  color: var(--grey-400);
  margin-top: 5px;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   TIMELINE
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.timeline {
  position: relative;
  padding-left: 36px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 8px;
  bottom: 0;
  width: 2px;
  background: var(--grey-200);
}

.tl-item {
  position: relative;
  margin-bottom: 40px;
}

.tl-item:last-child {
  margin-bottom: 0;
}

.tl-dot {
  position: absolute;
  left: -36px;
  top: 6px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--grey-300);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--ease);
}

.tl-dot.active {
  background: var(--navy);
  border-color: var(--navy);
}

.tl-dot.fire {
  background: var(--fire);
  border-color: var(--fire);
}

.tl-dot.jade {
  background: var(--jade);
  border-color: var(--jade);
}

.tl-dot::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--white);
}

.tl-dot.active::after {
  background: var(--white);
}

.tl-date {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  color: var(--grey-400);
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.tl-item h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 7px;
}

.tl-item p {
  font-size: 13.5px;
  color: var(--grey-500);
  line-height: 1.7;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   DATA / COMPARISON TABLE
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.data-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: var(--bdr);
  box-shadow: var(--sh-xs);
}

.data-table thead th {
  padding: 16px 22px;
  background: var(--navy);
  color: rgba(255, 255, 255, .75);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: left;
}

.data-table thead th:first-child {
  color: rgba(255, 255, 255, .45);
}

.data-table tbody td {
  padding: 18px 22px;
  border-bottom: var(--bdr);
  font-size: 13.5px;
  vertical-align: top;
}

.data-table tbody tr:last-child td {
  border-bottom: none;
}

.data-table tbody td:first-child {
  font-weight: 600;
  color: var(--ink);
  background: var(--grey-50);
}

.data-table tbody td:nth-child(2) {
  color: var(--grey-500);
}

.data-table tbody td:nth-child(3) {
  color: var(--ink);
}

.data-table tbody tr:hover td {
  background: var(--grey-50);
}

.data-table tbody tr:hover td:first-child {
  background: var(--grey-100);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   TAGS / CHIPS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
}

.chip-navy {
  background: var(--navy);
  color: var(--white);
}

.chip-fire {
  background: var(--fire-pale);
  border: 1px solid var(--fire-border);
  color: var(--fire);
}

.chip-jade {
  background: var(--jade-pale);
  border: 1px solid var(--jade-border);
  color: var(--jade);
}

.chip-gold {
  background: var(--gold-pale);
  border: 1px solid var(--gold-border);
  color: var(--gold);
}

.chip-grey {
  background: var(--grey-100);
  border: var(--bdr);
  color: var(--grey-700);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   BUTTONS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--ease);
  text-decoration: none;
  letter-spacing: .1px;
}

.btn-primary {
  background: var(--fire);
  color: #fff;
  box-shadow: 0 4px 16px rgba(200, 65, 26, .25);
}

.btn-primary:hover {
  background: #b33817;
  transform: translateY(-2px);
  box-shadow: 0 7px 22px rgba(200, 65, 26, .35);
}

.btn-navy {
  background: var(--navy);
  color: #fff;
}

.btn-navy:hover {
  background: var(--navy-2);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--grey-300);
}

.btn-outline:hover {
  border-color: var(--navy);
  background: var(--grey-50);
}

.btn-outline-white {
  background: transparent;
  color: var(--ink);
  border: 0.5px solid var(--ink);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .6);
}

.btn-sm {
  padding: 9px 20px;
  font-size: 13px;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 15px;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   DIVIDERS / ACCENTS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.section-divider {
  height: 1px;
  background: var(--grey-200);
}

.section-rule {
  height: 4px;
  width: 56px;
  border-radius: 2px;
  background: var(--fire);
  margin-bottom: 36px;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   TICKER (Partner Scroll)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.ticker-section {
  background: var(--grey-50);
  padding: 36px 0;
  border-top: var(--bdr);
  border-bottom: var(--bdr);
  overflow: hidden;
}

.ticker-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: ticker-scroll 30s linear infinite;
}

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

@keyframes ticker-scroll {
  to {
    transform: translateX(-50%);
  }
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: var(--white);
  border: var(--bdr);
  border-radius: var(--r-md);
  white-space: nowrap;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--grey-700);
  box-shadow: var(--sh-xs);
  transition: color var(--ease), border-color var(--ease);
}

.ticker-item:hover {
  color: var(--navy);
  border-color: var(--grey-300);
}

.ticker-item .ticker-logo {
  width: 22px;
  height: 22px;
  border-radius: 4px;
  background: var(--grey-100);
  border: var(--bdr);
  overflow: hidden;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FEATURE LIST
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.feature-row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 0;
  border-bottom: var(--bdr);
  transition: background var(--ease);
}

.feature-row:last-child {
  border-bottom: none;
}

.feature-row:hover {
  padding-left: 4px;
}

.fr-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.fr-num {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  color: var(--fire);
  margin-bottom: 4px;
  letter-spacing: 1px;
}

.fr-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}

.fr-desc {
  font-size: 13px;
  color: var(--grey-500);
  line-height: 1.65;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CONTACT FORM
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.form-wrap {
  background: var(--white);
  border: var(--bdr);
  border-radius: var(--r-xl);
  padding: 48px;
  box-shadow: var(--sh-sm);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group.full {
  grid-column: span 2;
}

.form-label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--grey-500);
}

.form-input,
.form-select,
.form-textarea {
  padding: 12px 16px;
  border-radius: var(--r-sm);
  background: var(--grey-50);
  border: 1.5px solid var(--grey-200);
  font-size: 14px;
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  transition: border-color var(--ease), background var(--ease);
  outline: none;
  width: 100%;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(13, 37, 69, .07);
}

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

.form-select option {
  background: var(--white);
  color: var(--ink);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FOOTER
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.site-footer {
  background: var(--navy);
}

.footer-main {
  padding: 72px 56px 48px;
  display: grid;
  grid-template-columns: 2.4fr 1fr 1fr;
  gap: 64px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  color: white;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.footer-logo .logo-box {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, .1);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.footer-logo .logo-box .l-id {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.footer-logo .logo-box .l-pic {
  font-size: 7.5px;
  font-family: 'DM Mono', monospace;
  color: rgba(255, 255, 255, .45);
  letter-spacing: 1.5px;
}

.footer-logo .logo-name strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}

.footer-logo .logo-name span {
  font-size: 10px;
  color: rgba(255, 255, 255, .35);
  letter-spacing: .8px;
  text-transform: uppercase;
}

.footer-desc {
  font-size: 13px;
  color: inherit;
  line-height: 1.8;
  max-width: 300px;
  margin-bottom: 24px;
}

.footer-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.ftb {
  padding: 4px 10px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--r-xs);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: inherit;
}

.footer-col-heading {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: white;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: white;
}

.footer-links a {
  font-size: 13px;
  color: inherit;
  transition: color var(--ease);
}

.footer-links a:hover {
  color: rgba(255, 255, 255, .85);
}

.footer-contact-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  color: white;
}

.fcl-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: white;
  margin-bottom: 3px;
}

.fcl-value {
  font-size: 13px;
  color: white;
  line-height: 1.5;
}

.fcl-icon {
  font-size: 16px;
  margin-top: 2px;
}

.footer-bottom {
  padding: 22px 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11.5px;
  color: white;
}

.footer-bottom a {
  color: white;
  transition: color var(--ease);
}

.footer-bottom a:hover {
  color: rgba(255, 255, 255, .7);
}

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

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   REVEAL ANIMATIONS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: .65s ease;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: .65s ease;
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: .65s ease;
}

.reveal.in,
.reveal-left.in,
.reveal-right.in {
  opacity: 1;
  transform: none;
  /* height: 100%; */
}

[data-delay="1"] {
  transition-delay: .1s;
}

[data-delay="2"] {
  transition-delay: .2s;
}

[data-delay="3"] {
  transition-delay: .3s;
}

[data-delay="4"] {
  transition-delay: .4s;
}

[data-delay="5"] {
  transition-delay: .5s;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   GRID UTILITIES
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

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

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.two-col-aside {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 64px;
  align-items: start;
}

.two-col-equal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESPONSIVE
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width: 1140px) {
  .site-nav {
    padding: 0 32px;
  }

  .section {
    padding: 64px 32px;
  }

  .page-hero {
    padding: 56px 32px 52px;
  }

  .topbar {
    padding: 0 32px;
  }

  .footer-main {
    padding: 56px 32px 40px;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-bottom {
    padding: 20px 32px;
  }

  .two-col-aside {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .two-col-equal {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

  .chairman-card {
    grid-template-columns: 1fr;
  }

  .cc-photo-col {
    flex-direction: row;
    justify-content: flex-start;
    padding: 28px 32px;
  }
}

@media (max-width: 768px) {
  .topbar {
    display: none;
  }

  .site-nav {
    padding: 0 20px;
  }

  .nav-menu {
    display: none;
  }

  .nav-right {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .section {
    padding: 52px 20px;
  }

  .page-hero {
    padding: 44px 20px 44px;
  }

  .footer-main {
    padding: 44px 20px 32px;
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    padding: 18px 20px;
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .grid-5 {
    grid-template-columns: 1fr;
  }

  .stats-row.cols-4,
  .stats-row.cols-3 {
    grid-template-columns: 1fr 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-group.full {
    grid-column: span 1;
  }

  .stat-box:first-child {
    border-radius: var(--r-lg) var(--r-lg) 0 0;
  }

  .stat-box:last-child {
    border-radius: 0 0 var(--r-lg) var(--r-lg);
  }

  .stat-box:not(:first-child) {
    border-left: var(--bdr);
    border-top: none;
  }
}



.nav-brand img {
  width: 300px;
  height: 60px;
}

.nav-brand {
  padding: 10px;
}

.ld-body p {
  display: none;
}


.page-hero-content p {
  color: white;
}

.breadcrumb {
  color: white;
  display: flex;
  gap: 10px;
}

html {
  overflow-x: hidden;
}

.site-nav {
  transition: all 0.3s ease;
}

.site-nav.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  animation: slideDown 0.3s ease forwards;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}


.resMenu {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 76px;
  left: 0px;
  right: 0px;
  background: rgb(255, 255, 255);
  padding: 16px 20px;
  border-bottom: 1px solid rgb(226, 230, 238);
  box-shadow: rgba(13, 37, 69, 0.12) 0px 8px 32px;
}


@media (max-width: 768px) {

  .stats-row.cols-4,
  .stats-row.cols-3 {
    grid-template-columns: 1fr;
  }

  .home_page_banner {
    display: none;
  }

  .nav-item {
    display: block;
    width: 100%;
    padding: 0px 0;
  }

  .scroll-hint {
    position: absolute;
    bottom: 50px;
    right: 0;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    animation: fade-up 1s .6s ease both;
    z-index: 10000;
  }


  .nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 10px;
    border-radius: var(--r-sm);
    font-size: 13.5px;
    font-weight: 500;
    color: var(--grey-700);
    transition: color var(--ease), background var(--ease);
    cursor: pointer;
    height: inherit;
  }

  .nav-brand img {
    width: 200px;
    height: 60px;
  }
}


.resMenu {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 75px;
  left: 0px;
  right: 0px;
  background: rgb(255, 255, 255);
  padding: 16px 20px;
  border-bottom: 1px solid rgb(226, 230, 238);
  box-shadow: rgba(13, 37, 69, 0.12) 0px 8px 32px;
}


@media(max-width:768px) {
  .hh-inner {
    padding: 72px 20px 56px;
  }

  .cta-banner {
    padding: 52px 20px;
  }

  .nav-menu {
    height: max-content;
  }
}


.notif-item  {
    flex-wrap:wrap;
}
.notif-action {
display:block!important;
}
@media (max-width: 600px) {
    .notif-action { 
        display: block;
        width: 100%!important;
    }
}