:root {
  --red: #de3338;
  --red-dark: #af1f39;
  --ink: #2d2d30;
  --muted: #72727a;
  --line: #d9dde6;
  --soft: #f5f6fa;
  --night: #1e2a38;
  --panel: #273444;
  --white: #fff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, Arial, sans-serif;
  letter-spacing: 0;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

@keyframes pageRise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes softPulse {
  0%, 100% { box-shadow: 0 12px 26px rgba(222,51,56,.24); }
  50% { box-shadow: 0 18px 38px rgba(222,51,56,.34); }
}

@keyframes collageSelectPulse {
  0% { transform: translateY(calc(var(--lift, 0) - 8px)) rotate(var(--tilt, 0deg)) scale(1.01); }
  54% { transform: translateY(calc(var(--lift, 0) - 26px)) rotate(var(--tilt, 0deg)) scale(1.045); }
  100% { transform: translateY(calc(var(--lift, 0) - 22px)) rotate(var(--tilt, 0deg)) scale(1.035); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .72s ease, transform .72s cubic-bezier(.2,.8,.2,1);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 24px;
  left: 50%;
  display: grid;
  grid-template-columns: minmax(210px, auto) 1fr auto;
  align-items: center;
  gap: 24px;
  width: calc(100% - 56px);
  transform: translateX(-50%);
}
body.admin-bar .site-header { top: calc(24px + 32px); }
.header-pill {
  min-height: 86px;
  padding: 16px 18px 16px 28px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(255,255,255,.82);
  border-radius: 999px;
  box-shadow: 0 22px 70px rgba(22,28,45,.13);
  backdrop-filter: blur(14px);
}
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--red); font-weight: 800; line-height: .9; }
.brand-logo {
  width: 138px;
  height: auto;
  max-height: 58px;
  object-fit: contain;
}
.footer-brand .brand-logo {
  width: 96px;
  max-height: none;
}
.brand-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 5px solid var(--red);
  border-left-color: transparent;
  border-radius: 50%;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(222,51,56,.16);
  transition: transform .24s ease, box-shadow .24s ease;
}
.brand:hover .brand-icon { transform: rotate(-12deg) scale(1.04); box-shadow: 0 14px 30px rgba(222,51,56,.22); }
.brand span:last-child { font-size: 18px; letter-spacing: .01em; }
.brand small { display: block; margin-top: 6px; font-size: 10px; font-weight: 700; }
.site-nav { display: flex; justify-content: center; gap: clamp(8px, 1.3vw, 22px); font-size: 14px; text-transform: uppercase; }
.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 11px;
  border-radius: 999px;
  font-weight: 600;
  transition: color .18s ease, background .18s ease;
}
.site-nav a:hover {
  color: var(--red);
  background: #fff1f2;
}
.site-nav a[aria-current="page"] {
  color: var(--red);
  background: #fff1f2;
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(222,51,56,.12), 0 10px 24px rgba(222,51,56,.12);
}
.site-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 5px;
  height: 3px;
  border-radius: 999px;
  background: var(--red);
}
.portal-link, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border: 0;
  border-radius: 10px;
  font-weight: 700;
  white-space: nowrap;
}
.portal-link { background: var(--white); border: 1px solid var(--line); }
.header-pill .portal-link {
  min-height: 48px;
  padding: 0 22px;
  color: var(--white);
  background: linear-gradient(135deg, var(--red), #cf2838);
  border-color: rgba(222,51,56,.3);
  border-radius: 14px;
  box-shadow: 0 12px 26px rgba(222,51,56,.24);
  font-size: 15px;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.header-pill .portal-link:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow: 0 16px 34px rgba(222,51,56,.3);
}
.btn-red { color: var(--white); background: var(--red); }
.btn-light { color: var(--ink); background: var(--white); }
.menu-toggle { display: none; }

h1, h2, h3, p { margin-top: 0; }
h1, h2 { line-height: .98; letter-spacing: -0.04em; }
h1 { font-size: clamp(52px, 8vw, 124px); }
h2 { font-size: clamp(38px, 5vw, 76px); }
h3 { font-size: 22px; line-height: 1.1; }
p { line-height: 1.55; }
.section-pad { padding: 100px max(28px, calc((100vw - 1180px) / 2)); }
.center-title { color: var(--white); text-align: center; }
.kicker { color: var(--red); font-weight: 800; }
.text-link { color: var(--red); font-weight: 800; }

.home-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, .92fr) minmax(360px, 565px);
  align-items: end;
  gap: clamp(46px, 8vw, 120px);
  min-height: 760px;
  padding: 150px max(42px, calc((100vw - 1320px) / 2)) 74px;
  overflow: hidden;
  text-align: left;
  color: var(--ink);
  background:
    radial-gradient(ellipse at 70% 15%, rgba(222,51,56,.06), transparent 34%),
    linear-gradient(120deg, rgba(255,255,255,.98), rgba(255,255,255,.92)),
    var(--white);
}
.home-hero::before {
  position: absolute;
  top: -90px;
  right: -180px;
  width: min(820px, 62vw);
  height: 760px;
  content: "";
  opacity: .42;
  background:
    repeating-radial-gradient(ellipse at 12% 30%, transparent 0 22px, rgba(30,42,56,.12) 23px 24px, transparent 25px 46px);
  transform: rotate(-14deg);
  pointer-events: none;
}
.hero-copy {
  position: relative;
  z-index: 1;
  padding-bottom: 78px;
}
.home-hero h1 {
  max-width: 620px;
  margin-bottom: 24px;
  font-size: clamp(54px, 5.8vw, 92px);
}
.hero-copy p {
  max-width: 610px;
  margin: 0 0 30px;
  color: #4e4e54;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
}
.home-hero h1, .home-hero p, .home-hero .btn { animation: pageRise .74s ease both; }
.home-hero p { animation-delay: .08s; }
.home-hero .btn { animation-delay: .16s; }
.hero-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: min(680px, 58vw);
  min-height: 520px;
  margin: 0;
  border-radius: 0;
  object-fit: cover;
  object-position: center;
  animation: pageRise .82s .22s ease both;
}

