
:root {
  --ihrm-navy: #061B4E;
  --ihrm-blue: #003A8C;
  --ihrm-royal: #0B4FA3;
  --ihrm-crimson: #E3343A;
  --ihrm-red-dark: #B91C2B;
  --ihrm-sky: #EAF4FF;
  --ihrm-soft-blue: #F5F9FF;
  --ihrm-ink: #101828;
  --ihrm-muted: #667085;
  --ihrm-border: #D9E2F2;
  --ihrm-white: #FFFFFF;
  --ihrm-gold: #C9A24A;
  --shadow-soft: 0 18px 46px rgba(6, 27, 78, 0.11);
  --shadow-crisp: 0 10px 26px rgba(6, 27, 78, 0.08);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ihrm-ink);
  background: var(--ihrm-white);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: 1.6;
}
a { color: var(--ihrm-blue); text-decoration: none; }
a:hover { color: var(--ihrm-crimson); text-decoration: underline; }
img { max-width: 100%; height: auto; }
.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  background: var(--ihrm-navy);
  color: var(--ihrm-white);
  padding: 10px 14px;
  z-index: 100;
}
.skip-link:focus { top: 12px; }
.topbar {
  background: var(--ihrm-navy);
  color: var(--ihrm-white);
  font-size: 14px;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 20px;
}
.topbar a { color: var(--ihrm-white); }
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid rgba(217, 226, 242, 0.92);
  backdrop-filter: blur(10px);
}
.container {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 0 20px;
}
.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ihrm-navy);
  font-weight: 800;
  line-height: 1.15;
}
.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}
.brand span { max-width: 220px; }
.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--ihrm-border);
  border-radius: 6px;
  background: var(--ihrm-white);
  color: var(--ihrm-navy);
  cursor: pointer;
}
.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav a {
  color: var(--ihrm-ink);
  font-weight: 700;
  padding: 10px 11px;
  border-radius: 6px;
  font-size: 15px;
}
.nav a[aria-current="page"],
.nav a:hover {
  background: var(--ihrm-soft-blue);
  color: var(--ihrm-blue);
  text-decoration: none;
}
.nav a:focus-visible,
.btn:focus-visible,
.menu-toggle:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(227, 52, 58, 0.35);
  outline-offset: 3px;
}
.hero {
  position: relative;
  overflow: hidden;
  color: var(--ihrm-white);
  background: var(--ihrm-navy);
}
.hero-home {
  min-height: 540px;
  display: flex;
  align-items: center;
  isolation: isolate;
}
.hero-home::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, rgba(11, 79, 163, 0.52), transparent 30%),
    linear-gradient(130deg, #061B4E 0%, #003A8C 58%, #0B4FA3 100%);
  background-size: 72px 72px, 72px 72px, auto, auto;
  z-index: -3;
}
.hero-field {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
}
.orbital {
  position: absolute;
  border: 1px solid rgba(234, 244, 255, 0.22);
  border-radius: 50%;
  transform: rotate(-18deg);
}
.orbital-one {
  width: 620px;
  height: 620px;
  right: -160px;
  top: 48px;
}
.orbital-two {
  width: 420px;
  height: 420px;
  right: 42px;
  top: 142px;
  border-color: rgba(227, 52, 58, 0.30);
}
.network-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border: 2px solid rgba(255,255,255,0.78);
  background: rgba(227, 52, 58, 0.78);
  transform: rotate(45deg);
}
.dot-one { right: 332px; top: 188px; }
.dot-two { right: 188px; top: 402px; background: rgba(234,244,255,0.75); }
.dot-three { right: 82px; top: 286px; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.7fr);
  gap: 52px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 44px;
}
.hero-copy {
  max-width: 760px;
}
.hero-inner {
  padding: 96px 0 86px;
  background:
    linear-gradient(110deg, rgba(6,27,78,0.96), rgba(0,58,140,0.86)),
    url("../images/background/breadcrumb-img-1.jpg") center / cover no-repeat;
}
.hero h1 {
  width: min(780px, 100%);
  margin: 0 0 18px;
  font-size: 56px;
  line-height: 1.02;
  letter-spacing: 0;
}
.hero p {
  width: min(720px, 100%);
  font-size: 19px;
  margin: 0 0 28px;
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--ihrm-crimson);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 13px;
}
.hero .eyebrow { color: #FFB8BC; }
.trust-badge {
  display: inline-flex;
  width: auto;
  margin-top: 22px;
  padding: 10px 14px;
  border: 1px solid rgba(234,244,255,0.38);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: var(--ihrm-white);
  font-size: 14px;
  font-weight: 800;
}
.institution-panel {
  border: 1px solid rgba(234,244,255,0.28);
  border-radius: 8px;
  background: rgba(255,255,255,0.10);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
  padding: 20px;
  backdrop-filter: blur(14px);
}
.institution-panel img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  background: var(--ihrm-white);
  border-radius: 8px;
  padding: 8px;
}
.panel-label {
  margin: 24px 0 8px;
  color: #FFB8BC;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
}
.institution-panel h2 {
  margin: 0 0 22px;
  color: var(--ihrm-white);
  font-size: 26px;
}
.panel-lines {
  display: grid;
  gap: 10px;
}
.panel-lines span {
  display: block;
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,0.18);
  font-weight: 700;
}
.section { padding: 86px 0; }
.section-muted,
.section-snapshot,
.section-faq { background: var(--ihrm-soft-blue); }
.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}
.wide-heading { max-width: 980px; }
h1, h2, h3 { line-height: 1.18; letter-spacing: 0; }
h2 {
  margin: 0 0 16px;
  font-size: 40px;
  color: var(--ihrm-navy);
}
h3 {
  margin: 0 0 6px;
  font-size: 21px;
}
p { margin-top: 0; }
.narrow { max-width: 860px; }
.split,
.identity-grid,
.legal-grid,
.contact-cta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 44px;
  align-items: center;
}
.feature-grid,
.people-grid,
.value-grid,
.snapshot-grid,
.leader-grid,
.membership-grid,
.mini-people-grid {
  display: grid;
  gap: 18px;
}
.feature-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.people-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.snapshot-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.leader-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.membership-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 30px; }
.mini-people-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.executive-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.faith-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.feature,
.person-card,
.snapshot-card,
.leader-card,
.founder-card,
.mini-person,
.membership-card,
.faith-card,
.notice-box,
.faq-item,
.contact-form,
.contact-list {
  border: 1px solid var(--ihrm-border);
  border-radius: 8px;
  background: var(--ihrm-white);
}
.feature,
.person-card,
.snapshot-card,
.leader-card,
.founder-card,
.mini-person,
.membership-card,
.faith-card,
.notice-box,
.contact-form,
.contact-list { padding: 24px; }
.feature h2 { font-size: 26px; }
.snapshot-card,
.leader-card,
.founder-card,
.membership-card,
.faith-card {
  box-shadow: var(--shadow-crisp);
}
.snapshot-card {
  position: relative;
  overflow: hidden;
  min-height: 230px;
}
.snapshot-card::before,
.membership-card::before,
.faith-card::before,
.leader-card::before,
.founder-card::before {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  background: var(--ihrm-crimson);
  margin-bottom: 18px;
}
.card-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  border: 1px solid var(--ihrm-border);
  border-radius: 8px;
  color: var(--ihrm-blue);
  background: var(--ihrm-sky);
  font-weight: 900;
}
.snapshot-card h3,
.membership-card h3,
.faith-card h3,
.mini-person h3,
.leader-card h3,
.founder-card h3 {
  color: var(--ihrm-navy);
}
.snapshot-card p,
.membership-card p,
.faith-card p,
.mini-person p {
  color: var(--ihrm-muted);
}
.person-photo {
  display: block;
  width: 84px;
  height: 84px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  margin: 0 0 16px;
  border: 3px solid var(--ihrm-sky);
  background: var(--ihrm-soft-blue);
}
.compact-photo {
  width: 64px;
  height: 64px;
  border-width: 2px;
  margin-bottom: 12px;
}
.founder-card .person-photo {
  width: 104px;
  height: 104px;
  border-color: rgba(255,255,255,0.46);
  background: rgba(255,255,255,0.14);
}
.person-card .person-photo {
  width: 96px;
  height: 96px;
}
.person-card p {
  margin: 0;
  color: var(--ihrm-muted);
  font-weight: 700;
}
.value-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.value-grid span {
  display: block;
  border-left: 4px solid var(--ihrm-crimson);
  background: var(--ihrm-white);
  padding: 14px 16px;
  font-weight: 700;
}
.direct-answer {
  border-bottom: 1px solid var(--ihrm-border);
  background: #fbfcfd;
}
.section-identity {
  background:
    linear-gradient(90deg, var(--ihrm-white) 0%, var(--ihrm-white) 58%, var(--ihrm-sky) 58%, var(--ihrm-sky) 100%);
}
.identity-mark {
  position: relative;
  min-height: 340px;
  border: 1px solid var(--ihrm-border);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(6,27,78,0.94), rgba(0,58,140,0.88)),
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: auto, 44px 44px;
  color: var(--ihrm-white);
  padding: 30px;
  display: grid;
  align-content: center;
  gap: 12px;
  box-shadow: var(--shadow-soft);
}
.identity-mark span {
  display: block;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  font-weight: 800;
}
.section-faith {
  background:
    radial-gradient(circle at 12% 10%, rgba(227, 52, 58, 0.08), transparent 28%),
    linear-gradient(180deg, var(--ihrm-soft-blue), var(--ihrm-white));
}
.faith-layout {
  display: grid;
  gap: 28px;
}
.faith-grid {
  display: grid;
  gap: 18px;
}
.faith-card {
  position: relative;
  min-height: 220px;
}
.section-leadership {
  background: var(--ihrm-white);
}
.leadership-feature {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: 18px;
  align-items: stretch;
}
.founder-card {
  background: linear-gradient(135deg, var(--ihrm-navy), var(--ihrm-blue));
  color: var(--ihrm-white);
}
.founder-card h3 {
  color: var(--ihrm-white);
  font-size: 30px;
}
.founder-card::before { background: var(--ihrm-white); }
.leader-role {
  margin-bottom: 8px;
  color: var(--ihrm-crimson);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.founder-card .leader-role { color: #FFB8BC; }
.subsection-title {
  margin: 32px 0 14px;
  border-left: 4px solid var(--ihrm-crimson);
  padding-left: 14px;
}
.subsection-title h3 { color: var(--ihrm-navy); }
.mini-person {
  min-height: 132px;
  padding: 18px;
}
.section-actions { margin-top: 28px; }
.section-membership {
  background:
    linear-gradient(180deg, var(--ihrm-soft-blue), var(--ihrm-white));
}
.membership-intro {
  max-width: 860px;
}
.limitation-note {
  margin-top: 28px;
  border: 1px solid rgba(227, 52, 58, 0.30);
  border-radius: 8px;
  background: #fff7f7;
  padding: 22px 24px;
}
.limitation-note h3 { color: var(--ihrm-red-dark); }
.legal-band {
  background: linear-gradient(135deg, var(--ihrm-navy), var(--ihrm-blue));
  color: var(--ihrm-white);
}
.legal-band h2 { color: var(--ihrm-white); }
.legal-band .eyebrow { color: #FFB8BC; }
.legal-grid { justify-content: space-between; }
.cta-content {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}
.cta-content p { max-width: 720px; }
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 6px;
  font-weight: 800;
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
}
.btn:hover { text-decoration: none; }
.btn-primary {
  background: var(--ihrm-crimson);
  color: var(--ihrm-white);
  box-shadow: 0 10px 26px rgba(227, 52, 58, 0.22);
}
.btn-primary:hover {
  background: var(--ihrm-red-dark);
  color: var(--ihrm-white);
}
.btn-secondary {
  background: var(--ihrm-white);
  color: var(--ihrm-navy);
  border-color: var(--ihrm-border);
}
.btn-light {
  background: var(--ihrm-white);
  color: var(--ihrm-navy);
}
.btn-ghost {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.42);
  color: var(--ihrm-white);
}
.btn-ghost:hover {
  background: var(--ihrm-white);
  color: var(--ihrm-navy);
}
.rich-text h2 { margin-top: 34px; }
.rich-text h2:first-child { margin-top: 0; }
.faq-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
  align-items: start;
}
.faq-list {
  display: grid;
  gap: 12px;
}
.faq-item { padding: 0; }
.faq-item summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 800;
  color: var(--ihrm-navy);
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--ihrm-crimson);
  font-weight: 900;
}
.faq-item[open] summary::after { content: "-"; }
.faq-item[open] {
  box-shadow: var(--shadow-crisp);
}
.faq-item p {
  padding: 0 20px 18px;
  color: var(--ihrm-muted);
}
.contact-cta {
  background: var(--ihrm-white);
}
.contact-cta-grid {
  border-top: 1px solid var(--ihrm-border);
  border-bottom: 1px solid var(--ihrm-border);
  padding-top: 42px;
  padding-bottom: 42px;
}
.fine-print {
  color: var(--ihrm-muted);
  font-size: 15px;
}
.contact-buttons { justify-content: flex-end; }
.home-page .site-footer {
  margin-top: 0;
}
.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
}
.contact-form {
  display: grid;
  gap: 10px;
}
.contact-form label {
  font-weight: 800;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--ihrm-border);
  border-radius: 6px;
  font: inherit;
}
.contact-form textarea { resize: vertical; }
.form-note {
  color: var(--ihrm-muted);
  font-size: 14px;
}
.site-footer {
  background:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px),
    var(--ihrm-navy);
  background-size: 56px 56px;
  color: #e9eef5;
  padding: 56px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 34px;
}
.site-footer a { color: var(--ihrm-white); }
.footer-links {
  display: grid;
  gap: 8px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.18);
  padding-top: 20px;
  color: #cbd4df;
  font-size: 14px;
}
@media (max-width: 1080px) {
  .header-inner { flex-wrap: wrap; }
  .nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
  }
}
@media (max-width: 960px) {
  .topbar .container {
    align-items: flex-start;
    flex-direction: column;
  }
  .header-inner {
    min-height: 74px;
    flex-wrap: nowrap;
  }
  .header-actions { margin-left: auto; }
  .menu-toggle { display: inline-block; }
  .nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    width: 100%;
    padding: 12px 20px 18px;
    border-top: 1px solid var(--ihrm-border);
    background: var(--ihrm-white);
    box-shadow: var(--shadow-soft);
  }
  .site-header.is-open .nav {
    display: grid;
    gap: 4px;
  }
  .nav a { padding: 12px; }
  .header-cta { display: none; }
  .hero-home { min-height: auto; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 44px;
    padding-bottom: 50px;
  }
  .hero h1 { font-size: 46px; }
  .hero p { font-size: 19px; }
  .section { padding: 66px 0; }
  .section-identity {
    background: var(--ihrm-white);
  }
  .split,
  .identity-grid,
  .legal-grid,
  .contact-cta-grid,
  .feature-grid,
  .people-grid,
  .snapshot-grid,
  .faith-grid,
  .leader-grid,
  .leadership-feature,
  .membership-grid,
  .mini-people-grid,
  .executive-grid,
  .faq-layout,
  .value-grid,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .contact-buttons { justify-content: flex-start; }
}
@media (max-width: 560px) {
  .container { padding: 0 16px; }
  .topbar { display: none; }
  .brand span { max-width: 168px; }
  .brand img { width: 48px; height: 48px; }
  .hero h1 { font-size: 38px; }
  .hero p { font-size: 18px; }
  h2 { font-size: 31px; }
  .nav a { padding: 8px 10px; }
  .button-row .btn { width: 100%; }
  .institution-panel { display: none; }
  .section { padding: 54px 0; }
}
