/* ==========================================================================
   Raw Potential Canberra — design tokens
   Palette drawn from the brand wordmark:
   yellow #FBBA28 · coal #362D32 (warm near-black) · paper #FAF6EF
   ========================================================================== */

:root {
  --yellow: #fbba28;
  --yellow-deep: #db9c0e;
  --coal: #362d32;
  --coal-deep: #2a2227;
  --ink: #241f22;
  --paper: #faf6ef;
  --muted: #695f64;

  --font-display: "Anton", "Arial Narrow", Impact, sans-serif;
  --font-body: "Inter Tight", -apple-system, "Segoe UI", Roboto, sans-serif;

  --size-hero: clamp(2.9rem, 8.5vw, 6.25rem);
  --size-h2: clamp(2rem, 5.5vw, 3.75rem);
  --size-h3: clamp(1.3rem, 2.6vw, 1.6rem);
  --size-body: 1.0625rem;

  --space-section: clamp(4rem, 10vw, 7.5rem);
  --gutter: clamp(1.25rem, 5vw, 3rem);
  --max-w: 72rem;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
body, h1, h2, h3, p, ul, dl, dd, figure, blockquote { margin: 0; }
img { max-width: 100%; height: auto; display: block; }
ul { padding: 0; list-style: none; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--font-body);
  font-size: var(--size-body);
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

/* ---------- type ---------- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.14;
  letter-spacing: 0.005em;
}

h2 { font-size: var(--size-h2); max-width: 22ch; }
h3 { font-size: var(--size-h3); letter-spacing: 0.02em; }

p { max-width: 62ch; }

.eyebrow {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}
.eyebrow--on-dark { color: var(--yellow); }

/* Signature: the highlighter mark, echoing the hand-made wordmark */
.mark {
  background: var(--yellow);
  color: var(--ink);
  padding: 0.01em 0.12em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* ---------- buttons & links ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.8rem 1.6rem;
  border: 2px solid transparent;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn--yellow {
  background: var(--yellow);
  color: var(--ink);
}
.btn--yellow:hover { background: var(--yellow-deep); }
.btn--ghost {
  border-color: currentColor;
  color: var(--ink);
}
.hero .btn--ghost:hover { background: var(--ink); color: var(--paper); }
.btn--lg { padding: 1rem 2rem; font-size: 1.15rem; }
.btn--block { display: block; text-align: center; }

.text-link {
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 3px solid var(--yellow);
  padding-bottom: 2px;
}
.text-link:hover { background: var(--yellow); }

:focus-visible {
  outline: 3px solid var(--yellow-deep);
  outline-offset: 3px;
}
.donate :focus-visible,
.need-help :focus-visible,
.site-footer :focus-visible {
  outline-color: var(--yellow);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 100;
  background: var(--ink);
  color: var(--paper);
  padding: 0.75rem 1.25rem;
  text-decoration: none;
}
.skip-link:focus { left: 0; }

/* ---------- crisis bar ---------- */
.crisis-bar {
  background: var(--coal);
  color: var(--paper);
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1rem;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0.6rem var(--gutter);
  font-size: 0.9rem;
}
.crisis-bar p { max-width: none; }
.crisis-bar__phone {
  color: var(--yellow);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid var(--yellow);
  min-height: 24px;
}
.crisis-bar__phone:hover { border-bottom-width: 3px; }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 3px solid var(--ink);
}
.site-header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0.65rem var(--gutter);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.site-header__logo img { width: 96px; height: auto; }
.site-header__actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-nav ul {
  display: flex;
  gap: 1.75rem;
  align-items: center;
}
.site-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  text-decoration: none;
  padding: 0.5rem 0;
}
.site-nav a:hover { box-shadow: inset 0 -3px 0 var(--yellow); }
.site-nav__help a {
  color: var(--coal);
  font-weight: 700;
  border: 2px solid var(--ink);
  padding: 0.35rem 0.85rem;
}
.site-nav__help a:hover {
  background: var(--ink);
  color: var(--paper);
  box-shadow: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: 2px solid var(--ink);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 3px;
  background: var(--ink);
}

