/*
  International Human Rights Movement
  Premium About Page Redesign
  Mobile-first, accessible, SEO-friendly frontend
*/
: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 24px 70px rgba(2, 11, 34, .12);
  --shadow-card: 0 18px 45px rgba(6, 27, 78, .12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: 1180px;
}

* { 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;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button, input, textarea, select { font: inherit; }
:focus-visible { outline: 3px solid rgba(227, 52, 58, .55); outline-offset: 4px; }
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--ihrm-crimson);
  color: white;
  padding: 12px 16px;
  border-radius: 10px;
  z-index: 1000;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }
.container { width: min(calc(100% - 32px), var(--container)); margin-inline: auto; }
.narrow { width: min(calc(100% - 32px), 860px); margin-inline: auto; }

.scroll-progress {
  position: fixed;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--ihrm-crimson), var(--ihrm-gold), var(--ihrm-royal));
  transform-origin: left;
  transform: scaleX(0);
  z-index: 999;
}

.topbar {
  background: var(--ihrm-deep);
  color: rgba(255,255,255,.86);
  font-size: 14px;
  position: relative;
  z-index: 50;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-block: 9px;
  flex-wrap: wrap;
}
.topbar a { display: inline-flex; align-items: center; gap: 8px; }
.topbar a:hover { color: var(--ihrm-gold); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(217, 226, 242, .8);
  box-shadow: 0 10px 26px rgba(2, 11, 34, .05);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 86px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 240px;
}
.brand img {
  width: 66px;
  height: 66px;
  object-fit: contain;
}
.brand span {
  font-weight: 900;
  color: var(--ihrm-navy);
  letter-spacing: -.03em;
  line-height: 1.05;
  max-width: 210px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav a {
  padding: 10px 12px;
  border-radius: 999px;
  color: #2B3A55;
  font-weight: 700;
  font-size: 14px;
  transition: background .2s ease, color .2s ease;
}
.nav a:hover, .nav a[aria-current="page"] {
  background: rgba(227, 52, 58, .10);
  color: var(--ihrm-red-dark);
}
.header-actions { display: flex; align-items: center; gap: 10px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 999px;
  padding: 13px 19px;
  font-weight: 850;
  letter-spacing: -.01em;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  min-height: 46px;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--ihrm-crimson), var(--ihrm-red-dark));
  box-shadow: 0 14px 32px rgba(227, 52, 58, .28);
}
.btn-primary:hover { box-shadow: 0 18px 40px rgba(227, 52, 58, .34); }
.btn-secondary {
  color: var(--ihrm-navy);
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.72);
  box-shadow: 0 16px 34px rgba(2,11,34,.12);
}
.btn-outline {
  color: var(--ihrm-navy);
  background: white;
  border: 1px solid var(--ihrm-border);
}
.btn-light {
  color: var(--ihrm-navy);
  background: white;
  border: 1px solid rgba(255,255,255,.3);
}
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid var(--ihrm-border);
  background: white;
  position: relative;
}
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background: var(--ihrm-navy);
  border-radius: 4px;
  left: 13px;
  transition: .2s ease;
}
.menu-toggle span { top: 22px; }
.menu-toggle span::before { top: -7px; left: 0; }
.menu-toggle span::after { top: 7px; left: 0; }
.menu-toggle[aria-expanded="true"] span { background: transparent; }
.menu-toggle[aria-expanded="true"] span::before { transform: rotate(45deg); top: 0; }
.menu-toggle[aria-expanded="true"] span::after { transform: rotate(-45deg); top: 0; }

.breadcrumb {
  background: var(--ihrm-soft-blue);
  border-bottom: 1px solid var(--ihrm-border);
  font-size: 14px;
  color: var(--ihrm-muted);
}
.breadcrumb .container {
  padding-block: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--ihrm-royal); font-weight: 700; }
