
:root {
  --ihrm-navy: #061B4E;
  --ihrm-deep: #020B22;
  --ihrm-blue: #003A8C;
  --ihrm-royal: #0B4FA3;
  --ihrm-crimson: #E3343A;
  --ihrm-red-dark: #B91C2B;
  --ihrm-gold: #D7A84B;
  --ihrm-sky: #EAF4FF;
  --ihrm-soft-blue: #F5F9FF;
  --ihrm-ink: #101828;
  --ihrm-muted: #667085;
  --ihrm-border: #D9E2F2;
  --ihrm-white: #FFFFFF;
  --shadow-soft: 0 18px 50px rgba(3, 16, 54, .12);
  --shadow-deep: 0 30px 80px rgba(2, 11, 34, .36);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: 1180px;
  --transition: 220ms ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ihrm-ink);
  background: var(--ihrm-white);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font: inherit; }

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 9999;
  background: var(--ihrm-crimson);
  color: white;
  padding: 12px 18px;
  border-radius: 12px;
  transition: top var(--transition);
}
.skip-link:focus { top: 16px; outline: 3px solid white; }

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ihrm-crimson), var(--ihrm-gold));
  z-index: 9999;
}
.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.narrow { width: min(900px, calc(100% - 40px)); margin-inline: auto; }

.topbar {
  background: #010718;
  color: rgba(255,255,255,.86);
  font-size: 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 42px;
}
.topbar a { display: inline-flex; align-items: center; gap: 8px; }
.topbar a:hover { color: white; }
.topbar a:first-child::before,
.topbar a:nth-child(2)::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ihrm-crimson);
  box-shadow: 0 0 0 4px rgba(227, 52, 58, .16);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid rgba(217,226,242,.78);
  box-shadow: 0 12px 40px rgba(2,11,34,.06);
}
.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 260px;
  color: var(--ihrm-navy);
  font-weight: 800;
  letter-spacing: -.02em;
}
.brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(2, 11, 34, .15));
}
.brand span { max-width: 225px; line-height: 1.12; }
.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.nav a {
  position: relative;
  padding: 12px 10px;
  color: #344054;
  font-weight: 700;
  font-size: 14px;
  border-radius: 999px;
}
.nav a:hover,
.nav a[aria-current="page"] { color: var(--ihrm-navy); background: var(--ihrm-soft-blue); }
.nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 7px;
  height: 2px;
  border-radius: 999px;
  background: var(--ihrm-crimson);
}
.header-actions { display: flex; align-items: center; gap: 12px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 13px 21px;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.1;
  border: 1px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--ihrm-crimson), var(--ihrm-red-dark));
  box-shadow: 0 18px 36px rgba(227, 52, 58, .25);
}
.btn-primary:hover { box-shadow: 0 22px 45px rgba(227, 52, 58, .34); }
.btn-secondary {
  color: var(--ihrm-navy);
  background: white;
  border-color: var(--ihrm-border);
  box-shadow: 0 14px 34px rgba(2, 11, 34, .08);
}
.btn-secondary:hover { border-color: rgba(11, 79, 163, .35); }
.btn-ghost {
  color: white;
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.25);
}
.btn-ghost:hover { background: rgba(255,255,255,.15); }
.btn-light { color: var(--ihrm-navy); background: white; }
.button-row { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--ihrm-border);
  border-radius: 14px;
  background: white;
  padding: 0;
  position: relative;
}
.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--ihrm-navy);
  border-radius: 999px;
  transition: transform var(--transition), opacity var(--transition), top var(--transition);
}
.menu-toggle span { top: 22px; }
.menu-toggle::before { top: 15px; }
.menu-toggle::after { top: 29px; }
.menu-toggle[aria-expanded="true"] span { opacity: 0; }
.menu-toggle[aria-expanded="true"]::before { top: 22px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"]::after { top: 22px; transform: rotate(-45deg); }

.breadcrumb {
  background: linear-gradient(90deg, rgba(234,244,255,.84), rgba(255,255,255,.92));
  border-bottom: 1px solid var(--ihrm-border);
  font-size: 14px;
}
.breadcrumb .container { min-height: 44px; display: flex; align-items: center; gap: 9px; color: var(--ihrm-muted); }
.breadcrumb a { color: var(--ihrm-navy); font-weight: 700; }

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 12% 12%, rgba(227,52,58,.22), transparent 30%),
    radial-gradient(circle at 85% 20%, rgba(11,79,163,.38), transparent 31%),
    linear-gradient(135deg, var(--ihrm-deep), var(--ihrm-navy) 55%, #071338);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 65% 30%, black, transparent 75%);
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute;
  right: -150px;
  bottom: -220px;
  width: 680px;
  height: 680px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 50%;
  box-shadow: inset 0 0 0 48px rgba(255,255,255,.022), inset 0 0 0 95px rgba(227,52,58,.025);
  z-index: -1;
}
.hero-home { min-height: 760px; display: flex; align-items: center; padding: 90px 0 80px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(320px, .72fr); gap: 44px; align-items: center; }
.hero-copy h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 7vw, 86px);
  line-height: .96;
  letter-spacing: -.045em;
  max-width: 850px;
}
.hero-copy > p:not(.eyebrow):not(.trust-badge) {
  max-width: 720px;
  color: rgba(255,255,255,.82);
  font-size: clamp(17px, 2vw, 21px);
  margin: 28px 0;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--ihrm-crimson);
  font-size: 12px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 900;
}
.hero .eyebrow { color: #ffdadc; }
.eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}
.trust-badge {
  display: inline-flex;
  margin: 24px 0 0;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(215,168,75,.38);
  color: #ffe7b0;
  background: rgba(215,168,75,.10);
  font-weight: 800;
  font-size: 14px;
}
.hero-field { position: absolute; inset: 0; pointer-events: none; z-index: -1; }
.orbital {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.14);
}
.orbital-one { width: 520px; height: 520px; left: -160px; top: 110px; }
.orbital-two { width: 360px; height: 360px; right: 8%; top: 12%; border-color: rgba(227,52,58,.18); }
.network-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--ihrm-crimson);
  border-radius: 50%;
  box-shadow: 0 0 0 10px rgba(227,52,58,.12);
}
.dot-one { left: 14%; top: 28%; }
.dot-two { right: 21%; top: 24%; background: var(--ihrm-gold); box-shadow: 0 0 0 10px rgba(215,168,75,.12); }
.dot-three { right: 15%; bottom: 22%; }

