:root {
  --ink: #072747;
  --ink-strong: #04172a;
  --gold: #b58a31;
  --gold-light: #d8b763;
  --earth: #8b2c10;
  --green: #314127;
  --paper: #fffdf8;
  --sand: #f4efe4;
  --mist: #e9e3d6;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(4, 23, 42, 0.12);
  --serif: "Source Serif 4", Georgia, serif;
  --sans: "Inter", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink-strong);
  background: #f8f2e7;
  font-family: var(--sans);
  font-size: 20px;
  line-height: 1.2;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  background: url("assets/akwete.png") center/420px auto repeat;
  content: "";
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 15% 10%, rgba(181, 138, 49, 0.18), transparent 24rem),
    linear-gradient(180deg, rgba(255, 253, 248, 0.94), rgba(249, 244, 235, 0.94) 52%, rgba(255, 255, 255, 0.95));
  content: "";
}

body.nav-open,
body.profile-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: min(1180px, calc(100% - 2rem));
  min-height: 76px;
  margin: 0 auto;
  padding: 0.65rem 0;
  background: rgba(255, 253, 248, 0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(181, 138, 49, 0.22);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  width: auto;
  height: 58px;
  color: var(--ink);
  text-decoration: none;
}

.brand-link img {
  width: clamp(154px, 18vw, 198px);
  height: 52px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 7px 14px rgba(4, 23, 42, 0.12));
  transform-origin: center;
  animation: brand-breathe 4.8s ease-in-out infinite;
}

@keyframes brand-breathe {
  0%,
  100% {
    filter: drop-shadow(0 7px 14px rgba(4, 23, 42, 0.12));
    transform: translateY(0) scale(1);
  }

  45% {
    filter: drop-shadow(0 10px 18px rgba(181, 138, 49, 0.22));
    transform: translateY(-1px) scale(1.035);
  }
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  text-decoration: none;
}

.site-nav button {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav button::after {
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav button:hover::after,
.site-nav button:focus-visible::after,
.site-nav button[aria-expanded="true"]::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
}

.business-panel {
  position: fixed;
  top: 76px;
  right: 0;
  left: 0;
  z-index: 18;
  padding: 1rem;
  background: rgba(255, 253, 248, 0.96);
  border-bottom: 1px solid rgba(181, 138, 49, 0.28);
  box-shadow: 0 28px 70px rgba(4, 23, 42, 0.14);
  backdrop-filter: blur(16px);
}

.business-panel[hidden] {
  display: none;
}

.business-panel-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(360px, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: clamp(1.2rem, 3vw, 2.5rem) 0;
}

.business-panel h2 {
  margin-bottom: 0.8rem;
  font-size: clamp(2.4rem, 4.5vw, 4.5rem);
}

.business-panel p:not(.eyebrow) {
  margin-bottom: 0;
  color: #384756;
}

.business-panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.business-panel-grid a {
  display: grid;
  min-height: 124px;
  align-content: space-between;
  padding: 1rem;
  border: 1px solid rgba(181, 138, 49, 0.3);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.6vw, 2.1rem);
  font-weight: 700;
  line-height: 1.02;
  text-decoration: none;
}

.business-panel-grid span {
  color: var(--earth);
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
}

.hero {
  display: flex;
  align-items: center;
  min-width: 0;
  width: min(1180px, calc(100% - 2rem));
  min-height: calc(88vh - 76px);
  margin: 0 auto 1.5rem;
  padding: clamp(1.5rem, 4vw, 4rem) 0 2.5rem;
}

.hero-copy {
  min-width: 0;
  width: min(100%, 940px);
}

.eyebrow,
.label {
  margin: 0 0 0.8rem;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.04;
}

h1 {
  max-width: 920px;
  margin-bottom: 1.4rem;
  font-size: clamp(4rem, 7.1vw, 5rem);
  letter-spacing: 0;
}

.hero-title {
  min-height: 0;
  transition:
    opacity 420ms ease,
    transform 420ms ease;
}

.hero-title.is-fading {
  opacity: 0;
  transform: translateY(10px);
}

h2 {
  margin-bottom: 1.2rem;
  font-size: clamp(3rem, 6vw, 4.5rem);
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.7rem;
  font-size: clamp(2rem, 4vw, 3rem);
}