.breadcrumb a:hover { color: var(--ihrm-crimson); }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 18%, rgba(227, 52, 58, .24), transparent 28%),
    radial-gradient(circle at 85% 16%, rgba(11, 79, 163, .42), transparent 32%),
    linear-gradient(135deg, var(--ihrm-deep) 0%, var(--ihrm-navy) 48%, #082E75 100%);
  color: white;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .28;
  background-image:
    linear-gradient(rgba(255,255,255,.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.10) 1px, transparent 1px),
    radial-gradient(circle at 70% 40%, transparent 0 34%, rgba(255,255,255,.12) 35% 36%, transparent 37%);
  background-size: 54px 54px, 54px 54px, 580px 580px;
  background-position: center;
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  right: -130px;
  top: 40px;
  box-shadow: inset 0 0 0 52px rgba(255,255,255,.025), inset 0 0 0 96px rgba(255,255,255,.018);
  z-index: -1;
}
.hero-wrap {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 46px;
  align-items: center;
  padding: 92px 0 84px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--ihrm-gold);
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .14em;
}
.eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}
h1, h2, h3 { line-height: 1.08; letter-spacing: -.04em; }
h1 {
  margin: 0;
  font-size: clamp(42px, 7vw, 82px);
  max-width: 830px;
}
.hero-text {
  color: rgba(255,255,255,.84);
  font-size: clamp(17px, 2vw, 21px);
  max-width: 710px;
  margin: 22px 0 0;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.92);
  padding: 10px 13px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  font-size: 14px;
  font-weight: 750;
}
.hero-card {
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.06));
  box-shadow: 0 28px 86px rgba(0,0,0,.34);
  padding: 26px;
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: -70px -50px auto auto;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: rgba(227,52,58,.22);
  filter: blur(10px);
}
.identity-seal {
  display: grid;
  grid-template-columns: 96px 1fr;
  align-items: center;
  gap: 18px;
}
.identity-seal img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  background: white;
  border-radius: 24px;
  padding: 8px;
  box-shadow: 0 18px 42px rgba(0,0,0,.22);
}
.identity-seal h2 {
  font-size: 30px;
  margin: 0 0 6px;
}
.identity-seal p { color: rgba(255,255,255,.76); margin: 0; }
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.metric {
  padding: 18px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(2,11,34,.26);
  border-radius: 20px;
}
.metric strong { display: block; color: white; font-size: 24px; line-height: 1.05; }
.metric span { display: block; color: rgba(255,255,255,.68); margin-top: 5px; font-size: 14px; }
.hero-notice {
  margin-top: 18px;
  padding: 18px;
  border-left: 4px solid var(--ihrm-gold);
  background: rgba(255,255,255,.10);
  border-radius: 16px;
  color: rgba(255,255,255,.82);
}

.section { padding: 88px 0; position: relative; }
.section-soft { background: var(--ihrm-soft-blue); }
.section-navy { background: var(--ihrm-deep); color: white; overflow: hidden; }
.section-heading { max-width: 760px; margin-bottom: 36px; }
.section-heading.center { margin-inline: auto; text-align: center; }
.section-heading.center .eyebrow { justify-content: center; }
.section-heading h2 { margin: 0; font-size: clamp(32px, 4.5vw, 54px); color: var(--ihrm-navy); }
.section-navy .section-heading h2 { color: white; }
.section-heading p { margin: 16px 0 0; color: var(--ihrm-muted); font-size: 18px; }
.section-navy .section-heading p { color: rgba(255,255,255,.72); }

.answer-panel {
  margin-top: -40px;
  position: relative;
  z-index: 3;
}
.answer-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  align-items: start;
  background: white;
  border: 1px solid var(--ihrm-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  padding: clamp(22px, 4vw, 34px);
}
.icon-chip {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--ihrm-navy), var(--ihrm-royal));
  color: white;
  font-size: 30px;
  box-shadow: 0 18px 36px rgba(6,27,78,.20);
}
.answer-card h2 { margin: 0 0 10px; font-size: 28px; color: var(--ihrm-navy); }
.answer-card p { margin: 0; color: var(--ihrm-muted); }

.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: white;
  border: 1px solid var(--ihrm-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}
.card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--ihrm-crimson), var(--ihrm-gold), var(--ihrm-royal));
  opacity: .82;
}
.card .icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--ihrm-sky);
  color: var(--ihrm-royal);
  font-size: 24px;
  margin-bottom: 18px;
}
.card h3 { font-size: 22px; color: var(--ihrm-navy); margin: 0 0 10px; }
.card p { color: var(--ihrm-muted); margin: 0; }