/* ---------- hero ---------- */
.hero {
  border-bottom: 3px solid var(--ink);
}
.hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-section) var(--gutter) 0;
  display: grid;
  gap: 2.5rem;
}
.hero__title {
  font-size: var(--size-hero);
  max-width: 12ch;
  margin-bottom: 1.5rem;
}
.hero__lead {
  font-size: 1.2rem;
  max-width: 52ch;
  margin-bottom: 2rem;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1rem;
}
.hero__note {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 600;
}
.hero__media {
  position: relative;
  margin-top: 1rem;
}
.hero__media::before {
  content: "";
  position: absolute;
  inset: 1.25rem -0.9rem -0.9rem 1.25rem;
  background: var(--yellow);
  z-index: 0;
}
.hero__media .video-frame {
  position: relative;
  z-index: 1;
}

/* ---------- video embeds ---------- */
.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--coal);
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- fact band ---------- */
.video-poster { display: block; overflow: hidden; }
.video-poster img { display: block; width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; }
.video-poster__play {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: #ffe600;
  color: #151515;
  font-size: 1rem;
  font-weight: 700;
  white-space: nowrap;
}
.video-poster:hover .video-poster__play { background: #fff; }
.video-poster:focus-visible { outline: 4px solid #ffe600; outline-offset: 5px; }
.fact-band {
  background: var(--yellow);
  border-bottom: 3px solid var(--ink);
  padding: 1.5rem var(--gutter);
}
.fact-band p {
  max-width: var(--max-w);
  margin: 0 auto;
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  font-weight: 500;
  color: var(--ink);
}
.fact-band strong {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.35em;
  letter-spacing: 0.02em;
  padding-right: 0.15em;
}

/* ---------- need help ---------- */
.need-help {
  background: var(--coal);
  color: var(--paper);
}
.need-help__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-section) var(--gutter);
  display: grid;
  gap: 3rem;
}
.need-help h2 { margin-bottom: 1.25rem; }
.need-help p { color: #e8e2da; }
.need-help__list {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.6rem;
}
.need-help__list li {
  padding-left: 1.4rem;
  position: relative;
  color: #e8e2da;
}
.need-help__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.7rem;
  height: 0.28rem;
  background: var(--yellow);
}
.need-help__contact {
  display: grid;
  gap: 1rem;
  align-content: start;
}
.contact-tile {
  display: block;
  border: 2px solid var(--paper);
  padding: 1.1rem 1.3rem;
  text-decoration: none;
  color: var(--paper);
  transition: background-color 0.15s ease, color 0.15s ease;
}
a.contact-tile:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--ink);
}
.contact-tile__label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 0.2rem;
}
.contact-tile__value {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  word-break: break-word;
}
.contact-tile__value--email {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: none;
  letter-spacing: 0.01em;
}
.contact-tile--static { border-style: dashed; }
.need-help__refer {
  font-size: 0.9rem;
  color: #bfb7ba !important;
}
.need-help__refer a {
  color: var(--yellow);
  font-weight: 600;
}

/* ---------- what we do ---------- */
.what-we-do {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-section) var(--gutter);
}
.section-head {
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}
.section-head h2 { margin-top: 0; }
.section-head__sub {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.feature {
  display: grid;
  gap: 2rem;
  align-items: center;
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
}
.feature__media {
  position: relative;
}
.feature__media::before {
  content: "";
  position: absolute;
  inset: -0.9rem 1.25rem 1.25rem -0.9rem;
  background: var(--yellow);
}
.feature__media img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.feature__copy h3 { margin-bottom: 1rem; }
.feature__copy p + p { margin-top: 1rem; }

.program-grid {
  display: grid;
  gap: 1.5rem;
}
.program {
  border-top: 3px solid var(--ink);
  padding-top: 1.25rem;
}
.program img {
  aspect-ratio: 3 / 2;
  width: 100%;
  object-fit: cover;
  margin-bottom: 1.25rem;
}
.program h3 { margin-bottom: 0.6rem; }
.program p { font-size: 0.98rem; }

/* ---------- impact ---------- */
.impact {
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  background: var(--paper);
}
.impact__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-section) var(--gutter);
  display: grid;
  gap: 3rem;
}
.impact__list {
  display: grid;
  gap: 2rem;
}
.impact__item {
  border-left: 4px solid var(--yellow);
  padding-left: 1.25rem;
}
.impact__item dt {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.impact__item dd {
  color: var(--muted);
  font-size: 0.98rem;
  max-width: 34ch;
}

/* ---------- watch (documentary) ---------- */
.watch {
  border-top: 3px solid var(--ink);
}
.watch__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-section) var(--gutter);
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
.watch h2 { margin-bottom: 1.25rem; }

