:root {
  --navy: #16233a;
  --navy-2: #1f3350;
  --navy-3: #24405f;
  --orange: #e8792e;
  --orange-dark: #c9631f;
  --blue: #2e86c1;
  --cream: #f6f1e7;
  --cream-2: #efe8d8;
  --ink: #1c2430;
  --gray: #5a6472;
  --white: #ffffff;
  --radius: 10px;
  --shadow: 0 6px 24px rgba(22, 35, 58, 0.08);
  --maxw: 1140px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

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

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

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  text-align: justify;
}


h1, h2, h3, h4 { line-height: 1.2; margin: 0 0 16px; font-weight: 700; }
h1 { font-size: clamp(1.9rem, 4.5vw, 2.75rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2rem); letter-spacing: -0.01em; }
h3 { font-size: 1.25rem; }
p { margin: 0 0 16px; color: var(--gray); }

@media (max-width: 600px) {
  .section { padding: 56px 0; }
  .section-tight { padding: 40px 0; }
}

.eyebrow {
  display: inline-block;
  color: var(--orange);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section { padding: 88px 0; }
.section-tight { padding: 56px 0; }
.section-cream { background: var(--cream); }
.section-navy { background: var(--navy); color: var(--white); }
.section-navy p { color: #b9c3d4; }
.section-navy h2, .section-navy h3 { color: var(--white); }

.center { text-align: center; }
.narrow { max-width: auto; align-items: center; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-dark); }
.btn-outline { border-color: rgba(255,255,255,0.5); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,0.1); }
.btn-outline-navy { border-color: var(--navy); color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }
.btn-group { display: flex; gap: 14px; flex-wrap: wrap; }

/* Header / Nav */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid rgba(22,35,58,0.08);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { width: 34px; height: 34px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-text b { font-size: 1.15rem; letter-spacing: 0.01em; color: var(--navy); }
.brand-text span { font-size: 0.62rem; letter-spacing: 0.28em; color: var(--orange); font-weight: 700; }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links > a:not(.btn) {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--navy);
    padding: 6px 0;
    border-bottom: 2px solid transparent;
}

.nav-links > a:not(.btn):hover,
.nav-links > a.active:not(.btn) {
    border-color: var(--orange);
}
.nav-links a:hover, .nav-links a.active { border-color: var(--orange); }
.nav-cta {
    margin-left: 8px;
    margin-bottom: 8px;
}

.nav-toggle { display: none; background: none; border: none; font-size: 1.6rem; cursor: pointer; color: var(--navy); }

@media (max-width: 800px) {
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px 24px;
    display: none;
    box-shadow: var(--shadow);
    gap: 16px;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
}

/* Hero */
.hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 55%, var(--navy-3) 100%);
  color: var(--white);
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  right: -120px; top: -120px;
  width: 480px; height: 480px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
}
.hero-inner { position: relative; z-index: 1; max-width: 720px; }
.hero p.lead { color: #c7d0de; font-size: 1.15rem; max-width: 620px; }
.hero .eyebrow { color: var(--orange); }

/* Hero v2 (logo + headline + person photo) */
.hero-v2 {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 55%, var(--navy-3) 100%);
  padding: 72px 0;
  overflow: hidden;
}
.hero-v2-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.hero-logo { height: 42px; width: auto; margin-bottom: 28px; }
.hero-v2-text h1 { color: var(--white); margin-bottom: 12px; text-align: left; }
.hero-v2-text .hero-sub {
  color: var(--orange);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 28px;
}
.hero-v2-image img {
  width: 100%;
  display: block;
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  object-fit: cover;
  max-height: 460px;
}
@media (max-width: 900px) {
  .hero-v2-inner { grid-template-columns: 1fr; }
  .hero-v2-image { order: -1; }
  .hero-v2-image img { max-height: 320px; }
}