.story-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 34px;
  align-items: stretch;
}
.story-visual {
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(6,27,78,.92), rgba(0,58,140,.86)),
    radial-gradient(circle at 30% 20%, rgba(215,168,75,.28), transparent 34%);
  color: white;
  padding: 34px;
  min-height: 480px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.story-visual::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  right: -95px;
  top: -80px;
  box-shadow: inset 0 0 0 42px rgba(255,255,255,.026), inset 0 0 0 82px rgba(255,255,255,.018);
}
.story-visual-inner { position: relative; z-index: 1; height: 100%; display: flex; flex-direction: column; justify-content: space-between; }
.story-logo {
  width: 128px;
  height: 128px;
  object-fit: contain;
  background: white;
  border-radius: 30px;
  padding: 10px;
  box-shadow: 0 24px 58px rgba(0,0,0,.28);
}
.story-visual h3 { font-size: 38px; margin: 30px 0 10px; color: white; }
.story-visual p { color: rgba(255,255,255,.78); max-width: 420px; }
.story-visual .stamp {
  display: inline-flex;
  width: fit-content;
  padding: 10px 14px;
  border-radius: 999px;
  color: white;
  background: rgba(227,52,58,.88);
  font-weight: 850;
}
.story-content {
  display: grid;
  gap: 18px;
}
.feature-row {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px;
  background: white;
  border: 1px solid var(--ihrm-border);
  border-radius: 22px;
  box-shadow: 0 12px 32px rgba(6,27,78,.08);
}
.feature-row .mini-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: white;
  background: linear-gradient(135deg, var(--ihrm-crimson), var(--ihrm-red-dark));
  font-size: 23px;
}
.feature-row:nth-child(even) .mini-icon { background: linear-gradient(135deg, var(--ihrm-blue), var(--ihrm-royal)); }
.feature-row h3 { margin: 0 0 8px; color: var(--ihrm-navy); font-size: 22px; }
.feature-row p { margin: 0; color: var(--ihrm-muted); }

.tribute {
  position: relative;
  padding: clamp(28px, 5vw, 48px);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(245,249,255,.96));
  border: 1px solid var(--ihrm-border);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.tribute::before {
  content: "In Memoriam";
  position: absolute;
  right: -18px;
  top: 24px;
  transform: rotate(8deg);
  color: rgba(6,27,78,.05);
  font-size: clamp(54px, 9vw, 118px);
  font-weight: 950;
  letter-spacing: -.06em;
  pointer-events: none;
}
.tribute-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 32px;
  position: relative;
  z-index: 1;
}
.tribute-photo {
  min-height: 280px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 35% 20%, rgba(215,168,75,.30), transparent 40%),
    linear-gradient(150deg, var(--ihrm-navy), var(--ihrm-royal));
  border: 1px solid rgba(215,168,75,.35);
  display: grid;
  place-items: center;
  color: white;
  text-align: center;
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.tribute-photo::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
}
.tribute-photo strong { font-size: 54px; line-height: 1; display: block; }
.tribute-photo span { display: block; margin-top: 10px; color: rgba(255,255,255,.78); }
.tribute h2 { margin: 0 0 16px; color: var(--ihrm-navy); font-size: clamp(32px, 5vw, 52px); }
.tribute p { color: #344054; font-size: 18px; margin: 0 0 16px; }
.tribute .condolence {
  margin-top: 20px;
  padding: 18px;
  border-left: 4px solid var(--ihrm-crimson);
  border-radius: 16px;
  background: white;
  color: var(--ihrm-navy);
  font-weight: 750;
}

.value-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.value-item {
  display: flex;
  gap: 14px;
  align-items: start;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  padding: 20px;
  border-radius: 20px;
}
.value-item .check {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--ihrm-crimson);
  color: white;
  font-size: 15px;
  font-weight: 900;
}
.value-item h3 { margin: 0 0 6px; color: white; font-size: 20px; }
.value-item p { margin: 0; color: rgba(255,255,255,.70); }

.notice-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 24px; align-items: stretch; }
.legal-panel {
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--ihrm-navy), var(--ihrm-blue));
  color: white;
  padding: clamp(26px, 4vw, 40px);
  box-shadow: var(--shadow-soft);
}
.legal-panel h2 { margin: 0 0 12px; font-size: clamp(30px, 4vw, 46px); }
.legal-panel p { color: rgba(255,255,255,.76); }
.legal-list { display: grid; gap: 12px; margin-top: 24px; }
.legal-list div {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}
.contact-card {
  border-radius: var(--radius-xl);
  background: white;
  border: 1px solid var(--ihrm-border);
  box-shadow: var(--shadow-card);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.contact-card h3 { margin: 0 0 14px; color: var(--ihrm-navy); font-size: 30px; }
.contact-line {
  display: flex;
  align-items: start;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid var(--ihrm-border);
  color: var(--ihrm-muted);
}
.contact-line strong { display: block; color: var(--ihrm-navy); }
.contact-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.copy-btn {
  background: var(--ihrm-soft-blue);
  border: 1px solid var(--ihrm-border);
  color: var(--ihrm-navy);
  padding: 10px 13px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
}
.copy-status { font-size: 14px; color: var(--ihrm-muted); min-height: 22px; }

.leadership-preview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.person-mini {
  background: white;
  border: 1px solid var(--ihrm-border);
  border-radius: 22px;
  padding: 20px;
  box-shadow: var(--shadow-card);
}
.avatar {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--ihrm-navy), var(--ihrm-royal));
  color: white;
  font-weight: 950;
  margin-bottom: 14px;
}
.person-mini h3 { margin: 0 0 6px; color: var(--ihrm-navy); font-size: 20px; }
.person-mini p { margin: 0; color: var(--ihrm-muted); font-size: 14px; }