.logo-row { display: flex; align-items: center; justify-content: center; gap: clamp(26px, 7vw, 110px); color: #adadb2; flex-wrap: wrap; }
.logo-row.section-pad { padding-top: 36px; padding-bottom: 70px; }
.logo-row img {
  width: auto;
  max-width: 118px;
  max-height: 54px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .55;
}
.logo-row strong { color: #9b9ba0; font-size: 24px; }
.red-section { padding: 72px max(28px, calc((100vw - 1040px) / 2)); background: var(--red); }
.card-grid { display: grid; gap: 28px; }
.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.service-card, .resource-card {
  position: relative;
  min-height: 280px;
  padding: 34px;
  background: var(--white);
  border-radius: 22px;
}
.service-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.45);
  box-shadow: 0 24px 54px rgba(130,18,24,.18);
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-card::after {
  content: "";
  position: absolute;
  inset: auto 24px 0;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, transparent, rgba(222,51,56,.85), transparent);
  opacity: .75;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 34px 70px rgba(130,18,24,.24); }
.line-icon {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 6px;
  border: 1px solid rgba(222,51,56,.18);
  border-radius: 14px;
  background: linear-gradient(145deg, #fff5f5, #ffffff);
  color: var(--red);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.85), 0 12px 26px rgba(222,51,56,.13);
}
.line-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card p, .resource-card p { color: var(--muted); }
.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: auto;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
}
.service-card a::after { content: ">"; font-size: 14px; transition: transform .2s ease; }
.service-card a:hover::after { transform: translateX(4px); }

