*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --green: #02573c;
  --green-dk: #014d35;
  --white: #fff;
  --offwhite: #f5f4f1;
  --lgray: #e4e3df;
  --mgray: #888882;
  --text: #1c1c18;
  --serif: "EB Garamond", Georgia, serif;
  --sans: "Raleway", sans-serif;
  --cdn: https: ; //cdn.prod.website-files.com/6925353d12da6e4ff67bfd14;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.08);
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img {
  height: 58px;
  width: auto;
}
.nav-center {
  display: flex;
  align-items: center;
}
.ni {
  position: relative;
}
.ni > a,
.ni > span {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 18px;
  height: 80px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--text);
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.18s;
}
.ni > span::after {
  content: "▾";
  font-size: 9px;
  opacity: 0.7;
  margin-left: 2px;
}
.ni:hover > a,
.ni:hover > span {
  color: var(--green);
}
.dd {
  display: none;
  position: absolute;
  top: 80px;
  left: 0;
  background: var(--white);
  min-width: 310px;
  border-top: 3px solid var(--green);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
  padding: 6px 0;
  z-index: 200;
}
.ni:hover .dd {
  display: block;
}
.dd a {
  display: block;
  padding: 11px 22px;
  font-size: 13px;
  font-weight: 400;
  color: var(--text);
  text-decoration: none;
  transition: all 0.15s;
}
.dd a:hover {
  color: var(--green);
  background: #f0f8f5;
  padding-left: 28px;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.btn-cnt {
  border: 1.5px solid var(--text);
  padding: 9px 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  transition: all 0.2s;
}
.btn-cnt:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}
.li-btn {
  width: 36px;
  height: 36px;
  background: #0077b5;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.li-btn:hover {
  opacity: 0.82;
}
.li-btn svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text);
  display: block;
}

