:root{
  --bg:#FAFAF8;
  --panel:#F5F4F2;
  --ink:#0F0F0F;
  --muted:#6B6B68;
  --line:#E8E7E5;
  --white:#FFFFFF;
  --orange:#FF5722;
  --orange-light:#FF7043;
  --orange-dark:#E64A19;
  --accent:#1A1A18;
  --ink-text:#0F0F0F;
  --grad: linear-gradient(135deg, var(--orange), var(--orange-light));
}
:root[data-theme="dark"]{
  --bg:#101010;
  --panel:#1A1A1A;
  --muted:#9B9B96;
  --line:#2A2A2A;
  --white:#1B1B1B;
  --ink-text:#F5F4F2;
}
*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  background:var(--bg);
  color:var(--ink-text);
  font-family:'Manrope', sans-serif;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  transition:background .3s ease, color .3s ease;
}
h1,h2,h3,.display{
  font-family:'Sora', sans-serif;
  font-weight:700;
  letter-spacing:-.02em;
  line-height:1.08;
}
a{color:inherit; text-decoration:none;}
ul{list-style:none;}
img{max-width:100%; display:block;}
.wrap{max-width:1200px; margin:0 auto; padding:0 32px;}
::selection{background:var(--orange); color:#fff;}

.grad-text{
  background:var(--grad);
  -webkit-background-clip:text; background-clip:text; color:transparent;
}

.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-size:13px; font-weight:700; letter-spacing:.3px;
  color:var(--orange);
  background:rgba(255,87,34,0.08);
  padding:7px 16px; border-radius:999px;
  margin-bottom:22px;
}
.eyebrow .dot{width:6px; height:6px; border-radius:50%; background:var(--orange);}