.institution-panel {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 30px;
  background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.055));
  border: 1px solid rgba(255,255,255,.2);
  box-shadow: var(--shadow-deep);
  backdrop-filter: blur(22px);
  overflow: hidden;
}
.institution-panel::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(215,168,75,.28);
  border-radius: 26px;
  pointer-events: none;
}
.institution-panel img {
  width: 112px;
  height: 112px;
  object-fit: contain;
  margin-bottom: 22px;
  filter: drop-shadow(0 16px 24px rgba(0,0,0,.3));
}
.panel-label { color: #ffdadc; font-weight: 900; text-transform: uppercase; letter-spacing: .16em; font-size: 12px; margin: 0 0 12px; }
.institution-panel h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.08;
  letter-spacing: -.03em;
}
.panel-lines { display: grid; gap: 10px; margin-top: 28px; }
.panel-lines span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.88);
  font-weight: 800;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}
.panel-lines span::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--ihrm-crimson); }

.section { padding: 90px 0; position: relative; }
.section-heading { max-width: 760px; margin-bottom: 38px; }
.section-heading.center { text-align: center; margin-inline: auto; }
.section-heading h2,
.identity-grid h2,
.membership-intro h2,
.legal-grid h2,
.contact-cta h2 {
  margin: 0 0 16px;
  color: var(--ihrm-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 1.04;
  letter-spacing: -.035em;
}
.section-heading p,
.identity-grid p,
.membership-intro p,
.contact-cta p { color: var(--ihrm-muted); font-size: 17px; }
.section-muted, .section-snapshot, .section-faq { background: linear-gradient(180deg, var(--ihrm-soft-blue), white); }
.snapshot-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.snapshot-card,
.faith-card,
.membership-card,
.leader-card,
.mini-person,
.faq-item {
  position: relative;
  overflow: hidden;
  background: white;
  border: 1px solid var(--ihrm-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.snapshot-card { padding: 28px; min-height: 230px; }
.snapshot-card::before,
.membership-card::before,
.leader-card::before,
.mini-person::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--ihrm-crimson), var(--ihrm-gold), var(--ihrm-royal));
}
.card-kicker {
  display: inline-flex;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  align-items: center;
  justify-content: center;
  background: var(--ihrm-navy);
  color: white;
  font-weight: 900;
  margin-bottom: 20px;
}
.snapshot-card h3,
.faith-card h3,
.membership-card h3,
.leader-card h3,
.mini-person h3 { color: var(--ihrm-navy); line-height: 1.15; margin: 0 0 10px; font-size: 21px; }
.snapshot-card p,
.faith-card p,
.membership-card p,
.leader-card p,
.mini-person p { color: var(--ihrm-muted); margin: 0; }