/* ===== MOBILE OVERLAY ===== */
.mob-overlay {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 998;
  overflow-y: auto;
  padding: 0 0 40px;
  -webkit-overflow-scrolling: touch;
}
.mob-overlay.open {
  display: block;
}
.mob-overlay a {
  display: block;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--lgray);
}
.mob-overlay a:hover {
  color: var(--green);
}
.mob-overlay a.sub {
  font-weight: 400;
  font-size: 13px;
  color: var(--mgray);
  padding-left: 44px;
}
.mob-overlay .mob-head {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  padding: 20px 28px 8px;
  border-bottom: none;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  width: 100%;
  height: calc(100vh - 80px);
  min-height: 600px;
  margin-top: 80px;
  overflow: hidden;
  background: #2d5c48;
}
.hero video,
.hero-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero video {
  z-index: 1;
}
.hero-poster {
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(0, 0, 0, 0.1);
}
.hero-panel {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: var(--green);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.hp-left {
  padding: 52px 56px 52px 80px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.hp-left h1 {
  font-family: var(--serif);
  font-size: 54px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
}
.hp-right {
  padding: 52px 80px 52px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hp-right p {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.8;
  margin-bottom: 28px;
}

/* ===== INNER HERO ===== */
.ih {
  background: var(--green);
  padding: 140px 80px 68px;
  position: relative;
  overflow: hidden;
  margin-top: 80px;
}
.ih::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}
.ih h1 {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.ih p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.72);
  max-width: 600px;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}
.crumb {
  background: var(--offwhite);
  padding: 13px 80px;
  border-bottom: 1px solid var(--lgray);
  font-size: 12px;
  color: var(--mgray);
}
.crumb a {
  color: var(--green);
  text-decoration: none;
}

/* ===== BUTTONS ===== */
.btn-wht {
  display: inline-block;
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  padding: 11px 28px;
  color: var(--white);
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  width: fit-content;
  transition: all 0.2s;
}
.btn-wht:hover {
  background: var(--white);
  color: var(--green);
}
.btn-gs {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  padding: 11px 28px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
}
.btn-gs:hover {
  background: var(--green-dk);
}

/* ===== SECTIONS ===== */
.sec {
  padding: 80px;
}
.sec-w {
  background: var(--white);
}
.sec-g {
  background: var(--offwhite);
}
.sec-gr {
  background: var(--green);
}
.lbl {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 40px;
}
.lbl-w {
  color: rgba(255, 255, 255, 0.65);
}
.div-g {
  width: 44px;
  height: 3px;
  background: var(--green);
  margin: 18px 0 24px;
}

/* ===== AT A GLANCE ===== */
.g-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}
.gi {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.gi-ico {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gi-ico img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.gi-txt {
  font-size: 13px;
  color: #4a4a44;
  line-height: 1.75;
  padding-top: 4px;
}

/* ===== STATS ===== */
.stats {
  background: var(--green);
  display: flex;
}
.stat {
  flex: 1;
  padding: 48px 36px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}
.stat:last-child {
  border-right: none;
}
.sn {
  font-family: var(--serif);
  font-size: 54px;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
}
.sl {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.68);
  margin-top: 10px;
  line-height: 1.55;
  font-weight: 300;
}

/* ===== SVC TABS ===== */
.stabs {
  display: flex;
  border-bottom: 1px solid var(--lgray);
  margin: 20px 0 48px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.stabs::-webkit-scrollbar {
  display: none;
}
.stab {
  padding: 13px 18px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--mgray);
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  transition: all 0.18s;
}
.stab.on,
.stab:hover {
  color: var(--green);
  border-bottom-color: var(--green);
}
.sp {
  display: none;
}
.sp.on {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.sp-txt h3 {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 18px;
  line-height: 1.2;
}
.sp-txt p {
  font-size: 14px;
  color: #555;
  line-height: 1.9;
  margin-bottom: 18px;
}
.sp-txt a {
  color: var(--green);
  font-size: 13px;
  font-style: italic;
  font-weight: 600;
  text-decoration: none;
}
.sp-txt a:hover {
  text-decoration: underline;
}
.sp-img {
  background: var(--green);
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.sp-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23fff' fill-opacity='.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.sp-lbl {
  font-family: var(--serif);
  font-size: 88px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.13);
  position: relative;
  z-index: 1;
}

/* ===== LEADER CARDS ===== */
.lc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.lc {
  display: block;
  background: var(--offwhite);
  text-decoration: none;
  overflow: hidden;
  transition: background 0.2s;
}
.lc:hover {
  background: var(--green);
}
.lc-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: filter 0.2s;
}
.lc:hover .lc-img {
  filter: grayscale(40%) brightness(0.85);
}
.lc-body {
  padding: 20px 22px 24px;
}
.lc-n {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.3;
  transition: color 0.2s;
}
.lc-t {
  font-size: 12px;
  color: var(--mgray);
  line-height: 1.5;
  margin-bottom: 14px;
  transition: color 0.2s;
}
.lc-arr {
  font-size: 18px;
  color: var(--green);
  transition: color 0.2s;
}
.lc:hover .lc-n,
.lc:hover .lc-arr {
  color: var(--white);
}
.lc:hover .lc-t {
  color: rgba(255, 255, 255, 0.7);
}

/* ===== FULL LEADERSHIP ===== */
.ldr-sec-ttl {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  color: var(--text);
  margin: 52px 0 28px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--lgray);
}
.ldr-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-bottom: 4px;
}
.ldr-card {
  display: block;
  text-decoration: none;
  background: var(--offwhite);
  overflow: hidden;
  transition: background 0.2s;
}
.ldr-card:hover {
  background: var(--green);
}
.ldr-card img {
  width: 100%;
  aspect-ratio: 0.85;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: filter 0.2s;
}
.ldr-card:hover img {
  filter: grayscale(40%) brightness(0.8);
}
.ldr-body {
  padding: 18px 20px 22px;
}
.ldr-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 5px;
  line-height: 1.3;
  transition: color 0.2s;
}
.ldr-role {
  font-size: 11.5px;
  color: var(--mgray);
  line-height: 1.5;
  margin-bottom: 12px;
  transition: color 0.2s;
}
.ldr-arr {
  font-size: 17px;
  color: var(--green);
  transition: color 0.2s;
}
.ldr-card:hover .ldr-name,
.ldr-card:hover .ldr-arr {
  color: var(--white);
}
.ldr-card:hover .ldr-role {
  color: rgba(255, 255, 255, 0.65);
}