.hero-lede {
  max-width: 660px;
  margin-bottom: 2rem;
  color: #27394a;
  font-size: clamp(1rem, 1.45vw, 1.25rem);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.1rem;
  border: 1px solid var(--gold);
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.62);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(181, 138, 49, 0.24);
  border-radius: 8px;
  background: rgba(181, 138, 49, 0.24);
  box-shadow: var(--shadow);
}

.metrics div {
  position: relative;
  min-height: 142px;
  padding: 1.4rem;
  overflow: hidden;
  background: rgba(255, 253, 248, 0.92);
}

.currency-metric::before {
  position: absolute;
  right: 1rem;
  bottom: -2.1rem;
  color: rgba(181, 138, 49, 0.13);
  content: "$";
  font-family: var(--serif);
  font-size: 9rem;
  font-weight: 700;
  line-height: 1;
}

.metrics strong {
  position: relative;
  display: block;
  color: var(--earth);
  font-family: var(--serif);
  font-size: clamp(2.45rem, 4.2vw, 4.15rem);
  line-height: 0.9;
}

.metrics span {
  display: block;
  max-width: 21rem;
  margin-top: 0.8rem;
  color: #44505c;
  font-weight: 600;
}

.section {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4.5rem, 9vw, 8rem) 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4.8rem);
  align-items: start;
}

.section-copy p,
.section-heading p,
.mission-band p,
.contact-panel p {
  color: #384756;
  font-size: 1rem;
}

.section-copy > p:not(.eyebrow) {
  max-width: 40rem;
}

.principles {
  display: grid;
  gap: 1rem;
}

.principles div,
.contact-panel,
.news-item {
  border: 1px solid rgba(181, 138, 49, 0.26);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 14px 42px rgba(4, 23, 42, 0.07);
}

.principles div {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  min-height: 104px;
  padding: 1.1rem;
}

.principles span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 800;
}

.principles p {
  margin-bottom: 0;
  color: #46515d;
  font-weight: 700;
}

.platform-section {
  width: 100%;
  padding-right: max(1rem, calc((100vw - 1180px) / 2));
  padding-left: max(1rem, calc((100vw - 1180px) / 2));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.56), rgba(7, 39, 71, 0.08));
}