.page-hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--white);
  padding: 72px 0 56px;
}
.page-hero p { color: #c7d0de; max-width: max-content }

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.stat-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 24px 18px;
  text-align: center;
}
.stat-card .num { font-size: 1.9rem; font-weight: 800; color: var(--orange); }
.stat-card .label { font-size: 0.82rem; color: #c7d0de; margin-top: 6px; }

@media (max-width: 800px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Cards / grids */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border: 1px solid rgba(22,35,58,0.08);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.card h3 { color: var(--navy); }
.card .tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(232,121,46,0.1);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.card.coming-soon { opacity: 0.7; }

.icon-badge {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(46,134,193,0.1);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

/* Two column layout */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }

/* Principles */
.principle {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(22,35,58,0.08);
}
.principle:last-child { border-bottom: none; }
.principle .num {
  flex: 0 0 auto;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}
.principle h4 { margin: 0 0 4px; color: var(--navy); font-size: 1.02rem; }
.principle p { margin: 0; font-size: 0.94rem; }

/* Team */
.team-card { text-align: left; }
.team-card .avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 14px;
}
.team-card .role { color: var(--orange); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.04em; margin-bottom: 10px; }
.team-card ul { margin: 0; padding-left: 18px; color: var(--gray); font-size: 0.9rem; }
.team-card li { margin-bottom: 4px; }
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    white-space: nowrap;
}
/* Badges strip */
.badge-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 8px;
}
.badge {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--cream);
  border: 1px solid rgba(22,35,58,0.1);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--navy);
  letter-spacing: 0.02em;
}

/* CTA band */
.cta-band {
  background: var(--orange);
  color: var(--white);
  padding: 56px 0;
  text-align: center;
}
.cta-band h2 { color: var(--white); }
.cta-band .btn-primary { background: var(--navy); }
.cta-band .btn-primary:hover { background: var(--navy-2); }

/* Contact */
.contact-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-card .name { font-weight: 700; color: var(--navy); font-size: 1.05rem; }
.contact-card .role { color: var(--orange); font-size: 0.82rem; font-weight: 700; }
.contact-card a { color: var(--blue); }

form.contact-form { display: grid; gap: 16px; max-width: 560px; }
form.contact-form label { font-weight: 600; font-size: 0.88rem; color: var(--navy); display: block; margin-bottom: 6px; }
form.contact-form input, form.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(22,35,58,0.2);
  font-family: inherit;
  font-size: 0.95rem;
}
form.contact-form textarea { min-height: 120px; resize: vertical; }

/* Image sections */
.hero-image-wrap { padding: 0; }
.hero-image-wrap img { width: 100%; display: block; }
.img-section { padding: 0; }
.img-section img { width: 100%; display: block; }
.img-section.rounded img { border-radius: var(--radius); }
.img-section.contained { padding: 0 24px; }
.img-section.contained .wrap { padding: 0; max-width: var(--maxw); }
.img-section.contained img { border-radius: var(--radius); box-shadow: var(--shadow); }

/* Partner logos */
.partner-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
}
.partner-logos img { height: 46px; width: auto; object-fit: contain; }

/* Photo cards */
.card-photo { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.card-photo img { width: 100%; height: 220px; object-fit: cover; }
.card-photo.contain img { object-fit: contain; background: var(--cream); padding: 18px; }
.card-photo .card-body { padding: 24px; }
.card-photo .card-body h3 { color: var(--navy); }

/* Footer */
footer {
  background: var(--navy);
  color: #9fb0c4;
  padding: 48px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 { color: var(--white); font-size: 0.9rem; margin-bottom: 14px; }
.footer-grid a { display: block; margin-bottom: 8px; font-size: 0.9rem; color: #9fb0c4; }
.footer-grid a:hover { color: var(--white); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 20px; font-size: 0.82rem; flex-wrap: wrap; gap: 10px;
}
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-brand img { width: 28px; height: 28px; }
.footer-brand b { color: var(--white); }