/* ===== TEAM DETAIL ===== */
.td-wrap {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 64px;
  align-items: start;
}
.td-img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.td-role {
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.td-name {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 8px;
  color: var(--text);
}
.td-bio {
  font-size: 14px;
  color: #555;
  line-height: 1.9;
  margin-bottom: 18px;
}
.td-back {
  color: var(--green);
  font-size: 13px;
  font-style: italic;
  font-weight: 600;
  text-decoration: none;
}
.td-back:hover {
  text-decoration: underline;
}

/* ===== NEWS ===== */
.nhd {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 44px;
  gap: 20px;
}
.nhd a {
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
  white-space: nowrap;
}
.nhd a:hover {
  text-decoration: underline;
}
.ng {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.nc {
  display: block;
  background: var(--white);
  padding: 28px;
  text-decoration: none;
  border-top: 3px solid var(--lgray);
  transition:
    border-color 0.2s,
    transform 0.2s;
}
.nc:hover {
  border-top-color: var(--green);
  transform: translateY(-3px);
}
.nc-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 6px;
}
.nc-date {
  font-size: 12px;
  color: var(--mgray);
  margin-bottom: 14px;
}
.nc-ttl {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--text);
  line-height: 1.4;
}

/* ===== CTA ===== */
.cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.cta-p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.75;
  font-weight: 300;
  max-width: 700px;
}
.cta-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 8px;
}

/* ===== FOOTER ===== */
footer {
  background: #0c0c0c;
  padding: 56px 80px 28px;
}
.ft-g {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.1fr;
  gap: 44px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.ft-logo {
  display: block;
  height: 50px;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}
.ft-adr {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.42);
  line-height: 2;
  font-weight: 300;
}
.ft-adr a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}
.ft-adr a:hover {
  color: var(--white);
}
.ft-col h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.ft-col a {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.43);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.18s;
}
.ft-col a:hover {
  color: var(--white);
}
.ft-btm {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 22px;
  flex-wrap: wrap;
  gap: 12px;
}
.ft-btm p {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.27);
}
.ft-lnks {
  display: flex;
  gap: 20px;
}
.ft-lnks a {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.33);
  text-decoration: none;
}
.ft-lnks a:hover {
  color: var(--white);
}