.split-section { display: grid; grid-template-columns: minmax(280px, 1fr) minmax(320px, 460px); gap: 80px; align-items: center; }
.split-section h2 span { color: #8d8d90; display: block; }
.mission-stack { display: grid; gap: 24px; }
.mission-stack article { padding: 28px; border: 1px solid var(--line); border-radius: 18px; }
.collage-strip {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: min(1500px, calc(100% - 72px));
  margin: 98px auto 10px;
  padding: 48px 34px 78px;
  overflow: visible;
  isolation: isolate;
}
.collage-strip::after {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 34px;
  height: 112px;
  content: "";
  background: radial-gradient(ellipse at center, rgba(22,28,45,.24), transparent 70%);
  filter: blur(20px);
  opacity: .38;
  z-index: -1;
}
.collage-strip figure {
  position: relative;
  flex: 0 0 clamp(190px, 17.2vw, 310px);
  min-width: 0;
  margin: 0 clamp(-54px, -3.2vw, -26px);
  overflow: hidden;
  border-radius: 34px;
  cursor: pointer;
  box-shadow: 0 28px 64px rgba(22,28,45,.16);
  transform: translateY(var(--lift, 0)) rotate(var(--tilt, 0deg));
  transform-origin: 50% 85%;
  z-index: var(--stack, 1);
  transition:
    flex-basis .28s cubic-bezier(.2,.8,.2,1),
    box-shadow .32s ease,
    transform .28s cubic-bezier(.2,.8,.2,1);
  will-change: transform, flex-basis;
}
.collage-strip figure:first-child {
  --tilt: -11deg;
  --lift: 42px;
  --stack: 1;
  border-top-left-radius: 82px;
  border-bottom-left-radius: 30px;
}
.collage-strip figure:nth-child(2) { --tilt: -5deg; --lift: 8px; --stack: 2; }
.collage-strip figure:nth-child(3) {
  --tilt: -2deg;
  --lift: -28px;
  --stack: 4;
}
.collage-strip figure:nth-child(4) { --tilt: 2deg; --lift: -42px; --stack: 5; }
.collage-strip figure:nth-child(5) { --tilt: 6deg; --lift: -18px; --stack: 4; }
.collage-strip figure:last-child {
  --tilt: 10deg;
  --lift: 36px;
  --stack: 3;
  border-top-right-radius: 76px;
  border-bottom-right-radius: 30px;
}
.collage-strip figure:hover,
.collage-strip figure:focus-visible {
  box-shadow: 0 36px 82px rgba(22,28,45,.24);
  outline: none;
  transform: translateY(calc(var(--lift, 0) - 12px)) rotate(var(--tilt, 0deg)) scale(1.015);
}
.collage-strip figure::before {
  content: "";
  position: absolute;
  inset: 9px;
  z-index: 2;
  border: 2px solid transparent;
  border-radius: 24px;
  pointer-events: none;
  transition: border-color .22s ease, box-shadow .22s ease;
}
.collage-strip figure::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  width: 13px;
  height: 13px;
  border: 2px solid rgba(255,255,255,.95);
  border-radius: 50%;
  background: rgba(222,51,56,.78);
  opacity: 0;
  transform: scale(.72);
  transition: opacity .2s ease, transform .2s ease;
}
.collage-strip figure:focus-visible::before {
  border-color: rgba(255,255,255,.95);
  box-shadow: 0 0 0 3px rgba(222,51,56,.72);
}
.collage-strip figure.is-selected {
  flex-basis: clamp(215px, 18.8vw, 345px);
  box-shadow: 0 38px 92px rgba(22,28,45,.28);
  transform: translateY(calc(var(--lift, 0) - 22px)) rotate(var(--tilt, 0deg)) scale(1.035);
  z-index: 10;
}
.collage-strip figure.is-activating {
  animation: collageSelectPulse .32s cubic-bezier(.2,.8,.2,1);
}
.collage-strip figure.is-selected::before {
  border-color: rgba(255,255,255,.9);
  box-shadow: inset 0 0 0 1px rgba(222,51,56,.72), 0 0 0 2px rgba(222,51,56,.62);
}
.collage-strip figure.is-selected::after {
  opacity: 1;
  transform: scale(1);
}
.collage-strip figure.is-selected img {
  transform: scale(1.012);
}
.collage-strip img {
  width: 100%;
  height: clamp(250px, 25vw, 388px);
  object-fit: cover;
  transition: transform .28s cubic-bezier(.2,.8,.2,1);
}
.collage-strip figure:nth-child(1) img { filter: grayscale(1); object-position: 42% center; }
.collage-strip figure:nth-child(2) img { object-position: center top; }
.collage-strip figure:nth-child(3) img { object-position: center center; }
.collage-strip figure:nth-child(4) img { object-position: center 42%; }
.collage-strip figure:nth-child(5) img { object-position: center 18%; }
.collage-strip figure:nth-child(6) img { object-position: 45% center; }
.values-section { padding-top: 110px; padding-bottom: 110px; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  color: var(--white);
  max-width: 1080px;
  margin: 0 auto;
}
.values-grid article {
  position: relative;
  min-height: 240px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 24px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 24px 54px rgba(130,18,24,.22);
}
.values-grid article::after {
  content: "";
  position: absolute;
  right: -46px;
  bottom: -54px;
  width: 140px;
  height: 140px;
  border: 1px solid rgba(222,51,56,.16);
  border-radius: 50%;
}
.values-grid span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding: 9px 14px 9px 10px;
  border: 1px solid rgba(222,51,56,.18);
  border-radius: 999px;
  background: #fff5f5;
  color: var(--red);
  font-weight: 700;
}
.values-grid span svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.values-grid p { max-width: 460px; color: rgba(35,37,42,.78); font-size: 18px; line-height: 1.6; }