.btn{
  display:inline-flex; align-items:center; gap:10px;
  background:var(--ink); color:#fff;
  font-size:15px; font-weight:600;
  padding:15px 28px; border-radius:999px;
  border:1px solid var(--ink);
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn:hover{transform:translateY(-2px); box-shadow:0 12px 24px -8px rgba(255,87,34,0.35);}
.btn.grad{background:var(--orange); border:none; color:#fff;}
.btn.outline{background:transparent; color:var(--ink-text); border:1px solid var(--line);}
.btn.outline:hover{background:var(--white); border-color:var(--ink-text); box-shadow:none;}
.btn.on-dark{background:#fff; color:#0F0F0F;}
.btn.on-dark:hover{background:rgba(255,255,255,0.9);}

.blob{position:absolute; border-radius:50%; filter:blur(70px); z-index:0; opacity:.55;}

/* ===== Nav ===== */
.nav-outer{position:sticky; top:16px; z-index:100; padding:0 20px;}
header{
  max-width:1200px; margin:0 auto;
  background:rgba(255,255,255,0.7);
  backdrop-filter:blur(14px);
  border:1px solid rgba(255,255,255,0.6);
  border-radius:999px;
  box-shadow:0 8px 30px -12px rgba(18,20,26,0.15);
  transition:box-shadow .3s ease, background .3s ease, border-color .3s ease;
}
:root[data-theme="dark"] header{background:rgba(20,20,20,0.7); border-color:rgba(255,255,255,0.08);}
header .inner{display:flex; align-items:center; justify-content:space-between; padding:12px 12px 12px 22px;}
.brand{display:flex; align-items:center; gap:10px; font-family:'Sora',sans-serif; font-size:20px; font-weight:800; letter-spacing:-.01em; transition:opacity .2s ease;}
.brand:hover{opacity:.8;}
.brand .mark{width:24px; height:34px; flex:none;}
.brand .mark img{width:100%; height:100%; object-fit:contain; display:block;}
nav.primary{display:flex; gap:8px; font-size:14.5px; font-weight:600;}
nav.primary a{padding:9px 16px; border-radius:999px; color:var(--muted); transition:background .2s ease, color .2s ease;}
nav.primary a:hover{background:var(--panel); color:var(--ink-text);}
header .btn{padding:11px 22px; font-size:14px;}
.menu-toggle{display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:10px; flex:none;}
.menu-toggle span{width:20px; height:2px; border-radius:2px; background:var(--ink-text); transition:transform .25s ease, opacity .25s ease;}
.menu-toggle.open span:nth-child(1){transform:translateY(7px) rotate(45deg);}
.menu-toggle.open span:nth-child(2){opacity:0;}
.menu-toggle.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}

.nav-outer{z-index:250;}
.mobile-menu-backdrop{
  position:fixed; inset:0; z-index:150;
  background:rgba(10,10,10,0.55);
  opacity:0; visibility:hidden;
  transition:opacity .3s ease, visibility 0s linear .3s;
}
.mobile-menu.open .mobile-menu-backdrop{opacity:1; visibility:visible; transition:opacity .3s ease, visibility 0s linear 0s;}
.mobile-menu-panel{
  position:fixed; top:0; left:0; bottom:0; z-index:160;
  width:min(380px, 82vw);
  height:100vh; height:100dvh;
  background:var(--bg);
  border-right:1px solid var(--line);
  box-shadow:30px 0 60px -20px rgba(0,0,0,0.35);
  padding:100px 26px 32px;
  display:flex; flex-direction:column; overflow-y:auto;
  transform:translateX(-100%);
  transition:transform .35s cubic-bezier(.4,0,.2,1);
}
.mobile-menu.open .mobile-menu-panel{transform:translateX(0);}
.mm-close{
  position:absolute; top:20px; right:20px;
  width:42px; height:42px; border-radius:50%;
  background:var(--panel); border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center; cursor:pointer;
}
.mm-close svg{width:18px; height:18px; stroke:var(--ink-text); fill:none; stroke-width:2; stroke-linecap:round; stroke-linejoin:round;}
.mm-links{display:flex; flex-direction:column; gap:2px;}
.mm-links a{padding:15px 10px; border-radius:14px; font-size:19px; font-weight:700; font-family:'Sora',sans-serif; color:var(--ink-text); transition:background .2s ease, color .2s ease;}
.mm-links a:hover{background:var(--panel);}
.mm-links a.active{color:var(--orange);}
.mm-divider{height:1px; background:var(--line); margin:18px 4px;}
.mm-cta{justify-content:center; width:100%; text-align:center;}
.mm-contact{display:flex; align-items:center; gap:10px; padding:12px 10px; font-size:14.5px; color:var(--muted); font-weight:600;}
.mm-contact svg{width:18px; height:18px; stroke:var(--orange); fill:none; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; flex:none;}
@media (min-width:981px){ .mobile-menu-panel, .mobile-menu-backdrop{display:none !important;} }

.theme-toggle{
  width:40px; height:40px; border-radius:50%; flex:none;
  background:var(--panel); border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center; cursor:pointer;
  transition:background .2s ease, border-color .2s ease;
}
.theme-toggle:hover{background:var(--white);}
.theme-toggle svg{width:18px; height:18px; stroke:var(--ink-text); fill:none; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round;}
.theme-toggle .icon-moon{display:none;}
:root[data-theme="dark"] .theme-toggle .icon-sun{display:none;}
:root[data-theme="dark"] .theme-toggle .icon-moon{display:block;}

/* ===== Section shell ===== */
section{padding:110px 0;}
.section-head{max-width:640px; margin-bottom:56px;}
.section-head h2{font-size:clamp(30px,3.6vw,44px);}
.section-head p{margin-top:16px; color:var(--muted); font-size:16px;}
.section-head.center{margin-left:auto; margin-right:auto; text-align:center;}

/* ===== Page hero (internal pages) ===== */
.page-hero{position:relative; padding:110px 0 70px; overflow:hidden;}
.page-hero .blob.b1{width:480px; height:480px; background:var(--orange-light); top:-220px; left:-160px;}
.page-hero .blob.b2{width:380px; height:380px; background:var(--orange); top:20px; right:-160px; opacity:.3;}
.page-hero .wrap{position:relative; z-index:1; max-width:760px;}
.page-hero h1{font-size:clamp(34px,4.4vw,54px);}
.page-hero p.sub{margin-top:22px; color:var(--muted); font-size:17px; max-width:620px;}
.page-hero-img{position:relative; z-index:1; margin-top:48px; border-radius:28px; overflow:hidden; box-shadow:0 30px 60px -30px rgba(18,20,26,0.3);}
.page-hero-img img{width:100%; height:380px; object-fit:cover; display:block;}

/* ===== Content blocks ===== */
.content-block{display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center;}
.content-block.rev .cb-media{order:2;}
.content-block + .content-block{margin-top:100px;}
.cb-media{border-radius:24px; overflow:hidden; box-shadow:0 24px 50px -24px rgba(18,20,26,0.25);}
.cb-media img{width:100%; height:340px; object-fit:cover; display:block;}
.cb-text h3{font-size:clamp(24px,2.8vw,32px); margin-bottom:16px;}
.cb-text p{color:var(--muted); font-size:15.5px; margin-bottom:14px;}
.cb-text p:last-child{margin-bottom:0;}

/* ===== Info / pillar cards ===== */
.info-grid{display:grid; grid-template-columns:repeat(2,1fr); gap:18px;}
.info-card{
  background:var(--white); border:1px solid var(--line); border-radius:22px; padding:30px;
  transition:transform .3s ease, box-shadow .3s ease;
}
.info-card:hover{transform:translateY(-4px); box-shadow:0 20px 40px -22px rgba(18,20,26,0.2);}
.info-card .ic{width:44px; height:44px; border-radius:12px; background:rgba(255,87,34,0.1); display:flex; align-items:center; justify-content:center; margin-bottom:18px;}
.info-card .ic svg{width:22px; height:22px; stroke:var(--orange); fill:none; stroke-width:1.8;}
.info-card h4{font-size:18px; margin-bottom:10px; font-family:'Sora',sans-serif; font-weight:700;}
.info-card p{color:var(--muted); font-size:14.5px;}

/* ===== Leadership ===== */
.leader-grid{display:grid; grid-template-columns:300px 1fr; gap:56px; align-items:start;}
.leader-card{position:sticky; top:120px;}
.leader-photo{border-radius:20px; overflow:hidden; box-shadow:0 24px 50px -24px rgba(18,20,26,0.28); margin-bottom:20px;}
.leader-photo img{width:100%; height:340px; object-fit:cover; display:block;}
.leader-card h3{font-size:20px; margin-bottom:6px;}
.leader-card .role{color:var(--orange); font-size:14px; font-weight:700; margin-bottom:16px;}
.leader-card .meta{border-top:1px solid var(--line); padding-top:16px; display:flex; flex-direction:column; gap:8px;}
.leader-card .meta span{font-size:13.5px; color:var(--muted);}
.leader-card .meta a{color:var(--ink-text); font-weight:600;}
.leader-bio p{color:var(--muted); font-size:15.5px; margin-bottom:18px;}
.leader-bio p strong{color:var(--ink-text);}
.leader-bio h3{font-size:22px; margin-top:36px; margin-bottom:20px;}
.leader-focus{display:flex; flex-direction:column; gap:18px;}
.leader-focus p{margin-bottom:0;}
.leader-focus strong{color:var(--ink-text);}
@media (max-width:860px){
  .leader-grid{grid-template-columns:1fr;}
  .leader-card{position:static;}
  .leader-photo img{height:300px;}
}

/* ===== Legal / prose pages ===== */
.prose{max-width:760px;}
.prose h2{font-size:clamp(26px,3vw,32px); margin-top:48px; margin-bottom:16px;}
.prose h2:first-child{margin-top:0;}
.prose p{color:var(--muted); font-size:15.5px; margin-bottom:16px;}
.prose ul{list-style:disc; padding-left:22px; margin-bottom:16px;}
.prose ul li{color:var(--muted); font-size:15.5px; margin-bottom:8px;}
.prose .updated{color:var(--muted); font-size:13.5px; margin-bottom:40px; display:block;}

/* ===== CTA ===== */
.cta-island{
  position:relative; overflow:hidden; border-radius:36px;
  background:var(--ink); color:#fff; padding:90px 60px; text-align:center;
}
.cta-island .blob{opacity:.5;}
.cta-island .blob.c1{width:400px; height:400px; background:var(--orange-light); top:-160px; left:-100px;}
.cta-island .blob.c2{width:340px; height:340px; background:var(--orange); bottom:-160px; right:-80px;}
.cta-island .content{position:relative; z-index:1; max-width:680px; margin:0 auto;}
.cta-island h2{font-size:clamp(28px,4vw,44px); margin-bottom:20px;}
.cta-island p{color:#B7BAC2; margin-bottom:32px; font-size:16px;}

/* ===== Footer ===== */
footer{padding:100px 0 30px;}
.foot-grid{display:grid; grid-template-columns:1.4fr repeat(4,1fr); gap:40px; padding-bottom:56px; border-bottom:1px solid var(--line);}
.foot-brand p{color:var(--muted); font-size:13.5px; max-width:280px; margin-top:16px;}
.foot-col h5{font-size:13px; font-weight:700; margin-bottom:20px;}
.foot-col ul li{margin-bottom:12px;}
.foot-col ul li a{color:var(--muted); font-size:14px;}
.foot-col ul li a:hover{color:var(--ink-text);}
.foot-bottom{padding-top:24px; display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px; font-size:13px; color:var(--muted);}
.foot-bottom a{color:var(--muted);}
.foot-bottom a:hover{color:var(--ink-text);}

.reveal{opacity:0; transform:translateY(22px); transition:opacity .7s ease, transform .7s ease;}
.reveal.in{opacity:1; transform:translateY(0);}

/* ===== WhatsApp floating button ===== */
.wa-float{
  position:fixed; right:24px; bottom:24px; z-index:200;
  width:58px; height:58px; border-radius:50%;
  background:#25D366; display:flex; align-items:center; justify-content:center;
  box-shadow:0 10px 28px -8px rgba(37,211,102,0.55);
  transition:transform .25s ease, box-shadow .25s ease;
}
.wa-float:hover{transform:translateY(-3px) scale(1.05); box-shadow:0 16px 34px -8px rgba(37,211,102,0.65);}
.wa-float svg{width:30px; height:30px; fill:#fff;}
.wa-float .ping{
  position:absolute; inset:0; border-radius:50%; background:#25D366;
  animation:wa-ping 2.4s ease-out infinite; z-index:-1;
}
@keyframes wa-ping{
  0%{transform:scale(1); opacity:.55;}
  100%{transform:scale(1.8); opacity:0;}
}
@media (prefers-reduced-motion: reduce){
  .wa-float .ping{animation:none;}
  html{scroll-behavior:auto;}
}

@media (max-width:980px){
  nav.primary{display:none;}
  .menu-toggle{display:flex;}
  .foot-grid{grid-template-columns:1fr 1fr;}
  .cta-island{padding:60px 30px;}
  .content-block{grid-template-columns:1fr;}
  .content-block.rev .cb-media{order:0;}
  .info-grid{grid-template-columns:1fr;}
}
@media (max-width:600px){
  .foot-grid{grid-template-columns:1fr;}
  section{padding:80px 0;}
  .page-hero{padding:90px 0 50px;}
  .page-hero-img img{height:240px;}
  .cb-media img{height:240px;}
  .wa-float{right:16px; bottom:16px; width:52px; height:52px;}
  .wa-float svg{width:26px; height:26px;}
}
/* Leadership Bio Section Titles & Spacing */
.bio-section-title {
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-top: 36px;       /* Spacing above each section */
  margin-bottom: 16px;    /* Spacing below section title */
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(255, 87, 34, 0.2); /* Subtle orange accent border */
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Add vertical spacing between bio lists and paragraphs */
.bio-list {
  margin-bottom: 28px;    /* Spacing after each section list */
  padding-left: 20px;
}

.bio-list li {
  margin-bottom: 10px;    /* Spacing between list items */
  line-height: 1.6;
}