/* ===== COOKIE ===== */
.ck {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #111;
  padding: 17px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.ck p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.6;
  max-width: 840px;
}
.ck p a {
  color: #6dc9a0;
}
.ck-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.ck-btns button {
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--sans);
  transition: opacity 0.2s;
}
.ck-btns button.acc {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

/* ===== PAGE-SPECIFIC ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.two-col-wide {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.green-box {
  background: var(--green);
  padding: 48px;
}
.green-box .lbl {
  color: rgba(255, 255, 255, 0.65);
}
.fact-row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 0;
}
.fact-row:last-child {
  border-bottom: none;
}
.fact-num {
  font-family: var(--serif);
  font-size: 42px;
  color: var(--white);
}
.fact-lbl {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}
.milestones {
  margin-top: 48px;
}
.ml-item {
  display: grid;
  grid-template-columns: 100px 60px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--lgray);
  align-items: start;
}
.ml-year {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  color: var(--green);
  padding-top: 4px;
}
.ml-tree {
  width: 52px;
  height: 72px;
  object-fit: contain;
}
.ml-content h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.ml-content p,
.ml-content li {
  font-size: 13px;
  color: #555;
  line-height: 1.8;
}
.ml-content ul {
  padding-left: 18px;
}
.nmsdc-logo {
  height: 44px;
  object-fit: contain;
  margin: 20px 0;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin: 32px 0;
}
.val-card {
  background: var(--green);
  padding: 40px 36px;
}
.val-card h3 {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--white);
  margin-bottom: 14px;
}
.val-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
}
.people-tabs {
  display: flex;
  border-bottom: 1px solid var(--lgray);
  margin: 20px 0 36px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.ptab {
  padding: 12px 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--mgray);
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  transition: all 0.18s;
}
.ptab.on,
.ptab:hover {
  color: var(--green);
  border-bottom-color: var(--green);
}
.pt-panel {
  display: none;
}
.pt-panel.on {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pt-card {
  background: var(--offwhite);
  padding: 32px;
  position: relative;
}
.pt-card img.pico {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 14px;
  display: block;
}
.pt-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}
.pt-card p {
  font-size: 13px;
  color: #555;
  line-height: 1.7;
}
.photo-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin: 32px 0;
}
.photo-mosaic img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0;
}
.test-card {
  background: var(--offwhite);
  padding: 32px;
  position: relative;
}
.test-q {
  font-family: var(--serif);
  font-size: 16px;
  color: #444;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
}
.test-q::before {
  content: "\201C";
  font-size: 40px;
  color: var(--green);
  line-height: 0;
  vertical-align: -0.5em;
  margin-right: 4px;
}
.test-person {
  display: flex;
  align-items: center;
  gap: 14px;
}
.test-photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
}
.test-nm {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}
.test-role {
  font-size: 11px;
  color: var(--mgray);
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  margin-top: 32px;
}
.ben-card {
  text-align: center;
  padding: 36px 16px;
  background: var(--offwhite);
  border-right: 2px solid var(--white);
}
.ben-card:last-child {
  border-right: none;
}
.ben-card img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin: 0 auto 14px;
  display: block;
}
.ben-card p {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
}
.prog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin: 32px 0;
}
.prog-card {
  background: var(--offwhite);
  padding: 40px 36px;
}
.prog-card img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  margin-bottom: 20px;
  display: block;
}
.prog-card h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 14px;
}
.prog-card p {
  font-size: 13px;
  color: #555;
  line-height: 1.8;
}
.org-tabs {
  display: flex;
  border-bottom: 1px solid var(--lgray);
  margin: 20px 0 36px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.otab {
  padding: 12px 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--mgray);
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  transition: all 0.18s;
}
.otab.on,
.otab:hover {
  color: var(--green);
  border-bottom-color: var(--green);
}
.ot-panel {
  display: none;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  padding: 8px 0;
}
.ot-panel.on {
  display: flex;
}
.org-logo {
  height: 52px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.2s;
}
.org-logo:hover {
  filter: none;
  opacity: 1;
}
.vol-stats {
  display: flex;
  gap: 56px;
  margin: 32px 0;
}
.vs-item .sn2 {
  font-family: var(--serif);
  font-size: 48px;
  color: var(--green);
  line-height: 1;
}
.vs-item p {
  font-size: 12px;
  color: var(--mgray);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.giving-feat {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin: 32px 0;
}
.gf-card {
  background: var(--offwhite);
  padding: 36px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.gf-card img {
  height: 64px;
  object-fit: contain;
  flex-shrink: 0;
}
.gf-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.gf-card p {
  font-size: 13px;
  color: #555;
  line-height: 1.8;
}
.scholar-quotes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 32px 0;
}
.sq-card {
  background: var(--green);
  padding: 36px;
  position: relative;
}
.sq-q {
  font-family: var(--serif);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 16px;
}
.sq-q::before {
  content: "\201C";
  font-size: 40px;
  color: rgba(255, 255, 255, 0.3);
  line-height: 0;
  vertical-align: -0.5em;
  margin-right: 4px;
}
.sq-attr {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}
.industry-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin: 32px 0;
}
.ind-item {
  text-align: center;
  padding: 20px 12px;
  background: var(--offwhite);
}
.ind-item img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin: 0 auto 10px;
  display: block;
}
.ind-item p {
  font-size: 11px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.04em;
}
.sub-tabs {
  display: flex;
  border-bottom: 1px solid var(--lgray);
  margin: 20px 0 40px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.sub-tab {
  padding: 13px 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--mgray);
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  transition: all 0.18s;
}
.sub-tab.on,
.sub-tab:hover {
  color: var(--green);
  border-bottom-color: var(--green);
}
.sub-panel {
  display: none;
}
.sub-panel.on {
  display: block;
}
.sub-panel p {
  font-size: 14px;
  color: #555;
  line-height: 1.9;
  margin-bottom: 16px;
  max-width: 820px;
}
.sub-panel ul {
  padding-left: 20px;
  margin-bottom: 16px;
}
.sub-panel ul li {
  font-size: 14px;
  color: #555;
  line-height: 2.2;
}
.cap-list {
  list-style: none;
  padding: 0;
}
.cap-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--lgray);
  font-size: 14px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 12px;
}
.cap-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}
.svc-handshake {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  display: block;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
}
.form-wrap {
  background: var(--offwhite);
  padding: 40px;
}
.form-wrap .title{  
  margin-bottom: 18px;
  text-align: center;
}
.form-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form-row input,
.form-row textarea {
  padding: 12px 14px;
  border: 1px solid var(--lgray);
  font-family: var(--sans);
  font-size: 13px;
  outline: none;
  width: 100%;
  background: var(--white);
  transition: border-color 0.2s;
}
.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--green);
}
.form-row textarea {
  resize: vertical;
}

/* ================================================================
   RESPONSIVE BREAKPOINTS
   ================================================================ */

/* ----- XL: Large desktops / narrow monitors (≤1200px) ----- */
@media (max-width: 1200px) {
  nav {
    padding: 0 32px;
  }
  .sec {
    padding: 64px 48px;
  }
  .ih {
    padding: 130px 48px 60px;
  }
  .crumb {
    padding: 13px 48px;
  }
  footer {
    padding: 48px 48px 24px;
  }

  .g-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .industry-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hp-left {
    padding: 44px 40px 44px 48px;
  }
  .hp-left h1 {
    font-size: 46px;
  }
  .hp-right {
    padding: 44px 48px 44px 40px;
  }

  .ni > a,
  .ni > span {
    padding: 0 14px;
    font-size: 12.5px;
  }
}

/* ----- LG: Tablets landscape / small laptops (≤1024px) ----- */
@media (max-width: 1024px) {
  nav {
    padding: 0 28px;
  }

  .lc-grid,
  .ldr-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ng {
    grid-template-columns: repeat(2, 1fr);
  }
  .ft-g {
    grid-template-columns: 1fr 1fr;
  }
  .sp.on {
    grid-template-columns: 1fr;
  }
  .sp-img {
    height: 260px;
  }
  .two-col,
  .two-col-wide,
  .contact-grid,
  .giving-feat,
  .scholar-quotes {
    grid-template-columns: 1fr;
  }
  .testimonials {
    grid-template-columns: 1fr 1fr;
  }
  .pt-panel.on {
    grid-template-columns: 1fr 1fr;
  }
  .td-wrap {
    grid-template-columns: 260px 1fr;
    gap: 40px;
  }
  .prog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hp-left h1 {
    font-size: 40px;
  }
  .hp-right p {
    font-size: 14px;
  }
  .ih h1 {
    font-size: 42px;
  }

  .contact-grid {
    gap: 40px;
  }
  .green-box {
    padding: 36px;
  }
  .fact-num {
    font-size: 34px;
  }
  .vol-stats {
    gap: 36px;
    flex-wrap: wrap;
  }
}

/* ----- MD: Tablets portrait (≤768px) ----- */
@media (max-width: 768px) {
  /* Nav: hide desktop elements, show hamburger */
  nav {
    padding: 0 20px;
    height: 68px;
  }
  .nav-logo img {
    height: 46px;
  }
  .nav-center,
  .nav-right .btn-cnt,
  .nav-right .li-btn {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .mob-overlay {
    top: 68px;
  }

  /* Hero */
  .hero {
    margin-top: 68px;
    height: auto;
    min-height: auto;
  }
  .hero-poster {
    display: none;
  }
  .hero video {
    position: relative;
    width: 100%;
    height: 50vw;
    min-height: 280px;
    max-height: 420px;
    object-fit: cover;
  }
  .hero-overlay {
    display: none;
  }
  .hero-panel {
    position: relative;
    grid-template-columns: 1fr;
  }
  .hp-left {
    padding: 32px 24px 24px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .hp-left h1 {
    font-size: 32px;
  }
  .hp-right {
    padding: 24px 24px 36px;
  }
  .hp-right p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
  }

  /* Sections */
  .sec {
    padding: 48px 24px;
  }
  .ih {
    padding: 100px 24px 40px;
    margin-top: 68px;
  }
  .ih h1 {
    font-size: 34px;
  }
  .ih p {
    font-size: 14px;
  }
  .crumb {
    padding: 13px 24px;
  }

  /* Footer */
  footer {
    padding: 40px 24px 20px;
  }
  .ft-g {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .ft-btm {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .ft-lnks {
    flex-wrap: wrap;
    gap: 14px;
  }

  /* Stats */
  .stats {
    flex-direction: column;
  }
  .stat {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    padding: 32px 24px;
  }
  .stat:last-child {
    border-bottom: none;
  }
  .sn {
    font-size: 42px;
  }

  /* Grids */
  .g-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .lc-grid,
  .ldr-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ng {
    grid-template-columns: 1fr;
  }
  .sp.on {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .sp-img {
    height: 200px;
  }
  .sp-txt h3 {
    font-size: 28px;
  }
  .sp-lbl {
    font-size: 64px;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .prog-grid {
    grid-template-columns: 1fr;
  }
  .photo-mosaic {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials {
    grid-template-columns: 1fr;
  }
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pt-panel.on {
    grid-template-columns: 1fr;
  }
  .td-wrap {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .td-img {
    max-width: 280px;
  }
  .td-name {
    font-size: 32px;
  }

  /* CTA */
  .cta-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .cta-p {
    font-size: 15px;
  }

  /* News header */
  .nhd {
    flex-direction: column;
    gap: 12px;
  }

  /* Cookie */
  .ck {
    flex-direction: column;
    padding: 20px 24px;
    gap: 16px;
  }
  .ck-btns {
    width: 100%;
    justify-content: flex-end;
  }

  /* Milestones */
  .ml-item {
    grid-template-columns: 70px 1fr;
    gap: 16px;
  }
  .ml-tree {
    display: none;
  }
  .ml-year {
    font-size: 24px;
  }

  /* Giving */
  .giving-feat {
    grid-template-columns: 1fr;
  }
  .gf-card {
    flex-direction: column;
    gap: 16px;
  }
  .scholar-quotes {
    grid-template-columns: 1fr;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .form-wrap {
    padding: 28px;
  }

  /* Vol stats */
  .vol-stats {
    flex-direction: column;
    gap: 24px;
  }
  .vs-item .sn2 {
    font-size: 36px;
  }

  /* Green box */
  .green-box {
    padding: 28px;
  }
  .fact-num {
    font-size: 30px;
  }

  /* Tabs – ensure scrollable with visual hint */
  .stabs,
  .people-tabs,
  .org-tabs,
  .sub-tabs {
    margin-left: -24px;
    margin-right: -24px;
    padding-left: 24px;
    padding-right: 24px;
    -webkit-mask-image: linear-gradient(
      to right,
      transparent 0,
      black 24px,
      black calc(100% - 40px),
      transparent 100%
    );
    mask-image: linear-gradient(
      to right,
      transparent 0,
      black 24px,
      black calc(100% - 40px),
      transparent 100%
    );
  }
}

/* ----- SM: Large phones (≤540px) ----- */
@media (max-width: 540px) {
  nav {
    height: 60px;
    padding: 0 16px;
  }
  .nav-logo img {
    height: 40px;
  }
  .mob-overlay {
    top: 60px;
  }

  .hero {
    margin-top: 60px;
  }
  .hero video,
  .hero-poster {
    min-height: 220px;
    max-height: 320px;
  }
  .hp-left {
    padding: 24px 16px 20px;
  }
  .hp-left h1 {
    font-size: 26px;
  }
  .hp-right {
    padding: 20px 16px 28px;
  }
  .hp-right p {
    font-size: 13px;
    line-height: 1.65;
  }

  .sec {
    padding: 36px 16px;
  }
  .ih {
    padding: 88px 16px 32px;
    margin-top: 60px;
  }
  .ih h1 {
    font-size: 28px;
  }
  .crumb {
    padding: 10px 16px;
    font-size: 11px;
  }

  .lbl {
    font-size: 10px;
    letter-spacing: 0.2em;
    margin-bottom: 28px;
  }

  .g-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .gi {
    gap: 12px;
  }
  .gi-ico {
    width: 36px;
    height: 36px;
  }
  .gi-ico img {
    width: 32px;
    height: 32px;
  }

  .stat {
    padding: 24px 16px;
  }
  .sn {
    font-size: 36px;
  }
  .sl {
    font-size: 11px;
  }

  .stab {
    padding: 10px 14px;
    font-size: 10.5px;
  }
  .sp-txt h3 {
    font-size: 24px;
  }
  .sp-img {
    height: 160px;
  }

  .lc-grid,
  .ldr-grid {
    grid-template-columns: 1fr;
  }
  .lc-body {
    padding: 16px 18px 20px;
  }

  .nc {
    padding: 20px;
  }
  .nc-ttl {
    font-size: 17px;
  }

  .cta-p {
    font-size: 14px;
  }
  .cta-sub {
    font-size: 12px;
  }

  footer {
    padding: 32px 16px 16px;
  }
  .ft-logo {
    height: 40px;
  }

  .ck {
    padding: 16px;
  }
  .ck p {
    font-size: 11px;
  }
  .ck-btns {
    flex-wrap: wrap;
    gap: 8px;
  }
  .ck-btns button {
    padding: 7px 12px;
    font-size: 10px;
  }

  .val-card {
    padding: 28px 24px;
  }
  .val-card h3 {
    font-size: 22px;
  }
  .prog-card {
    padding: 28px 24px;
  }

  .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ben-card {
    padding: 24px 12px;
  }
  .industry-grid {
    grid-template-columns: 1fr 1fr;
  }

  .td-img {
    max-width: 100%;
  }
  .td-name {
    font-size: 28px;
  }
  .td-wrap {
    gap: 20px;
  }

  .test-card {
    padding: 24px;
  }
  .sq-card {
    padding: 24px;
  }
  .gf-card {
    padding: 24px;
  }

  .form-wrap {
    padding: 20px;
  }
  .form-row input,
  .form-row textarea {
    padding: 10px 12px;
    font-size: 12px;
  }

  .ml-item {
    grid-template-columns: 56px 1fr;
    gap: 12px;
  }
  .ml-year {
    font-size: 20px;
  }
  .ml-content h3 {
    font-size: 14px;
  }

  /* Tabs scroll hint */
  .stabs,
  .people-tabs,
  .org-tabs,
  .sub-tabs {
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 16px;
    padding-right: 16px;
    -webkit-mask-image: linear-gradient(
      to right,
      transparent 0,
      black 16px,
      black calc(100% - 32px),
      transparent 100%
    );
    mask-image: linear-gradient(
      to right,
      transparent 0,
      black 16px,
      black calc(100% - 32px),
      transparent 100%
    );
  }
}

/* ----- XS: Small phones (≤375px) ----- */
@media (max-width: 375px) {
  .hp-left h1 {
    font-size: 22px;
  }
  .hp-right p {
    font-size: 12px;
  }
  .ih h1 {
    font-size: 24px;
  }

  .sn {
    font-size: 30px;
  }

  .sp-txt h3 {
    font-size: 22px;
  }
  .sp-img {
    height: 130px;
  }
  .sp-lbl {
    font-size: 48px;
  }

  .nc-ttl {
    font-size: 16px;
  }
  .nc {
    padding: 16px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .industry-grid {
    grid-template-columns: 1fr;
  }

  .lc-grid,
  .ldr-grid {
    grid-template-columns: 1fr;
  }

  .td-name {
    font-size: 24px;
  }

  .ft-btm p {
    font-size: 10px;
  }
  .ft-lnks a {
    font-size: 10px;
  }
}

/* ----- TOUCH / HOVER FIXES ----- */
@media (hover: none) {
  .lc:hover {
    background: var(--offwhite);
  }
  .lc:hover .lc-img {
    filter: none;
  }
  .lc:hover .lc-n {
    color: var(--text);
  }
  .lc:hover .lc-t {
    color: var(--mgray);
  }
  .lc:hover .lc-arr {
    color: var(--green);
  }
  .ldr-card:hover {
    background: var(--offwhite);
  }
  .ldr-card:hover img {
    filter: none;
  }
  .ldr-card:hover .ldr-name {
    color: var(--text);
  }
  .ldr-card:hover .ldr-role {
    color: var(--mgray);
  }
  .ldr-card:hover .ldr-arr {
    color: var(--green);
  }
  .nc:hover {
    transform: none;
  }
  .lc:active {
    background: var(--green);
  }
  .lc:active .lc-img {
    filter: grayscale(40%) brightness(0.85);
  }
  .lc:active .lc-n,
  .lc:active .lc-arr {
    color: var(--white);
  }
  .lc:active .lc-t {
    color: rgba(255, 255, 255, 0.7);
  }
}

/* ----- PRINT ----- */
@media print {
  nav,
  .ck,
  .mob-overlay,
  .hero video,
  .hero-overlay {
    display: none !important;
  }
  .hero {
    height: auto;
    min-height: 0;
  }
  .hero-panel {
    position: relative;
  }
  .sec {
    padding: 24px;
  }
  footer {
    padding: 24px;
  }
  body {
    font-size: 12pt;
  }
}