.section-identity { background: white; overflow: hidden; }
.identity-grid { display: grid; grid-template-columns: minmax(0, 1fr) 420px; align-items: center; gap: 52px; }
.identity-mark {
  min-height: 430px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 20% 20%, rgba(227,52,58,.18), transparent 28%),
    radial-gradient(circle at 80% 80%, rgba(11,79,163,.18), transparent 28%),
    linear-gradient(135deg, var(--ihrm-navy), var(--ihrm-deep));
  box-shadow: var(--shadow-deep);
  padding: 28px;
  display: grid;
  align-content: end;
  gap: 12px;
  position: relative;
  overflow: hidden;
}
.identity-mark::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: -80px;
  top: -60px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  box-shadow: inset 0 0 0 50px rgba(255,255,255,.03), inset 0 0 0 100px rgba(255,255,255,.02);
}
.identity-mark span {
  position: relative;
  display: inline-flex;
  color: white;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,.095);
  border: 1px solid rgba(255,255,255,.15);
  font-weight: 900;
}

.section-faith {
  background:
    linear-gradient(180deg, #fff, var(--ihrm-soft-blue));
}
.faith-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 34px; align-items: start; }
.faith-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.faith-card { padding: 26px; }
.faith-card h3 { display: flex; gap: 12px; align-items: center; }
.faith-card h3::before { content: ""; width: 12px; height: 12px; border-radius: 50%; background: var(--ihrm-crimson); box-shadow: 0 0 0 8px rgba(227,52,58,.10); flex: 0 0 auto; }