.section-heading { display: flex; justify-content: space-between; align-items: end; margin-bottom: 34px; }
.article-card { min-height: 470px; padding: 16px 16px 28px; border: 1px solid #c9c9d4; border-radius: 16px; }
.article-card img { width: 100%; aspect-ratio: 1.12; object-fit: cover; margin-bottom: 24px; }
.article-card img.article-logo-image {
  object-fit: contain;
  padding: 32px;
  background: #fff;
  border: 1px solid rgba(217,221,230,.72);
}
.article-card p { color: #c6c6cc; font-size: 13px; margin-top: 60px; }
.article-card a { color: var(--red); font-size: 13px; font-weight: 700; }
.article-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.article-card-link h3 { transition: color .18s ease; }
.article-card:hover .article-card-link h3 { color: var(--red); }
.testimonial { max-width: 760px; margin: 0 auto; padding: 80px 28px 120px; text-align: center; font-size: 26px; font-weight: 800; }

.article-card,
.team-grid article,
.person-card,
.affiliate-grid article,
.year-grid a,
.contact-methods article,
.mission-stack article,
.resource-card {
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.article-card:hover,
.team-grid article:hover,
.person-card:hover,
.affiliate-grid article:hover,
.year-grid a:hover,
.contact-methods article:hover,
.mission-stack article:hover,
.resource-card:hover {
  transform: translateY(-5px);
}

.site-footer { padding: 72px max(28px, calc((100vw - 1200px) / 2)) 34px; background: #f2f2f3; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .7fr .7fr 1.6fr auto; gap: 56px; align-items: start; }
.footer-grid a, .site-footer p { display: block; color: var(--ink); margin: 0 0 12px; }
.footer-grid h4 { margin: 0 0 26px; }
.subscribe { display: grid; grid-template-columns: 1fr auto; gap: 12px; }
.subscribe h4 { grid-column: 1 / -1; }
.subscribe span { position: absolute; width: 1px; height: 1px; overflow: hidden; }
input, textarea, select { width: 100%; border: 0; background: var(--soft); border-radius: 12px; padding: 0 24px; font: inherit; }
.subscribe input { height: 52px; border-radius: 999px; }
.subscribe .btn { border-radius: 999px; }
.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  min-width: 230px;
  color: var(--red);
  font-weight: 800;
}
.socials a {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(222,51,56,.16);
  border-radius: 50%;
  background: #fff;
  color: var(--red);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.socials a:hover {
  transform: translateY(-2px);
  background: #fff1f2;
  box-shadow: 0 12px 26px rgba(222,51,56,.16);
}
.socials svg {
  width: 19px;
  height: 19px;
}
.socials .icon-fill path {
  fill: currentColor;
}
.socials .icon-stroke path,
.socials .icon-stroke rect,
.socials .icon-stroke circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.copyright { margin-top: 52px; padding-top: 28px; border-top: 1px solid #c4c4c8; text-align: center; }

.page-pattern { padding: 190px max(28px, calc((100vw - 1160px) / 2)) 70px; background: radial-gradient(circle at 72% 0, transparent 0 8%, rgba(0,0,0,.055) 8.2% 8.4%, transparent 8.7%) 0 0 / 52px 52px, #fff; text-align: center; }
.creator-hero h1 { max-width: 1000px; margin: 0 auto 28px; font-size: clamp(32px, 4.2vw, 58px); }
.creator-hero p { max-width: 640px; margin: 0 auto 32px; }
.creator-hero img { width: min(980px, 100%); margin: 60px auto 0; border-radius: 48px; }
.faq-band {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px;
  padding: 115px max(28px, calc((100vw - 1160px) / 2));
  color: rgba(255,255,255,.58);
  background: var(--night);
}
.faq-band h2 { color: rgba(255,255,255,.62); font-size: clamp(32px, 3vw, 48px); }
.accordion {
  padding: 34px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  background: var(--panel);
  box-shadow: 0 24px 70px rgba(0,0,0,.14);
}
details { padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.2); }
summary { color: rgba(255,255,255,.72); cursor: pointer; font-weight: 700; }
details p { color: rgba(255,255,255,.58); }
.team-section { text-align: center; }
.team-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 28px; margin-top: 44px; text-align: left; }
.team-grid article {
  display: block;
  min-height: 246px;
  padding: 28px 30px 24px;
  background: #f2f4f8;
  border: 1px solid #d8dee9;
  border-radius: 0;
  box-shadow: none;
  transition: transform .18s ease, border-color .18s ease;
}
.team-grid article:hover {
  transform: translateY(-3px);
  border-color: #cfd6e2;
}
.team-grid span {
  display: inline-grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 22px;
  background: #d7c9ff;
  font-size: 0;
  line-height: 1;
}
.team-grid .profile-icon {
  color: var(--red);
  background: #fff1f2;
  border: 1px solid rgba(222,51,56,.2);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.92), 0 12px 28px rgba(222,51,56,.12);
  font-size: inherit;
}
.team-grid .profile-icon::before { content: none !important; }
.team-grid .profile-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.team-grid span::before { font-size: 29px; }
.team-grid article:nth-child(1) span::before { content: "👩🏾"; }
.team-grid article:nth-child(2) span::before { content: "🧢"; }
.team-grid article:nth-child(3) span::before { content: "👩🏾"; }
.team-grid article:nth-child(4) span::before { content: "👨🏾"; }
.team-grid article:nth-child(2) span { background: #cbeefa; }
.team-grid article:nth-child(3) span { background: #ffd79b; }
.team-grid article:nth-child(4) span { background: #ffb8b8; }
.team-grid h3 {
  margin: 0 0 14px;
  font-size: clamp(19px, 1.5vw, 25px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.team-grid p {
  max-width: 230px;
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.45;
}
.team-grid a {
  display: inline;
  width: fit-content;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 14px;
  font-weight: 500;
  text-decoration: underline;
}
.dark-team { color: var(--white); background: #000; }
.dark-team article { color: var(--white); background: #2f2f2f; border-color: #2f2f2f; }
.dark-team .team-grid p { color: rgba(255,255,255,.72); }
.dark-team .team-grid a { color: var(--white); }
.compact-footer { text-align: center; }

.music-hero { display: grid; min-height: 720px; place-items: center; padding-top: 100px; color: var(--white); background-size: cover; background-position: center top; }
.black-section { color: var(--white); background: #000; text-align: center; }
.black-section h2, .black-section p { max-width: 980px; margin-left: auto; margin-right: auto; }
.use-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1080px;
  margin: 64px auto 140px;
  text-align: left;
  color: var(--white);
}
.use-grid span {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 78px;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255,255,255,.11), rgba(255,255,255,.035));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 18px 42px rgba(0,0,0,.26);
  color: rgba(255,255,255,.9);
  font-weight: 700;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.use-icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.use-icon {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 14px;
  background: linear-gradient(135deg, #ef3b42, #ba1828);
  box-shadow: 0 12px 24px rgba(222,51,56,.24);
  color: var(--white);
}
.use-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.use-grid span:hover {
  transform: translateY(-3px);
  border-color: rgba(222,51,56,.55);
  background: linear-gradient(145deg, rgba(222,51,56,.22), rgba(255,255,255,.06));
}

.page-title h1 { color: var(--ink); font-size: clamp(54px, 6vw, 86px); }
.magazine-grid { margin-top: 40px; }
.post-page {
  padding: 138px 24px 120px;
  background: var(--white);
}
.post-back {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin: 0 auto 22px;
  padding: 0 18px;
  color: var(--red);
  background: #fff5f5;
  border: 1px solid rgba(222,51,56,.18);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}
.post-back::before {
  content: "<";
  margin-right: 8px;
}
.post-hero,
.post-content {
  width: min(1120px, 100%);
  margin: 0 auto;
}
.post-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 44px;
  align-items: center;
  padding: 70px;
  background-color: #fff;
  border: 1px solid rgba(217,221,230,.9);
  border-radius: 34px;
  box-shadow: 0 30px 80px rgba(19,28,42,.08);
  overflow: hidden;
}
.post-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin-bottom: 20px;
  padding: 0 18px;
  color: var(--red);
  background: #fff5f5;
  border: 1px solid rgba(222,51,56,.2);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}
.post-hero h1 {
  max-width: 760px;
  color: var(--ink);
  font-size: clamp(44px, 6vw, 82px);
  line-height: .98;
  letter-spacing: 0;
}
.post-meta {
  margin-top: 24px;
  color: var(--muted);
  font-weight: 700;
}
.post-hero img {
  width: 100%;
  aspect-ratio: 1.1;
  object-fit: contain;
  padding: 24px;
  background: #f7f8fb;
  border: 1px solid rgba(217,221,230,.76);
  border-radius: 22px;
}
.post-content {
  margin-top: 48px;
  padding: 0 min(70px, 5vw);
}
.post-content p {
  max-width: 840px;
  color: #5f6470;
  font-size: clamp(18px, 1.65vw, 22px);
  line-height: 1.75;
}
.post-content h2 {
  max-width: 840px;
  margin: 42px 0 14px;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
}
.post-callout {
  margin-top: 54px;
  padding: 34px;
  color: var(--white);
  background: var(--red);
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(222,51,56,.22);
}
.post-callout h2,
.post-callout p {
  color: var(--white);
}
.post-callout h2 { margin-top: 0; }
.contact-hero h1 { margin-bottom: 70px; font-size: clamp(48px, 5vw, 70px); }
.contact-grid { display: grid; grid-template-columns: 1fr .8fr; gap: 90px; align-items: center; text-align: left; }
.google-map-card {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 500px;
  background: var(--soft);
  border: 1px solid var(--line);
  box-shadow: 0 22px 70px rgba(22, 28, 45, .08);
}
.google-map-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.map-fallback {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 4;
  display: grid;
  gap: 4px;
  max-width: min(360px, calc(100% - 36px));
  padding: 14px 16px;
  color: var(--white);
  background: rgba(222, 51, 56, .94);
  border-radius: 16px;
  box-shadow: 0 16px 36px rgba(82, 12, 22, .22);
  font-size: 13px;
  font-weight: 800;
}
.map-fallback strong {
  display: block;
  margin-top: 5px;
  font-size: 16px;
}
.map-fallback span {
  color: rgba(255,255,255,.82);
  font-size: 11px;
  text-transform: uppercase;
}
.contact-form { display: grid; gap: 20px; }
.contact-form label span { position: absolute; width: 1px; height: 1px; overflow: hidden; }
.contact-form input { height: 64px; }
.contact-form textarea { height: 126px; padding-top: 22px; resize: vertical; }
.form-status {
  min-height: 1.4em;
  color: var(--muted);
  font-size: .95rem;
  font-weight: 700;
}
.contact-methods { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 54px; text-align: left; }
.regional-section { padding: 90px max(28px, calc((100vw - 1180px) / 2)); color: var(--white); background: var(--red-dark); text-align: center; overflow: hidden; }
.regional-map-section h2 { margin-bottom: 14px; color: var(--white); }
.regional-intro {
  max-width: 560px;
  margin: 0 auto 44px;
  color: rgba(255,255,255,.78);
  font-weight: 700;
}
.ghana-office-map {
  position: relative;
  width: min(680px, 100%);
  height: min(840px, 112vw);
  margin: 0 auto;
  overflow: visible;
}
.ghana-map-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  opacity: .92;
  filter: brightness(0) saturate(100%) invert(27%) sepia(81%) saturate(1775%) hue-rotate(320deg) brightness(95%) contrast(93%);
}
.office-pin {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: clamp(160px, 18vw, 230px);
  text-align: center;
  transform: translate(-50%, -17px);
  z-index: 2;
}
.office-pin span {
  position: relative;
  z-index: 2;
  display: grid;
  width: 34px;
  height: 34px;
  margin: 0 auto 8px;
  place-items: center;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(95, 8, 32, .25);
}
.office-pin span::after {
  width: 10px;
  height: 10px;
  content: "";
  background: #e24166;
  border-radius: 50%;
}
.office-pin h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(13px, 1.35vw, 18px);
  font-weight: 600;
  letter-spacing: 0;
}
.office-pin p {
  position: absolute;
  left: 50%;
  top: calc(100% + 10px);
  width: min(250px, 72vw);
  margin: 0 auto;
  padding: 12px 14px;
  color: var(--white);
  background: rgba(130, 18, 44, .9);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  box-shadow: 0 14px 30px rgba(80, 0, 22, .18);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, -8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.office-pin:hover {
  z-index: 8;
}
.office-pin:hover p {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.office-pin.bono { --x: 25%; }
.office-pin.oti { --x: 82%; }
.office-pin.volta { --x: 86%; }
.office-pin.accra { width: clamp(158px, 18vw, 230px); }
.office-pin.central { width: clamp(148px, 17vw, 218px); }
.office-list {
  display: none;
}
.about-hero { color: var(--white); background: var(--red); }
.about-hero div { min-height: 430px; padding: 150px max(36px, calc((100vw - 1240px) / 2)) 70px; display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: end; }
.about-hero h1 { font-size: clamp(40px, 5vw, 78px); }
.about-showcase {
  position: relative;
  background: #fff;
  padding: 0 0 18px;
}
.about-performance-image {
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: cover;
}
.about-shortcuts {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 28px;
  width: min(720px, calc(100% - 36px));
  margin: 34px auto 0;
}
.about-shortcuts a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  min-width: 240px;
  min-height: 54px;
  padding: 0 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 18px 44px rgba(22,28,45,.1);
  font-weight: 800;
}
.about-shortcuts small { color: var(--red); font-size: 10px; text-transform: uppercase; }
.mission-overview { text-align: left; }
.mission-overview h2 { margin-bottom: 44px; }
.mission-overview h2 span { color: var(--red); }
.mission-rows {
  display: grid;
  gap: 24px;
  max-width: 980px;
}
.mission-rows article {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 36px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.mission-rows strong { color: var(--ink); }
.mission-rows p { margin: 0; color: var(--muted); }
.congress-section {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 70px;
  background: #f3f3f4;
}
.congress-section p { max-width: 720px; color: #51545d; }
.mission-tabs { display: grid; grid-template-columns: 180px 1fr; gap: 70px; }
.tab-list { display: grid; gap: 12px; align-content: start; }
.tab-list button, .year-grid a { min-height: 46px; border: 0; border-radius: 8px; color: var(--white); background: var(--red); font-weight: 800; }
.people-section {
  padding: 100px max(28px, calc((100vw - 1240px) / 2));
  background: #eeeeef;
  overflow: hidden;
  text-align: center;
}
.people-section h2 { margin-bottom: 42px; }
.people-section h2:not(:first-child) { margin-top: 86px; }
.people-section h2 span { color: var(--red); }
.placeholder-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 24px;
  width: 100%;
  margin: 0 auto;
}
.person-card {
  min-height: auto;
  padding: 0;
  text-align: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transition: transform .22s ease;
}
.person-card:hover {
  transform: translateY(-4px);
}
.person-avatar {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #bdbdbd;
  border-radius: 7px;
  overflow: hidden;
}
.person-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.person-card h3 {
  margin: 12px 0 0;
  font-size: clamp(18px, 1.6vw, 24px);
  letter-spacing: -0.02em;
}
.management-card {
  display: flex;
  min-height: 190px;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  background:
    radial-gradient(circle at 84% 86%, rgba(222,51,56,.08), transparent 0 30%),
    #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(22,28,45,.08);
}
.management-card h3 {
  margin: 0 0 10px;
  text-align: center;
}
.management-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  text-align: center;
}
.affiliates {
  text-align: center;
  background: #fff;
}
.affiliates h2 {
  margin-bottom: 40px;
  font-size: clamp(42px, 5.4vw, 88px);
}
.affiliate-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin: 0 auto 78px;
}
.affiliate-grid article {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 138px;
  padding: 22px 16px;
  overflow: hidden;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(219,224,233,.9);
  border-radius: 18px;
  box-shadow: 0 16px 44px rgba(22,28,45,.07);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.affiliate-grid article::after {
  position: absolute;
  right: -34px;
  bottom: -38px;
  width: 108px;
  height: 108px;
  content: "";
  background: rgba(222,51,56,.08);
  border-radius: 50%;
}
.affiliate-grid img {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: 150px;
  max-height: 70px;
  object-fit: contain;
}
.affiliate-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(222,51,56,.2);
  box-shadow: 0 26px 76px rgba(22,28,45,.13);
}
.affiliate-grid span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin: 0 auto;
  color: var(--red);
  background: #fff1f2;
  border: 1px solid rgba(222,51,56,.15);
  border-radius: 16px;
  font-weight: 800;
}
.affiliate-grid strong {
  display: block;
  margin-top: 18px;
  color: var(--ink);
  font-size: 26px;
  letter-spacing: -0.03em;
  text-align: center;
}
.affiliate-grid p {
  margin: 6px 0 0;
  color: #777b85;
  font-size: 12px;
  text-align: center;
}
.reports-panel {
  margin-top: 0;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}
.reports-panel h2 {
  color: var(--ink);
  font-size: clamp(42px, 5.4vw, 88px);
  margin-bottom: 42px;
}
.year-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(160px, 1fr));
  gap: 18px 26px;
  width: min(980px, 100%);
  margin: 0 auto;
}
.year-grid a {
  display: inline-flex;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  color: var(--white);
  background: linear-gradient(135deg, var(--red), #cf2838);
  border: 1px solid rgba(222,51,56,.18);
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(222,51,56,.2);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.03em;
  transition: transform .2s ease, filter .2s ease;
}
.year-grid a:hover {
  transform: translateY(-4px);
  filter: brightness(1.04);
}

@media (max-width: 960px) {
  .site-header,
  .header-pill {
    position: fixed;
    top: 10px;
    width: calc(100% - 24px);
    min-height: 68px;
    padding: 10px 12px;
    color: var(--ink);
    background: rgba(255,255,255,.9);
    border: 1px solid rgba(217,221,230,.78);
    border-radius: 24px;
    box-shadow: 0 18px 44px rgba(22, 28, 45, .12);
    backdrop-filter: blur(18px);
  }
  body.admin-bar .site-header { top: calc(10px + 32px); }
  .site-header { grid-template-columns: 1fr auto; gap: 10px; }
  .brand { gap: 8px; min-width: 0; }
  .brand-logo { width: 138px; max-height: 50px; }
  .brand-icon { width: 36px; height: 36px; border-width: 4px; }
  .brand span:last-child { font-size: 13px; }
  .brand small { font-size: 8px; }
  .menu-toggle {
    position: relative;
    display: inline-grid;
    width: 48px;
    height: 48px;
    place-items: center;
    justify-self: end;
    padding: 0;
    color: var(--white);
    background: var(--red);
    border: 0;
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(222, 51, 56, .28);
  }
  .menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    grid-area: 1 / 1;
    background: currentColor;
    border-radius: 99px;
    transition: transform .2s ease, opacity .2s ease;
  }
  .menu-toggle span:nth-child(1) { transform: translateY(-7px); }
  .menu-toggle span:nth-child(3) { transform: translateY(7px); }
  .site-header.is-open .menu-toggle span:nth-child(1) { transform: rotate(45deg); }
  .site-header.is-open .menu-toggle span:nth-child(2) { opacity: 0; }
  .site-header.is-open .menu-toggle span:nth-child(3) { transform: rotate(-45deg); }
  .site-nav, .portal-link { display: none; }
  .site-header.is-open .site-nav {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    justify-content: stretch;
    padding-top: 14px;
  }
  .site-header.is-open .site-nav a {
    min-height: 46px;
    padding: 14px 16px;
    background: #f6f7fb;
    border: 1px solid rgba(217,221,230,.76);
    border-radius: 14px;
    font-size: 12px;
    font-weight: 800;
  }
  .site-header.is-open .portal-link {
    display: flex;
    grid-column: 1 / -1;
    min-height: 50px;
    margin-top: 10px;
    color: var(--white);
    background: var(--red);
    border-color: var(--red);
    border-radius: 16px;
  }
  .home-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 135px 28px 62px;
  }
  .hero-copy { padding-bottom: 0; }
  .hero-photo {
    width: min(560px, 100%);
    height: auto;
    min-height: 0;
    justify-self: center;
    margin-top: 8px;
  }
  .three, .team-grid, .contact-grid, .contact-methods, .footer-grid, .split-section, .faq-band, .mission-tabs, .about-hero div, .mission-rows article, .congress-section { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; gap: 38px; }
  .collage-strip { width: calc(100% - 32px); margin-top: 64px; padding-inline: 0; }
  .about-shortcuts { flex-direction: column; gap: 12px; }
  .about-shortcuts a { min-width: 0; width: 100%; }
  .mission-rows article { gap: 10px; }
  .use-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-bottom: 80px; }
  .subscribe { grid-template-columns: 1fr; }
  .affiliate-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .placeholder-grid { grid-template-columns: repeat(2, 1fr); }
  .people-section { padding-left: 24px; padding-right: 24px; }
  .person-card { min-height: auto; }
  .ghana-office-map { width: min(620px, 100%); height: min(760px, 122vw); }
  .office-pin { width: 130px; }
  .office-pin p { display: none; }
  .office-pin h3 { padding: 4px 7px; background: rgba(255,255,255,.12); border-radius: 999px; font-size: 12px; }
  .office-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 38px;
    text-align: left;
  }
  .office-list article {
    padding: 18px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 10px;
  }
  .office-list h3 { margin-bottom: 8px; font-size: 16px; }
  .office-list p { margin: 0; color: rgba(255,255,255,.82); font-size: 13px; }
}