.faq-wrap { display: grid; gap: 14px; }
.faq-item {
  background: white;
  border: 1px solid var(--ihrm-border);
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(6,27,78,.07);
  overflow: hidden;
}
.faq-trigger {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: transparent;
  border: 0;
  padding: 22px 24px;
  cursor: pointer;
  color: var(--ihrm-navy);
  font-weight: 900;
}
.faq-trigger::after {
  content: "+";
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--ihrm-soft-blue);
  color: var(--ihrm-crimson);
  flex: 0 0 auto;
}
.faq-trigger[aria-expanded="true"]::after { content: "−"; }
.faq-panel { padding: 0 24px 22px; color: var(--ihrm-muted); }
[hidden] { display: none !important; }

.cta-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: clamp(32px, 5vw, 54px);
  background:
    radial-gradient(circle at 12% 18%, rgba(227,52,58,.22), transparent 28%),
    linear-gradient(135deg, var(--ihrm-navy), var(--ihrm-deep));
  color: white;
  box-shadow: var(--shadow-soft);
}
.cta-panel::after {
  content: "";
  position: absolute;
  width: 330px;
  height: 330px;
  right: -110px;
  top: -90px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
}
.cta-panel h2 { margin: 0; font-size: clamp(32px, 4.8vw, 58px); }
.cta-panel p { color: rgba(255,255,255,.76); max-width: 780px; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; position: relative; z-index: 1; }

.site-footer {
  background: var(--ihrm-deep);
  color: white;
  padding: 68px 0 28px;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -160px;
  top: 30px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 50%;
  box-shadow: inset 0 0 0 60px rgba(255,255,255,.018), inset 0 0 0 110px rgba(255,255,255,.012);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  gap: 34px;
  position: relative;
  z-index: 1;
}
.footer-logo { width: 86px; height: 86px; object-fit: contain; background: white; border-radius: 22px; padding: 7px; margin-bottom: 16px; }
.site-footer h2, .site-footer h3 { margin: 0 0 14px; color: white; }
.site-footer p { color: rgba(255,255,255,.72); margin: 0 0 12px; }
.footer-links { display: grid; gap: 9px; }
.footer-links a, .site-footer a { color: rgba(255,255,255,.78); }
.footer-links a:hover, .site-footer a:hover { color: var(--ihrm-gold); }
.footer-bottom {
  position: relative;
  z-index: 1;
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 14px; }
.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 0;
  background: var(--ihrm-crimson);
  color: white;
  font-size: 22px;
  box-shadow: 0 18px 36px rgba(227,52,58,.32);
  cursor: pointer;
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: .2s ease;
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }

@media (max-width: 1060px) {
  .header-inner { min-height: 78px; }
  .nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 118px;
    background: white;
    border: 1px solid var(--ihrm-border);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    padding: 12px;
    display: grid;
    gap: 4px;
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: .2s ease;
  }
  .nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav a { border-radius: 14px; padding: 12px 14px; }
  .menu-toggle { display: inline-flex; }
  .header-cta { display: none; }
  .hero-wrap, .story-grid, .notice-grid { grid-template-columns: 1fr; }
  .hero-wrap { padding: 70px 0 60px; }
  .hero-card { max-width: 620px; }
  .grid-4, .leadership-preview { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .topbar .container { display: grid; justify-content: stretch; gap: 4px; }
  .brand { min-width: 0; }
  .brand img { width: 54px; height: 54px; }
  .brand span { font-size: 14px; max-width: 150px; }
  .nav { top: 125px; }
  .container, .narrow { width: min(calc(100% - 24px), var(--container)); }
  .hero-wrap { padding: 54px 0 48px; }
  .identity-seal { grid-template-columns: 1fr; }
  .hero-metrics, .grid-4, .value-list, .leadership-preview, .footer-grid { grid-template-columns: 1fr; }
  .answer-card { grid-template-columns: 1fr; }
  .tribute-layout { grid-template-columns: 1fr; }
  .tribute-photo { min-height: 220px; }
  .section { padding: 62px 0; }
  .story-visual { min-height: auto; }
  .footer-bottom { display: grid; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  html { scroll-behavior: auto; }
}