.section-tribute {
  background: linear-gradient(135deg, var(--ihrm-deep), var(--ihrm-navy));
  color: white;
  overflow: hidden;
}
.section-tribute::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(227,52,58,.22), transparent 35%), radial-gradient(circle at 85% 70%, rgba(215,168,75,.14), transparent 28%);
  pointer-events: none;
}
.tribute-grid { position: relative; display: grid; grid-template-columns: .76fr 1.24fr; gap: 34px; align-items: stretch; }
.tribute-seal {
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  padding: 28px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  min-height: 380px;
}
.tribute-seal img { width: 140px; height: 140px; object-fit: contain; margin-bottom: 20px; filter: drop-shadow(0 20px 28px rgba(0,0,0,.32)); }
.tribute-seal span { color: #ffe7b0; font-weight: 900; text-transform: uppercase; letter-spacing: .15em; font-size: 12px; }
.tribute-content {
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  padding: clamp(28px, 5vw, 50px);
  box-shadow: var(--shadow-deep);
}
.tribute-content h2 { color: white; font-family: Georgia, "Times New Roman", serif; font-size: clamp(34px, 5vw, 58px); line-height: 1.05; margin: 0 0 18px; letter-spacing: -.035em; }
.tribute-content p { color: rgba(255,255,255,.82); font-size: 17px; }
.tribute-content strong { color: #ffe7b0; }

.section-leadership { background: var(--ihrm-deep); color: white; overflow: hidden; }
.section-leadership::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(circle at 50% 30%, black, transparent 80%);
}
.section-leadership .container { position: relative; }
.section-leadership .section-heading h2,
.section-leadership .section-heading p { color: white; }
.wide-heading { max-width: 980px; }
.leadership-feature { display: grid; grid-template-columns: 360px 1fr; gap: 24px; align-items: stretch; }
.founder-card {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 28px;
  background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.055));
  border: 1px solid rgba(215,168,75,.28);
  box-shadow: var(--shadow-deep);
  overflow: hidden;
}
.founder-card::before {
  content: "Founder Spotlight";
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(215,168,75,.12);
  color: #ffe7b0;
  border: 1px solid rgba(215,168,75,.28);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 900;
  margin-bottom: 20px;
}
.person-photo {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.3);
  box-shadow: 0 18px 34px rgba(0,0,0,.25);
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--ihrm-navy), var(--ihrm-royal));
}
.person-initials {
  width: 96px;
  height: 96px;
  border-radius: 26px;
  display: grid;
  place-items: center;
  color: white;
  background: linear-gradient(135deg, var(--ihrm-blue), var(--ihrm-crimson));
  font-weight: 900;
  font-size: 28px;
  letter-spacing: .04em;
  margin-bottom: 18px;
  border: 1px solid rgba(255,255,255,.24);
  box-shadow: 0 18px 34px rgba(0,0,0,.22);
}
.founder-card h3 { color: white; font-size: 29px; line-height: 1.08; margin: 6px 0 0; font-family: Georgia, "Times New Roman", serif; }
.leader-role { color: #ffe7b0; text-transform: uppercase; letter-spacing: .12em; font-weight: 900; font-size: 12px; margin: 0; }
.leader-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.leader-card { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.14); padding: 26px; color: white; }
.leader-card h3 { color: white; font-family: Georgia, "Times New Roman", serif; font-size: 25px; }
.leader-card p { color: #ffe7b0; }
.subsection-title { margin: 42px 0 18px; display: flex; align-items: center; gap: 14px; }
.subsection-title::before { content: ""; width: 46px; height: 2px; background: var(--ihrm-crimson); border-radius: 999px; }
.subsection-title h3 { color: white; font-size: 24px; margin: 0; }
.mini-people-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.mini-person { padding: 20px; background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.13); color: white; min-height: 176px; }
.mini-person h3 { color: white; font-size: 18px; }
.mini-person p { color: rgba(255,255,255,.7); font-size: 14px; }
.compact-photo, .mini-person .person-initials { width: 62px; height: 62px; border-radius: 18px; font-size: 18px; margin-bottom: 14px; }
.section-actions { justify-content: center; margin-top: 34px; }

.section-membership { background: linear-gradient(180deg, white, var(--ihrm-soft-blue)); }
.membership-intro { max-width: 850px; margin-bottom: 34px; }
.membership-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.membership-card { padding: 26px; }
.limitation-note {
  margin-top: 24px;
  padding: 28px;
  border-radius: var(--radius-lg);
  color: var(--ihrm-navy);
  background: linear-gradient(135deg, rgba(215,168,75,.16), rgba(234,244,255,.88));
  border: 1px solid rgba(215,168,75,.36);
}
.limitation-note h3 { margin: 0 0 8px; font-size: 22px; }
.limitation-note p { margin: 0; color: #344054; }

.legal-band {
  background: linear-gradient(135deg, var(--ihrm-navy), var(--ihrm-deep));
  color: white;
  overflow: hidden;
}
.legal-band::before {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  right: -160px;
  top: -150px;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: inset 0 0 0 52px rgba(255,255,255,.035);
}
.legal-grid { position: relative; display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; }
.legal-grid h2 { color: white; }
.legal-grid p { color: rgba(255,255,255,.78); max-width: 800px; }

.faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 36px; align-items: start; }
.faq-list { display: grid; gap: 14px; }
.faq-item { padding: 0; }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 54px 20px 22px;
  color: var(--ihrm-navy);
  font-weight: 900;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 18px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ihrm-soft-blue);
  color: var(--ihrm-crimson);
  font-size: 20px;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p { padding: 0 22px 22px; margin: 0; color: var(--ihrm-muted); }