/* ---------- ambassador ---------- */
.ambassador {
  background: var(--coal);
  color: var(--paper);
}
.ambassador__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 6rem) var(--gutter);
  display: grid;
  gap: 2rem;
  align-items: end;
}
.ambassador__name {
  font-size: clamp(2.75rem, 7vw, 5rem);
  max-width: none;
}
.ambassador__role {
  margin-top: 1rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--yellow);
}
.ambassador__copy {
  color: #e8e2da;
  font-size: 1.1rem;
  max-width: 44ch;
  margin-top: 1.5rem;
}
.ambassador__media {
  position: relative;
  max-width: 420px;
}
.ambassador__media::before {
  content: "";
  position: absolute;
  inset: 1rem -0.75rem -0.75rem 1rem;
  background: var(--yellow);
}
.ambassador__media img {
  position: relative;
  width: 100%;
}

/* ---------- news & events ---------- */
.news {
  border-top: 3px solid var(--ink);
}
.news__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 5rem) var(--gutter);
  display: grid;
  gap: 2rem;
  align-items: center;
}
.news h2 { margin-bottom: 0.75rem; }
.news__sub { color: var(--muted); }
.news .btn--ghost { justify-self: start; }

/* ---------- donate ---------- */
.donate {
  background: var(--coal);
  color: var(--paper);
}
.donate__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-section) var(--gutter);
  display: grid;
  gap: 3rem;
}
.donate h2 { margin-bottom: 1.25rem; }
.donate__copy p { color: #e8e2da; }
.donate__copy p + p { margin-top: 1rem; }
.donate__copy strong { color: var(--yellow); }
.donate__alt a { color: var(--yellow); }
.donate__panel {
  background: var(--coal-deep);
  border: 2px solid var(--yellow);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  align-self: start;
}
.donate__panel-label {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1.25rem;
}
.donate__amounts {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.donate__amounts .amount { grid-column: span 2; }
.donate__amounts .amount:nth-child(4),
.donate__amounts .amount:nth-child(5) { grid-column: span 3; }
.amount {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  border: 2px solid var(--paper);
  color: var(--paper);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.03em;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.amount:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--ink);
}
.donate__amounts .amount--custom {
  grid-column: 1 / -1;
  font-size: 1.05rem;
  text-transform: uppercase;
}
.donate__fineprint {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #bfb7ba;
}

/* ---------- humans being human (donation counter) ---------- */
.humans {
  border-bottom: 3px solid var(--ink);
}
.humans__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 5rem) var(--gutter);
  display: grid;
  gap: 1.5rem;
  align-items: end;
}
.humans__count {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 7rem);
  line-height: 1;
  margin-top: 2.25rem;
}
.humans__number {
  font-variant-numeric: tabular-nums;
}
.humans__label {
  font-size: 1.1rem;
  font-weight: 500;
  max-width: 34ch;
  padding-bottom: 0.5rem;
}
.humans__label a {
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 3px solid var(--yellow);
  padding-bottom: 2px;
}
.humans__label a:hover { background: var(--yellow); }

/* ---------- voices ---------- */
.voices__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-section) var(--gutter);
}
.voices .eyebrow { margin-bottom: 2rem; }
.voices__grid {
  display: grid;
  gap: 2rem;
}
.voices blockquote p {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.6vw, 1.6rem);
  text-transform: uppercase;
  line-height: 1.15;
  letter-spacing: 0.01em;
  margin-bottom: 0.9rem;
}
.voices cite {
  font-style: normal;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
}

/* ---------- get involved ---------- */
.get-involved {
  border-top: 3px solid var(--ink);
}
.get-involved__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-section) var(--gutter);
}
.involve-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: clamp(3rem, 7vw, 5rem);
}
.involve {
  border-top: 3px solid var(--ink);
  padding-top: 1.25rem;
}
.involve h3 { margin-bottom: 0.6rem; }
.involve p { font-size: 0.98rem; margin-bottom: 1.1rem; }