.platform-layout {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(280px, 0.72fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.platform-map {
  position: relative;
  min-height: 560px;
}

.platform-map::before,
.platform-map::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(70vw, 500px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(181, 138, 49, 0.64), transparent);
  content: "";
  transform: translate(-50%, -50%);
}

.platform-map::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.platform-center {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  width: 184px;
  height: 184px;
  place-items: center;
  padding: 1rem;
  color: var(--white);
  background: var(--ink);
  border: 1px solid rgba(216, 183, 99, 0.75);
  border-radius: 50%;
  text-align: center;
  transform: translate(-50%, -50%);
}

.platform-center span {
  display: block;
  font-family: var(--serif);
  font-size: 4.8rem;
  line-height: 0.8;
}

.platform-center small {
  display: block;
  color: var(--gold-light);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.platform-node {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 0.55rem;
  width: min(43%, 260px);
  min-height: 128px;
  padding: 1rem;
  border: 1px solid rgba(181, 138, 49, 0.33);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.93);
  box-shadow: 0 18px 45px rgba(4, 23, 42, 0.08);
}

.platform-node span {
  color: var(--earth);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.platform-node strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1.02;
}

.node-one {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.node-two {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.node-three {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.node-four {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.platform-copy {
  display: grid;
  gap: 1.2rem;
}

.platform-copy article {
  padding-top: 1.2rem;
  border-top: 2px solid rgba(181, 138, 49, 0.42);
}

.platform-copy h3 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.platform-copy p {
  color: #384756;
}

.divisions-section {
  width: 100%;
  padding-right: max(1rem, calc((100vw - 1180px) / 2));
  padding-left: max(1rem, calc((100vw - 1180px) / 2));
  background: linear-gradient(180deg, rgba(7, 39, 71, 0.08), rgba(139, 44, 16, 0.11));
}

.section-heading {
  max-width: 740px;
  margin-bottom: 2rem;
}

.division-showcase {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(300px, 1fr);
  gap: clamp(1rem, 4vw, 3.2rem);
  align-items: center;
}

.division-stage {
  display: grid;
  min-height: 430px;
  align-content: center;
  justify-items: center;
  padding: clamp(1.3rem, 3vw, 2.4rem);
  border: 1px solid rgba(181, 138, 49, 0.32);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.94), rgba(255, 250, 241, 0.86)),
    url("assets/akwete.png") center/360px auto;
  box-shadow: 0 22px 62px rgba(4, 23, 42, 0.1);
}

.division-stage-kicker {
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.division-stage img {
  width: min(62vw, 290px);
  max-height: 270px;
  object-fit: contain;
  filter: drop-shadow(0 14px 26px rgba(4, 23, 42, 0.12));
  opacity: 1;
  transform: translateY(0) scale(1);
  transition:
    opacity 320ms ease,
    transform 320ms ease;
}

.division-stage.is-fading img,
.division-stage.is-fading h3,
.division-stage.is-fading .division-stage-kicker {
  opacity: 0;
  transform: translateY(10px) scale(0.985);
}

.division-stage h3 {
  margin: 1rem 0 0;
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(1.65rem, 3vw, 2.6rem);
  font-style: normal;
  font-weight: 500;
  line-height: 1.05;
  text-align: center;
  transition:
    opacity 320ms ease,
    transform 320ms ease;
}

.division-stage .division-stage-kicker {
  transition:
    opacity 320ms ease,
    transform 320ms ease;
}

.division-selector {
  display: grid;
  gap: 0.75rem;
}

.division-selector button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(181, 138, 49, 0.28);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.72);
  cursor: pointer;
  font-family: var(--sans);
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  font-style: normal;
  font-weight: 400;
  text-align: left;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.division-selector button::after {
  width: 0.7rem;
  height: 0.7rem;
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  content: "";
  transform: rotate(45deg);
}

.division-selector button:hover,
.division-selector button:focus-visible,
.division-selector button.is-active {
  border-color: rgba(181, 138, 49, 0.72);
  background: rgba(255, 255, 255, 0.94);
  outline: none;
  transform: translateX(4px);
}

.division-callout-panel {
  grid-column: 2;
  padding: clamp(1.15rem, 2.5vw, 1.8rem);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.84);
  box-shadow: 0 18px 42px rgba(4, 23, 42, 0.08);
}

.division-callout-panel[hidden] {
  display: none;
}

.division-callout-panel h3 {
  margin-bottom: 0.7rem;
  font-family: var(--sans);
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
  font-style: normal;
  font-weight: 500;
}

.division-callout-panel p:not(.label) {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(1.02rem, 1.35vw, 1.2rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1.45;
}

.mission-band {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr 0.7fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: clamp(4rem, 8vw, 7rem) max(1rem, calc((100vw - 1180px) / 2));
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(4, 23, 42, 0.95), rgba(7, 39, 71, 0.9)),
    url("assets/tukwasi.png") center/cover;
}

.mission-band h2,
.mission-band p,
.mission-band .eyebrow {
  color: var(--white);
}

.mission-band .eyebrow {
  color: var(--gold-light);
}

.mission-band ul {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mission-band li {
  padding: 0.85rem 1rem;
  border: 1px solid rgba(216, 183, 99, 0.36);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.people-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(320px, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.people-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.news-item span,
.news-item time {
  color: var(--earth);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.person-card {
  display: grid;
  min-height: 340px;
  justify-items: center;
  padding: 1.5rem 1.1rem 1.1rem;
  overflow: visible;
  border: 1px solid rgba(181, 138, 49, 0.3);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.86);
  box-shadow: 0 14px 42px rgba(4, 23, 42, 0.07);
  cursor: pointer;
  text-align: left;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.person-card:hover,
.person-card:focus-visible {
  border-color: rgba(181, 138, 49, 0.72);
  box-shadow: 0 20px 54px rgba(4, 23, 42, 0.12);
  outline: none;
  transform: translateY(-3px);
}

.person-card img {
  width: min(100%, 228px);
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  object-position: center center;
  border: 1px solid rgba(181, 138, 49, 0.38);
  border-radius: 50%;
  filter: saturate(0.92);
  box-shadow: 0 16px 38px rgba(4, 23, 42, 0.13);
  transition: transform 240ms ease;
}

.person-card:hover img,
.person-card:focus-visible img {
  transform: scale(1.035);
}

.person-card .headshot-square {
  object-position: center center;
}

.person-card img[alt="Prestige Obioma"] {
  object-position: center 35%;
  transform: scale(1.2);
}

.person-card img[alt="Ejiro Obioma"] {
  object-position: center 28%;
  transform: scale(1.16);
}

.person-card img[alt="Yvonne Chiọma Mbanefo"] {
  object-position: center 35%;
  transform: scale(1.18);
}

.person-card img[alt="Nwachukwu Egbunike"] {
  object-position: center 36%;
  transform: scale(1.08);
}

.person-card:hover img[alt="Prestige Obioma"],
.person-card:focus-visible img[alt="Prestige Obioma"] {
  transform: scale(1.25);
}

.person-card:hover img[alt="Ejiro Obioma"],
.person-card:focus-visible img[alt="Ejiro Obioma"] {
  transform: scale(1.21);
}

.person-card:hover img[alt="Yvonne Chiọma Mbanefo"],
.person-card:focus-visible img[alt="Yvonne Chiọma Mbanefo"] {
  transform: scale(1.23);
}

.person-card:hover img[alt="Nwachukwu Egbunike"],
.person-card:focus-visible img[alt="Nwachukwu Egbunike"] {
  transform: scale(1.13);
}

.person-card span {
  display: flex;
  align-items: center;
  min-height: 74px;
  padding: 1rem 0 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.4vw, 2.25rem);
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.profile-panel {
  position: fixed;
  inset: 0;
  z-index: 35;
  padding: clamp(1rem, 3vw, 2rem);
  overflow: auto;
  background: rgba(4, 23, 42, 0.74);
  backdrop-filter: blur(12px);
}

.profile-panel[hidden] {
  display: none;
}

.profile-panel-inner {
  position: relative;
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: clamp(1rem, 3vw, 2rem);
  border: 1px solid rgba(181, 138, 49, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.96), rgba(249, 244, 235, 0.94)),
    url("assets/akwete.png") center/420px auto;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
}

.profile-close {
  position: sticky;
  top: 0.8rem;
  z-index: 2;
  display: grid;
  width: 44px;
  height: 44px;
  margin-left: auto;
  place-items: center;
  border: 1px solid rgba(181, 138, 49, 0.5);
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.94);
  cursor: pointer;
}

.profile-close::before,
.profile-close::after {
  position: absolute;
  width: 20px;
  height: 2px;
  background: var(--ink);
  content: "";
}

.profile-close::before {
  transform: rotate(45deg);
}

.profile-close::after {
  transform: rotate(-45deg);
}

.profile-hero {
  display: grid;
  grid-template-columns: minmax(260px, 0.48fr) minmax(280px, 1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  margin-top: -1.2rem;
  padding-bottom: clamp(1.8rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(181, 138, 49, 0.28);
}

.profile-hero img {
  width: min(100%, 340px);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center center;
  border: 1px solid rgba(181, 138, 49, 0.38);
  border-radius: 50%;
  box-shadow: 0 20px 52px rgba(4, 23, 42, 0.12);
}

.profile-hero img[alt="Ejiro Obioma"] {
  object-position: center 24%;
}

.profile-hero h2 {
  max-width: 700px;
  margin-bottom: 0;
  font-size: clamp(2.5rem, 5vw, 5rem);
}

.profile-content {
  display: grid;
  grid-template-columns: minmax(200px, 0.28fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  padding-top: clamp(1.8rem, 4vw, 3rem);
}

.profile-content article {
  display: contents;
}

.profile-content h3 {
  margin: 0;
  padding-top: 0.2rem;
  border-top: 2px solid rgba(181, 138, 49, 0.46);
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.profile-content p {
  grid-column: 2;
  max-width: 760px;
  margin-bottom: 0.45rem;
  color: #2f4050;
  font-size: 1rem;
  line-height: 1.48;
}

.news-section {
  border-top: 1px solid rgba(181, 138, 49, 0.22);
}

.news-item {
  display: grid;
  grid-template-columns: minmax(150px, 0.35fr) minmax(280px, 1fr);
  gap: clamp(1rem, 4vw, 3rem);
  padding: clamp(1.4rem, 3vw, 2.4rem);
}

.news-item div {
  display: grid;
  align-content: start;
  gap: 0.5rem;
}

.news-item h3 {
  margin-bottom: 0.8rem;
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.news-item p {
  grid-column: 2;
  margin-bottom: 0;
  color: #384756;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.contact-panel {
  display: grid;
  gap: 1px;
  overflow: hidden;
  background: rgba(181, 138, 49, 0.24);
}

.contact-panel div {
  padding: 1.35rem;
  background: rgba(255, 253, 248, 0.94);
}

.contact-panel span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--earth);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-panel p {
  margin-bottom: 0;
  font-size: 1.14rem;
  font-weight: 700;
}

.site-footer {
  margin-top: clamp(2rem, 5vw, 5rem);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(4, 23, 42, 0.97), rgba(7, 39, 71, 0.92)),
    url("assets/akwete.png") center/520px auto repeat;
}

.footer-cta,
.footer-main,
.footer-bottom {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.footer-cta {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: 2rem;
  align-items: center;
  padding: clamp(3rem, 7vw, 6rem) 0;
  border-bottom: 1px solid rgba(216, 183, 99, 0.3);
}

.footer-cta h2,
.footer-main h3,
.footer-brand p,
.footer-bottom p {
  color: var(--white);
}

.footer-cta .eyebrow {
  color: var(--gold-light);
}

.footer-cta h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(2.7rem, 6vw, 5.4rem);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(240px, 1.25fr) repeat(3, minmax(150px, 0.7fr));
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: clamp(2.4rem, 5vw, 4.5rem) 0;
}

.footer-brand img {
  width: 190px;
  margin-bottom: 1rem;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.94);
}

.footer-brand p {
  max-width: 24rem;
  color: rgba(255, 255, 255, 0.78);
}

.footer-main h3 {
  margin-bottom: 1rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-main a,
.footer-main span,
.footer-bottom a {
  display: block;
  margin-bottom: 0.55rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
  text-decoration: none;
}

.footer-main a:hover,
.footer-bottom a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 0 1.6rem;
  border-top: 1px solid rgba(216, 183, 99, 0.3);
}

.footer-bottom p,
.footer-bottom a {
  margin-bottom: 0;
  font-size: 0.82rem;
}

@media (max-width: 920px) {
  .site-header {
    width: 100%;
    padding: 0.6rem 1rem;
  }

  .menu-toggle {
    position: relative;
    z-index: 25;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(181, 138, 49, 0.5);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.72);
  }

  .menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--ink);
    transition:
      transform 180ms ease,
      opacity 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-5px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 22;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 1.4rem;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 253, 248, 0.97);
    font-size: 1rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .site-nav button {
    min-height: auto;
  }

  body.nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .business-panel {
    top: 76px;
    max-height: calc(100vh - 76px);
    overflow: auto;
  }

  .business-panel-inner,
  .footer-cta,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .hero,
  .split,
  .contact-section,
  .platform-layout,
  .people-section,
  .division-showcase,
  .profile-hero,
  .profile-content {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 2.4rem;
  }

  .metrics,
  .mission-band {
    grid-template-columns: 1fr;
  }

  .platform-map {
    min-height: auto;
    display: grid;
    gap: 1rem;
  }

  .platform-map::before,
  .platform-map::after {
    display: none;
  }

  .platform-center,
  .platform-node,
  .node-one,
  .node-two,
  .node-three,
  .node-four {
    position: static;
    width: 100%;
    min-height: auto;
    transform: none;
  }

  .platform-center {
    width: 184px;
    height: 184px;
    justify-self: center;
  }

  .division-callout-panel {
    grid-column: auto;
  }

  .news-item {
    grid-template-columns: 1fr;
  }

  .news-item p {
    grid-column: auto;
  }

  .profile-content article {
    display: grid;
    gap: 0.8rem;
  }

  .profile-content p {
    grid-column: auto;
  }

  .footer-cta .button {
    width: fit-content;
  }
}

@media (max-width: 620px) {
  .brand-link {
    height: 50px;
  }

  .brand-link img {
    width: 144px;
    height: 46px;
  }

  .hero {
    display: block;
    width: calc(100% - 2rem);
    overflow: hidden;
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
  }

  h1 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(2.55rem, 11vw, 3.25rem);
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  h2 {
    max-width: 100%;
    font-size: clamp(2.35rem, 11vw, 3.6rem);
    overflow-wrap: break-word;
  }

  .hero-lede {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .button {
    padding-right: 0.8rem;
    padding-left: 0.8rem;
  }

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

  .principles div {
    grid-template-columns: 46px 1fr;
  }

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

  .person-card {
    min-height: auto;
  }

  .person-card img {
    width: min(72vw, 260px);
    height: auto;
  }

  .division-stage {
    min-height: 360px;
  }

  .division-stage img {
    width: min(78vw, 260px);
    max-height: 240px;
  }

  .division-selector button {
    min-height: 58px;
  }

  .business-panel-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