.contact-cta {
  background: white;
}
.contact-cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: clamp(28px, 5vw, 52px);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--ihrm-soft-blue), white);
  border: 1px solid var(--ihrm-border);
  box-shadow: var(--shadow-soft);
}
.fine-print { font-size: 14px !important; }
.contact-buttons { justify-content: flex-end; }

.site-footer {
  position: relative;
  overflow: hidden;
  color: white;
  background: #010718;
  padding: 70px 0 30px;
}
.site-footer::before {
  content: "";
  position: absolute;
  right: -180px;
  top: -220px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  box-shadow: inset 0 0 0 68px rgba(255,255,255,.02);
}
.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr .9fr .9fr;
  gap: 36px;
}
.site-footer h2,
.site-footer h3 { margin: 0 0 16px; color: white; }
.site-footer p,
.site-footer a { color: rgba(255,255,255,.75); }
.site-footer a:hover { color: white; }
.footer-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 18px; }
.footer-bottom {
  position: relative;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: grid;
  gap: 8px;
}
.footer-bottom p { margin: 0; font-size: 14px; }
.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.5);
  color: white;
  background: var(--ihrm-crimson);
  box-shadow: 0 20px 40px rgba(2,11,34,.25);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity var(--transition), transform var(--transition);
  z-index: 980;
}
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }

:focus-visible { outline: 3px solid rgba(227,52,58,.45); outline-offset: 3px; }
@media (max-width: 1120px) {
  .nav { position: fixed; inset: 130px 20px auto 20px; display: none; flex-direction: column; align-items: stretch; padding: 18px; background: white; border: 1px solid var(--ihrm-border); border-radius: 22px; box-shadow: var(--shadow-deep); }
  .nav.is-open { display: flex; }
  .nav a { padding: 14px 16px; }
  .menu-toggle { display: inline-block; }
  .header-cta { display: none; }
  .brand { min-width: auto; }
  .brand span { max-width: 180px; }
  .hero-grid, .identity-grid, .faith-layout, .tribute-grid, .leadership-feature, .faq-layout, .legal-grid, .contact-cta-grid { grid-template-columns: 1fr; }
  .snapshot-grid { grid-template-columns: repeat(2, 1fr); }
  .mini-people-grid { grid-template-columns: repeat(3, 1fr); }
  .leader-grid, .membership-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-buttons { justify-content: flex-start; }
}
@media (max-width: 720px) {
  .container, .narrow { width: min(100% - 28px, var(--container)); }
  .topbar .container { flex-direction: column; align-items: flex-start; justify-content: center; padding: 9px 0; gap: 6px; }
  .header-inner { min-height: 76px; }
  .brand img { width: 52px; height: 52px; }
  .brand span { font-size: 14px; max-width: 150px; }
  .nav { inset: 118px 14px auto 14px; }
  .hero-home { min-height: auto; padding: 68px 0; }
  .hero-copy h1 { font-size: clamp(42px, 13vw, 60px); }
  .section { padding: 64px 0; }
  .snapshot-grid, .faith-grid, .leader-grid, .mini-people-grid, .membership-grid, .footer-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .institution-panel, .identity-mark, .tribute-seal, .tribute-content, .contact-cta-grid { border-radius: 24px; }
  .button-row { align-items: stretch; }
  .button-row .btn { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