/* ---------- sponsor shoutout ---------- */
.shoutout {
  background: var(--yellow);
  border-top: 3px solid var(--ink);
  color: var(--ink);
}
.shoutout__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-section) var(--gutter);
  display: grid;
  gap: 3rem;
}
.eyebrow--on-yellow { color: var(--ink); opacity: 0.72; }
.mark--flip {
  background: var(--ink);
  color: var(--yellow);
}
.shoutout h2 { margin-bottom: 1.25rem; }
.shoutout__sub {
  font-weight: 500;
  max-width: 46ch;
}
.shoutout__cta {
  margin-top: 1.75rem;
  font-weight: 600;
}
.shoutout__cta a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 3px solid var(--ink);
  padding-bottom: 2px;
}
.shoutout__cta a:hover {
  background: var(--ink);
  color: var(--yellow);
}
.shoutout :focus-visible { outline-color: var(--ink); }
.shoutout__logos {
  align-self: center;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}
.shoutout__logos li {
  background: var(--paper);
  border: 2px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.4rem 1.25rem;
  min-height: 118px;
}
.shoutout__logos img {
  max-height: 66px;
  width: auto;
  max-width: 100%;
  mix-blend-mode: multiply; /* sinks white logo backgrounds into the paper tile */
}

/* ---------- footer ---------- */
.site-footer {
  background: var(--coal);
  color: var(--paper);
}
.site-footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-section) var(--gutter) 3rem;
  display: grid;
  gap: 2.5rem;
}
.site-footer__brand img { width: 130px; margin-bottom: 1.25rem; }
.site-footer__brand p {
  color: #e8e2da;
  font-size: 0.95rem;
  max-width: 40ch;
}
.site-footer__aka {
  margin-top: 0.75rem;
  font-size: 0.85rem !important;
  color: #bfb7ba !important;
}
.site-footer__block h3 {
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  color: var(--yellow);
  margin-bottom: 1rem;
}
.site-footer__block ul {
  display: grid;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: #e8e2da;
}
.site-footer__block a {
  color: var(--paper);
  text-decoration: none;
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 1px;
}
.site-footer__block a:hover { color: var(--yellow); }
.site-footer__donate { margin-top: 1.25rem; }
.site-footer__legal {
  border-top: 1px solid #514750;
  padding: 1.25rem var(--gutter);
}
.site-footer__legal p {
  max-width: var(--max-w);
  margin: 0 auto;
  font-size: 0.82rem;
  color: #bfb7ba;
}

/* ---------- reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ==========================================================================
   Layout: tablet and up
   ========================================================================== */
@media (min-width: 700px) {
  .hero__inner {
    grid-template-columns: 1.15fr 1fr;
    align-items: end;
    padding-bottom: var(--space-section);
    gap: 3rem;
  }
  .hero__media { margin-top: 0; }

  .need-help__inner { grid-template-columns: 1.2fr 1fr; gap: 4rem; }
  .feature { grid-template-columns: 1fr 1.2fr; gap: 3.5rem; }
  .program-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 2rem; }
  .impact__inner { grid-template-columns: 1fr 1.1fr; }
  .impact__list { grid-template-columns: 1fr 1fr; gap: 2.5rem 2rem; }
  .watch__inner { grid-template-columns: 1fr 1.5fr; gap: 3.5rem; }
  .ambassador__inner { grid-template-columns: 1.3fr 1fr; gap: 4rem; align-items: center; }
  .ambassador__media { justify-self: end; }
  .news__inner { grid-template-columns: 1fr auto; gap: 3rem; }
  .news .btn--ghost { justify-self: end; }
  .donate__inner { grid-template-columns: 1.1fr 1fr; gap: 4rem; }
  .voices__grid { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
  .involve-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
  .shoutout__inner { grid-template-columns: 1fr 1.1fr; gap: 4rem; }
  .humans__inner { grid-template-columns: auto 1fr; gap: 3.5rem; }
  .site-footer__inner { grid-template-columns: 1.6fr 1fr 1fr 0.8fr; gap: 2rem; }
}

/* ==========================================================================
   Navigation: mobile
   ========================================================================== */
@media (max-width: 899px) {
  .nav-toggle { display: flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 3px solid var(--ink);
  }
  .site-nav.is-open { display: block; }
  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem var(--gutter) 1.25rem;
  }
  .site-nav a {
    display: block;
    padding: 0.85rem 0;
    font-size: 1.05rem;
  }
  .site-nav__help { margin-top: 0.75rem; }
  .site-nav__help a { text-align: center; }
}