@media (max-width: 782px) {
  body.admin-bar .site-header { top: calc(10px + 46px); }
}

@media (max-width: 560px) {
  h1 { font-size: 44px; }
  h2 { font-size: 36px; }
  .site-header,
  .header-pill { width: calc(100% - 20px); border-radius: 22px; }
  .site-header.is-open .site-nav { grid-template-columns: 1fr; }
  .section-pad, .red-section, .faq-band, .regional-section { padding: 68px 18px; }
  .page-pattern { padding: 126px 18px 54px; }
  .contact-hero h1 { margin-bottom: 36px; }
  .contact-grid { gap: 28px; }
  .google-map-card { min-height: 360px; border-radius: 22px; }
  .map-fallback {
    right: 14px;
    bottom: 14px;
    left: 14px;
    max-width: none;
    padding: 14px;
    border-radius: 18px;
  }
  .map-fallback strong { font-size: 15px; }
  .contact-methods { gap: 14px; }
  .contact-methods article {
    padding: 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(22,28,45,.06);
  }
  .contact-form {
    padding: 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: 0 14px 38px rgba(22,28,45,.08);
  }
  .contact-form input { height: 54px; }
  .home-hero { padding: 126px 18px 50px; }
  .home-hero::before {
    top: -40px;
    right: -280px;
    width: 680px;
    opacity: .32;
  }
  .home-hero h1 { font-size: 48px; }
  .hero-copy p { margin-left: 0; }
  .collage-strip {
    justify-content: start;
    overflow-x: auto;
    gap: 12px;
    padding-bottom: 22px;
  }
  .collage-strip figure,
  .collage-strip figure:nth-child(3) {
    flex: 0 0 58vw;
    width: auto;
    margin: 0;
    transform: none;
    border-radius: 24px;
  }
  .collage-strip figure:hover,
  .collage-strip figure:focus-visible {
    transform: translateY(-8px) scale(1.01);
  }
  .collage-strip figure.is-selected {
    flex-basis: 62vw;
    transform: translateY(-8px) rotate(0deg) scale(1.015);
  }
  .collage-strip figure:first-child { border-top-left-radius: 38px; }
  .collage-strip figure:last-child { border-top-right-radius: 38px; }
  .collage-strip img { height: 180px; }
  .about-hero div { min-height: auto; padding-top: 126px; }
  .about-showcase { padding-top: 0; }
  .about-performance-image { min-height: 220px; object-fit: cover; }
  .mission-overview h2 { margin-bottom: 28px; }
  .logo-row { justify-content: flex-start; }
  .service-card, .resource-card, .article-card, .accordion { padding: 22px; border-radius: 20px; }
  .people-section { padding: 72px 18px; }
  .people-section h2:not(:first-child) { margin-top: 58px; }
  .person-card { min-height: auto; padding: 0; border-radius: 0; }
  .person-avatar { width: 100%; height: auto; border-radius: 7px; border-width: 0; font-size: inherit; }
  .team-grid { gap: 16px; }
  .team-grid article { min-height: auto; padding: 22px; border-radius: 0; }
  .team-grid h3 { font-size: 24px; }
  .team-grid span { width: 48px; height: 48px; margin-bottom: 18px; }
  .team-grid span::before { font-size: 26px; }
  .affiliate-grid, .use-grid, .placeholder-grid, .year-grid { grid-template-columns: 1fr; }
  .use-grid { gap: 12px; margin: 42px auto 78px; }
  .use-grid span { min-height: 66px; padding: 12px 14px; border-radius: 16px; }
  .use-icon { flex-basis: 38px; width: 38px; height: 38px; border-radius: 12px; }
  .use-icon svg { width: 20px; height: 20px; }
  .affiliate-grid article { min-height: auto; }
  .year-grid a { min-height: 64px; font-size: 24px; }
  .article-card p { margin-top: 28px; }
  .post-page { padding: 116px 18px 76px; }
  .post-hero {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px;
    border-radius: 24px;
  }
  .post-hero h1 { font-size: clamp(40px, 13vw, 56px); }
  .post-hero img { max-height: 320px; }
  .post-content {
    margin-top: 34px;
    padding: 0 4px;
  }
  .post-content p { font-size: 17px; line-height: 1.7; }
  .post-content h2 { margin-top: 34px; font-size: 30px; }
  .post-callout { padding: 26px; border-radius: 22px; }
  .regional-map-section h2 { margin-bottom: 12px; }
  .regional-intro { margin-bottom: 28px; font-size: 14px; }
  .ghana-office-map { width: min(350px, 100%); height: min(520px, 135vw); }
  .office-pin { width: auto; transform: translate(-50%, -10px); }
  .office-pin span { width: 24px; height: 24px; margin-bottom: 0; }
  .office-pin span::after { width: 7px; height: 7px; }
  .office-pin h3 { display: block; max-width: 88px; padding: 3px 6px; font-size: 10px; line-height: 1.1; }
  .office-list { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
