/* =========================================================================
   NNEDI OKAFOR
   Editorial personality platform. Mobile-first. No build step.
   ========================================================================= */

/* ---------- Display typeface, self-hosted (Lora, SIL Open Font License) --- */
@font-face {
  font-family: "Lora Var";
  src: url("fonts/lora-latin-var.woff") format("woff-variations"),
       url("fonts/lora-latin-var.woff") format("woff");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lora Var";
  src: url("fonts/lora-latin-var-italic.woff") format("woff-variations"),
       url("fonts/lora-latin-var-italic.woff") format("woff");
  font-weight: 400 700;
  font-style: italic;
  font-display: swap;
}

/* ---------- Tokens ------------------------------------------------------- */
:root {
  --plum: #2B173F;
  --plum-deep: #201030;
  --ivory: #F8F3EA;
  --ivory-warm: #F2EBDE;
  --white: #FFFFFF;
  --ink: #262326;
  --ink-soft: #3A3438;
  --ink-muted: #6B6259;
  --grey: #D8D2C8;
  --grey-line: rgba(43, 23, 63, .14);
  --orange: #D85C24;          /* brand accent — rules and marks */
  --orange-cta: #BE4C19;      /* buttons */
  --orange-cta-hover: #A63F14;
  --orange-text: #B54718;     /* orange text on light surfaces */
  --orange-light: #E8794A;    /* orange on plum */
  --ivory-soft: #D6D0C6;
  --ivory-muted: #B8B1A7;

  --font-serif: "Lora Var", Lora, "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --container: 1180px;
  --gutter: clamp(1.25rem, 5vw, 3rem);
  --header-h: 60px;
  --section-y: clamp(3.5rem, 8.5vw, 7.5rem);

  --ease: cubic-bezier(.22, .61, .36, 1);
}
@media (min-width: 960px) { :root { --header-h: 74px; } }

/* ---------- Reset -------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 14px);
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  letter-spacing: -0.003em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-wrap: break-word;
}

img, picture, svg { display: block; max-width: 100%; }
img { height: auto; }

h1, h2, h3 {
  font-family: var(--font-serif);
  color: var(--plum);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.012em;
  margin: 0 0 .65em;
  text-wrap: balance;
}
p { margin: 0 0 1.2rem; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a { color: var(--plum); text-underline-offset: 3px; text-decoration-thickness: 1px; }
button { font: inherit; }

/* ---------- Accessibility ------------------------------------------------ */
:focus-visible {
  outline: 2px solid var(--orange-cta);
  outline-offset: 3px;
  border-radius: 1px;
}
.feature :focus-visible,
.method :focus-visible,
.site-footer :focus-visible { outline-color: var(--orange-light); }

.skip-link {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -120%);
  z-index: 200;
  background: var(--plum);
  color: var(--ivory);
  padding: .8rem 1.4rem;
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus { transform: translate(-50%, 0); }

/* ---------- Shared layout ------------------------------------------------ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: var(--section-y); }

.label {
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .21em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0 0 1.35rem;
  line-height: 1.6;
}
.label::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 2px;
  margin-right: .9rem;
  vertical-align: .26em;
  background: var(--orange);
}
.label-light { color: var(--ivory-muted); }

.tm {
  font-size: .52em;
  font-weight: 500;
  letter-spacing: 0;
  vertical-align: .62em;
  margin-left: .05em;
}
.label .tm, .footer-base .tm { font-size: .8em; vertical-align: .32em; }

/* ---------- Buttons and editorial links ---------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: .9rem 1.9rem;
  border: 1px solid var(--orange-cta);
  border-radius: 2px;
  background: var(--orange-cta);
  color: var(--white);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .155em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .28s var(--ease), border-color .28s var(--ease);
}
.btn:hover { background: var(--orange-cta-hover); border-color: var(--orange-cta-hover); }

.btn-outline {
  background: transparent;
  border-color: var(--plum);
  color: var(--plum);
}
.btn-outline:hover { background: var(--plum); border-color: var(--plum); color: var(--ivory); }

.link-arrow {
  display: inline-flex;
  align-items: baseline;
  gap: .6rem;
  padding: .4rem 0;
  border: 0;
  background: none;
  color: var(--orange-text);
  font-family: var(--font-sans);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .01em;
  text-decoration: none;
  cursor: pointer;
}
.link-arrow span:last-child { transition: transform .3s var(--ease); }
.link-arrow:hover span:last-child { transform: translateX(5px); }
.link-arrow:hover .link-arrow-label,
.link-arrow:hover { text-decoration: underline; }
.link-arrow-light { color: var(--orange-light); }

/* ---------- Masthead ----------------------------------------------------- */
.masthead {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 243, 234, .94);
  border-bottom: 1px solid var(--grey-line);
  transition: box-shadow .3s var(--ease);
}
@supports (backdrop-filter: blur(12px)) or (-webkit-backdrop-filter: blur(12px)) {
  .masthead {
    background: rgba(248, 243, 234, .84);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    backdrop-filter: saturate(180%) blur(14px);
  }
}
.masthead.is-scrolled { box-shadow: 0 1px 22px -12px rgba(43, 23, 63, .5); }

.masthead-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.wordmark {
  font-family: var(--font-serif);
  font-size: .93rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--plum);
  text-decoration: none;
  white-space: nowrap;
}
.wordmark:hover { color: var(--orange-cta-hover); }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-right: -10px;
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--plum);
}
.nav-toggle-bars { display: block; width: 24px; }
.nav-toggle-bars span {
  display: block;
  height: 1.5px;
  background: currentColor;
  transition: transform .3s var(--ease);
}
.nav-toggle-bars span:first-child { margin-bottom: 7px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:first-child { transform: translateY(4.25px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:last-child { transform: translateY(-4.25px) rotate(-45deg); }

.nav {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--ivory);
  border-bottom: 1px solid var(--grey-line);
  box-shadow: 0 26px 40px -30px rgba(43, 23, 63, .55);
  padding: .25rem var(--gutter) 1.4rem;
}
.nav.is-open { display: block; }

.nav-list li { border-bottom: 1px solid var(--grey-line); }
.nav-link {
  position: relative;
  display: block;
  min-height: 48px;
  padding: .95rem 0;
  color: var(--plum);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: color .2s var(--ease), padding-left .2s var(--ease);
}
.nav-link:hover { color: var(--orange-cta-hover); }
.nav-link[aria-current="true"] {
  color: var(--orange-cta-hover);
  font-weight: 600;
  padding-left: 1.1rem;
}
.nav-link[aria-current="true"]::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 3px;
  height: 1.05em;
  transform: translateY(-50%);
  background: var(--orange);
}

.nav-highlight {
  display: block;
  margin-top: 1.2rem;
  padding: 1rem;
  min-height: 52px;
  background: var(--orange-cta);
  color: var(--white);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
}
.nav-highlight:hover { background: var(--orange-cta-hover); }

@media (min-width: 960px) {
  .nav-toggle { display: none; }
  .nav {
    display: flex;
    position: static;
    align-items: center;
    gap: clamp(1.3rem, 2.2vw, 2.2rem);
    padding: 0;
    background: none;
    border: 0;
    box-shadow: none;
  }
  .nav-list { display: flex; align-items: center; gap: clamp(1.2rem, 2vw, 2rem); }
  .nav-list li { border: 0; }
  .nav-link,
  .nav-link[aria-current="true"] {
    display: inline-block;
    min-height: 0;
    padding: .3rem 0;
    font-size: .88rem;
    font-weight: 500;
    color: var(--ink-muted);
    white-space: nowrap;
  }
  .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1.5px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s var(--ease);
  }
  .nav-link[aria-current="true"]::before { display: none; }
  .nav-link:hover, .nav-link[aria-current="true"] { color: var(--plum); }
  .nav-link:hover::after, .nav-link[aria-current="true"]::after { transform: scaleX(1); }

  .nav-highlight {
    display: inline-block;
    margin-top: 0;
    padding: .28rem 0;
    min-height: 0;
    background: none;
    color: var(--orange-cta-hover);
    font-size: .75rem;
    letter-spacing: .17em;
    border-bottom: 1.5px solid var(--orange);
  }
  .nav-highlight:hover { background: none; color: var(--plum); border-bottom-color: var(--plum); }
}

/* ---------- Hero --------------------------------------------------------- */
.hero {
  display: grid;
  background: var(--ivory);
  border-bottom: 1px solid var(--grey-line);
}

.hero-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  max-height: 480px;
  max-height: min(52svh, 480px);
  object-fit: cover;
  object-position: 50% 6%;
  background: var(--grey);
}

.hero-intro { padding: clamp(1.85rem, 6vw, 2.75rem) var(--gutter) clamp(1.35rem, 4.5vw, 2rem); }
.hero-body  { padding: clamp(1.6rem, 5vw, 2.25rem) var(--gutter) clamp(2.5rem, 8vw, 3.5rem); }

.kicker {
  text-wrap: balance;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0 0 1.1rem;
  line-height: 1.6;
}
.kicker span { margin-inline: .18em; color: var(--orange-text); }

.nameplate {
  font-size: clamp(3.4rem, 18.8px + 10vw, 6.2rem);
  font-weight: 700;
  line-height: .87;
  letter-spacing: -0.016em;
  text-transform: uppercase;
  color: var(--plum);
  margin: 0 0 1.5rem;
  text-wrap: nowrap;
}
.nameplate span { display: block; }

.hero-statement {
  position: relative;
  padding-top: 1.6rem;
  border-top: 1px solid var(--grey);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.42rem, 1.02rem + 1.75vw, 2.3rem);
  line-height: 1.28;
  letter-spacing: -0.008em;
  color: var(--plum);
  margin-bottom: 1.5rem;
  max-width: 17em;
  text-wrap: balance;
}

.hero-support {
  font-size: 1.02rem;
  line-height: 1.68;
  color: var(--ink-soft);
  max-width: 33rem;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .9rem 2rem;
}
.hero-actions .btn { flex: 1 1 100%; }

@media (min-width: 520px) {
  .hero-actions .btn { flex: 0 1 auto; }
}

@media (min-width: 960px) {
  .hero {
    grid-template-columns:
      minmax(var(--gutter), 1fr)
      minmax(0, 620px)
      minmax(0, 44%);
    grid-template-rows: auto auto;
    min-height: 86vh;
    min-height: 86svh;
  }
  .hero-intro {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
    padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 4vw, 3.5rem) clamp(1.25rem, 2vw, 1.75rem) 0;
  }
  .hero-body {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
    padding: 0 clamp(2rem, 4vw, 3.5rem) clamp(3rem, 6vw, 5rem) 0;
  }
  .hero-media {
    grid-column: 3;
    grid-row: 1 / span 2;
    align-self: stretch;
  }
  .hero-media picture { display: block; height: 100%; }
  .hero-media img {
    height: 100%;
    min-height: 520px;
    max-height: none;
    aspect-ratio: auto;
    object-position: 50% 12%;
  }
  .nameplate { font-size: clamp(4rem, 17px + 7.8vw, 7.3rem); }
}

/* ---------- Manifesto ---------------------------------------------------- */
.manifesto { background: var(--white); }
.manifesto-inner {
  position: relative;
  max-width: 50rem;
  margin-inline: auto;
  padding-top: clamp(1.5rem, 4vw, 2.5rem);
}
.quote-mark {
  position: absolute;
  top: clamp(-1.2rem, -1vw, -.4rem);
  left: -.06em;
  font-family: var(--font-serif);
  font-size: clamp(5rem, 12vw, 9rem);
  line-height: 1;
  color: rgba(43, 23, 63, .1);
  pointer-events: none;
  user-select: none;
}
.manifesto-heading {
  position: relative;
  font-size: clamp(1.85rem, 1.2rem + 2.9vw, 3.4rem);
  line-height: 1.14;
  margin-bottom: 2rem;
}
.manifesto-body p {
  font-size: clamp(1.03rem, 1rem + .22vw, 1.15rem);
  color: var(--ink-soft);
  max-width: 38rem;
}
.manifesto-body .lead-line {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.2rem, 1.05rem + .78vw, 1.65rem);
  line-height: 1.45;
  color: var(--plum);
  margin-block: 1.75rem;
}
.signature {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.5rem, 1.25rem + 1.1vw, 2.1rem);
  color: var(--plum);
  margin-top: 2.25rem;
}

/* ---------- Featured idea (dark) ----------------------------------------- */
.feature { background: var(--plum); color: var(--ivory-soft); }
.feature h2 { color: var(--ivory); }

.feature-grid { display: grid; gap: clamp(1.75rem, 4vw, 3.5rem); }
.feature-heading {
  font-size: clamp(1.95rem, 1.25rem + 3.2vw, 3.9rem);
  line-height: 1.08;
  letter-spacing: -0.018em;
  margin: 0;
}
.feature-aside p { color: var(--ivory-soft); max-width: 30rem; }
.feature-aside p:last-child { margin-bottom: 0; }

.reflection {
  margin-top: clamp(2.25rem, 5vw, 3.5rem);
  padding-top: clamp(1.75rem, 4vw, 2.5rem);
  border-top: 1px solid rgba(248, 243, 234, .22);
}
.reflection[hidden] { display: none; }
.reflection-inner { max-width: 42rem; margin-left: auto; }
.reflection p { color: var(--ivory-soft); font-size: 1.02rem; }
.reflection em { color: var(--ivory); font-style: italic; }

@media (min-width: 900px) {
  .feature-grid { grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr); align-items: end; }
}

/* ---------- The Peace Check ---------------------------------------------- */
.peace { background: var(--ivory-warm); }
.peace-grid { display: grid; gap: clamp(2.5rem, 6vw, 4rem); }
.peace h2 { font-size: clamp(1.8rem, 1.25rem + 2.4vw, 3rem); margin-bottom: 1.1rem; }
.peace-body { font-size: clamp(1.04rem, 1rem + .28vw, 1.18rem); color: var(--ink-soft); max-width: 32rem; }
.peace-aside {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.05rem, .98rem + .42vw, 1.28rem);
  line-height: 1.5;
  color: var(--plum);
  max-width: 30rem;
}

.peace-details { margin-top: 2rem; border-top: 1px solid var(--grey-line); }
.peace-details li {
  display: flex;
  align-items: baseline;
  gap: 1.1rem;
  padding: .95rem 0;
  border-bottom: 1px solid var(--grey-line);
  font-size: 1.02rem;
}
.peace-detail-num {
  flex: none;
  font-family: var(--font-serif);
  font-size: .88rem;
  letter-spacing: .06em;
  color: var(--orange-text);
}

.form-panel {
  background: var(--white);
  border: 1px solid var(--grey);
  border-top: 2px solid var(--orange);
  padding: clamp(1.4rem, 4.5vw, 2.25rem);
}
.form-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .21em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0 0 1.2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--grey);
}
.form-shell { max-width: 100%; min-height: 180px; overflow-x: clip; }
/* Quiet placeholder shown only while Kit's script is fetching the form.
   script.js removes it the moment the real form appears. */
.form-loading {
  margin: 0;
  padding: .5rem 0;
  font-size: .92rem;
  color: var(--ink-muted);
}
.form-privacy { margin: 1.3rem 0 0; font-size: .82rem; line-height: 1.6; color: var(--ink-muted); }

@media (min-width: 960px) {
  .peace-grid { grid-template-columns: minmax(0, 1fr) minmax(0, .88fr); align-items: start; gap: clamp(3rem, 6vw, 5.5rem); }
}

/* --- Kit (ConvertKit) embed harmonisation.
       Cosmetic only. The form markup and behaviour are untouched. ---------- */
.form-shell .formkit-form[data-uid] {
  max-width: 100% !important;
  width: 100% !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background-color: transparent !important;
  background-image: none !important;
  font-family: var(--font-sans) !important;
}
.form-shell .formkit-form[data-uid] * { font-family: var(--font-sans) !important; }
.form-shell .formkit-form[data-uid] .formkit-background { opacity: 0 !important; }
.form-shell .formkit-form[data-uid] [data-element="column"],
.form-shell .formkit-form[data-uid] .formkit-column {
  padding: 0 !important;
  background-color: transparent !important;
}
.form-shell .formkit-form[data-uid] .formkit-header,
.form-shell .formkit-form[data-uid] .formkit-subheader {
  color: var(--ink) !important;
  margin: 0 0 1rem !important;
  font-size: 1rem !important;
  line-height: 1.6 !important;
}
.form-shell .formkit-form[data-uid] .formkit-header h1,
.form-shell .formkit-form[data-uid] .formkit-header h2,
.form-shell .formkit-form[data-uid] .formkit-header h3 {
  font-family: var(--font-serif) !important;
  color: var(--plum) !important;
  font-weight: 500 !important;
  letter-spacing: -0.01em !important;
}
.form-shell .formkit-form[data-uid] .formkit-fields { display: block !important; margin: 0 !important; }
.form-shell .formkit-form[data-uid] .formkit-field {
  width: 100% !important;
  min-width: 0 !important;
  margin: 0 0 .75rem !important;
  flex: 1 1 100% !important;
}
.form-shell .formkit-form[data-uid] .formkit-input {
  width: 100% !important;
  min-width: 0 !important;
  height: auto !important;
  padding: .95rem 1rem !important;
  border: 1px solid var(--grey) !important;
  border-radius: 2px !important;
  background-color: var(--white) !important;
  color: var(--ink) !important;
  font-size: 16px !important;
  line-height: 1.5 !important;
  box-shadow: none !important;
}
.form-shell .formkit-form[data-uid] .formkit-input:focus {
  border-color: var(--plum) !important;
  outline: 2px solid var(--orange-cta) !important;
  outline-offset: 2px !important;
}
.form-shell .formkit-form[data-uid] .formkit-input::placeholder { color: #857C73 !important; }
.form-shell .formkit-form[data-uid] .formkit-submit {
  width: 100% !important;
  min-width: 0 !important;
  min-height: 54px !important;
  margin: .4rem 0 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 2px !important;
  background-color: var(--orange-cta) !important;
  background-image: none !important;
  color: var(--white) !important;
  cursor: pointer !important;
  transition: background-color .28s var(--ease) !important;
}
.form-shell .formkit-form[data-uid] .formkit-submit:hover,
.form-shell .formkit-form[data-uid] .formkit-submit:focus { background-color: var(--orange-cta-hover) !important; }
.form-shell .formkit-form[data-uid] .formkit-submit span {
  color: var(--white) !important;
  font-size: .78rem !important;
  font-weight: 600 !important;
  letter-spacing: .155em !important;
  text-transform: uppercase !important;
}
.form-shell .formkit-form[data-uid] .formkit-guarantee,
.form-shell .formkit-form[data-uid] .formkit-disclaimer,
.form-shell .formkit-form[data-uid] .formkit-powered-by-convertkit-container {
  margin: .9rem 0 0 !important;
  font-size: .78rem !important;
  color: var(--ink-muted) !important;
}
.form-shell .formkit-form[data-uid] .formkit-alert { border-radius: 2px !important; font-size: .9rem !important; }

/* ---------- Explore the conversations ------------------------------------ */
.topics { background: var(--white); }
.topics-head { margin-bottom: clamp(2rem, 4.5vw, 3rem); }
.topics-head h2 { font-size: clamp(1.85rem, 1.25rem + 2.6vw, 3.2rem); margin: 0; }

.topic-list { border-top: 1px solid var(--grey); }
.topic-list li { border-bottom: 1px solid var(--grey); }

/* A .topic is a plain block until it becomes an anchor; the hover and arrow
   styles below activate on their own once a row is wrapped in <a class="topic">. */
.topic {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas:
    "num name arrow"
    "desc desc desc";
  align-items: baseline;
  column-gap: 1rem;
  padding: 1.5rem .25rem;
  text-decoration: none;
  transition: background-color .3s var(--ease), padding-left .3s var(--ease);
}
a.topic:hover { background: var(--ivory); padding-left: .8rem; }

.topic-num {
  grid-area: num;
  font-family: var(--font-serif);
  font-size: .84rem;
  letter-spacing: .08em;
  color: var(--orange-text);
}
.topic-name {
  grid-area: name;
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, .95rem + .95vw, 1.5rem);
  font-weight: 500;
  letter-spacing: .015em;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--plum);
}
.topic-desc {
  grid-area: desc;
  margin: .55rem 0 0;
  font-size: .99rem;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 42rem;
}
.topic-arrow {
  grid-area: arrow;
  color: var(--orange-text);
  font-size: 1.15rem;
  transition: transform .3s var(--ease);
}
a.topic:hover .topic-arrow { transform: translateX(6px); }

@media (min-width: 1000px) {
  .topic {
    grid-template-columns: 3.25rem minmax(0, 18rem) minmax(0, 1fr) 2rem;
    grid-template-areas: "num name desc arrow";
    column-gap: clamp(1.25rem, 2.5vw, 2.5rem);
    padding-block: 1.85rem;
  }
  .topic-desc { margin-top: 0; }
  .topic { grid-template-columns: 3.25rem minmax(0, 18rem) minmax(0, 1fr); }
  a.topic { grid-template-columns: 3.25rem minmax(0, 18rem) minmax(0, 1fr) 2rem; }
}

/* ---------- Latest from Nnedi -------------------------------------------- */
.latest { background: var(--ivory); }
.latest-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: .5rem 2rem;
  margin-bottom: clamp(2rem, 4.5vw, 3rem);
}
.latest-head h2 { font-size: clamp(1.85rem, 1.25rem + 2.6vw, 3.2rem); margin: 0; }
.latest-note { margin: 0; font-size: .95rem; color: var(--ink-muted); }

.latest-grid { display: grid; gap: clamp(2rem, 4vw, 3.5rem); }

.story-meta {
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0 0 .7rem;
}
.story-meta span { color: var(--orange-text); margin-inline: .2em; }
.story h3 { margin: 0; letter-spacing: -0.008em; }
.story h3 a { text-decoration: none; transition: color .25s var(--ease); }
.story h3 a:hover { color: var(--orange-text); text-decoration: underline; }

.story-lead { border-top: 2px solid var(--plum); padding-top: 1.5rem; }
.story-lead h3 { font-size: clamp(1.45rem, 1.15rem + 1.5vw, 2.25rem); line-height: 1.16; }
.story-more { margin: 1.2rem 0 0; }

.story-list { display: grid; }
.story-list .story {
  padding: 1.4rem 0;
  border-top: 1px solid var(--grey);
}
.story-list .story:last-child { border-bottom: 1px solid var(--grey); }
.story-list h3 { font-size: clamp(1.1rem, 1.02rem + .42vw, 1.32rem); line-height: 1.35; }

@media (min-width: 900px) {
  .latest-grid { grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr); gap: clamp(2.5rem, 5vw, 4.5rem); }
  .story-list .story:first-child { border-top: 2px solid var(--plum); padding-top: 1.5rem; }
}

/* ---------- About -------------------------------------------------------- */
.about { background: var(--white); }
.about-grid { display: grid; gap: clamp(2rem, 5vw, 4rem); }
.about-figure { margin: 0; max-width: 20rem; }
.about-figure img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 15%;
  background: var(--grey);
}
.about-heading { font-size: clamp(2rem, 1.35rem + 2.75vw, 3.5rem); margin-bottom: 1.4rem; }
.about-copy p { color: var(--ink-soft); max-width: 36rem; }

.about-question {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.15rem, 1.02rem + .72vw, 1.55rem);
  line-height: 1.45;
  color: var(--plum) !important;
  padding-left: 1.4rem;
  border-left: 2px solid var(--orange);
  margin-block: 1.75rem;
}
.about-bio {
  margin-top: 1.9rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--grey);
  font-size: .95rem;
  line-height: 1.65;
  color: var(--ink-muted) !important;
}

@media (min-width: 960px) {
  .about-grid {
    grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
    align-items: stretch;
    gap: clamp(2.5rem, 5vw, 4.5rem);
  }
  .about-figure { max-width: none; display: flex; }
  .about-figure picture { display: block; width: 100%; }
  .about-figure img {
    height: 100%;
    min-height: 30rem;
    aspect-ratio: auto;
    object-position: 50% 20%;
  }
}

/* ---------- The signature framework (dark) ------------------------------- */
.method { background: var(--plum); color: var(--ivory-soft); }
.method h2, .method h3 { color: var(--ivory); }
.method-head { max-width: 46rem; margin-bottom: clamp(2.5rem, 6vw, 4.5rem); }
.method-head h2 {
  font-size: clamp(1.75rem, 1.2rem + 2.4vw, 2.95rem);
  line-height: 1.18;
  margin-bottom: 1.3rem;
}
.method-intro { color: var(--ivory-soft); font-size: 1.03rem; max-width: 40rem; }

.stages { display: grid; }
.stage {
  padding: 1.75rem 0;
  border-top: 1px solid rgba(248, 243, 234, .22);
}
.stage:last-child { border-bottom: 1px solid rgba(248, 243, 234, .22); }
.stage-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  letter-spacing: .08em;
  color: var(--orange-light);
  margin-bottom: .7rem;
}
.stage h3 {
  font-family: var(--font-sans);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .19em;
  text-transform: uppercase;
  margin-bottom: .65rem;
}
.stage p { color: var(--ivory-soft); font-size: 1rem; line-height: 1.6; max-width: 26rem; }

@media (min-width: 900px) {
  .stages {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid rgba(248, 243, 234, .22);
  }
  .stage {
    padding: 2rem clamp(1.25rem, 2.2vw, 2rem) .5rem;
    border-top: 0;
    border-left: 1px solid rgba(248, 243, 234, .22);
  }
  .stage:first-child { padding-left: 0; border-left: 0; }
  .stage:last-child { border-bottom: 0; }
}

/* ---------- Speaking ----------------------------------------------------- */
.speaking { background: var(--ivory); }
.speaking-grid { display: grid; gap: clamp(1.75rem, 4vw, 3.5rem); }
.speaking-intro h2 {
  font-size: clamp(1.8rem, 1.25rem + 2.5vw, 3.05rem);
  line-height: 1.14;
  margin: 0;
}
.speaking-body p { color: var(--ink-soft); max-width: 34rem; }

.speaking-areas { margin: 1.9rem 0 2.1rem; border-top: 1px solid var(--grey); }
.speaking-areas li {
  padding: .95rem 0;
  border-bottom: 1px solid var(--grey);
  font-family: var(--font-serif);
  font-size: clamp(1.06rem, 1rem + .34vw, 1.24rem);
  color: var(--plum);
}

@media (min-width: 900px) {
  .speaking-grid {
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    grid-template-rows: auto 1fr;
    gap: clamp(2rem, 4vw, 3rem) clamp(2.5rem, 5vw, 4.5rem);
  }
  .speaking-intro { grid-column: 1; grid-row: 1; }
  .speaking-body  { grid-column: 2; grid-row: 1 / span 2; }
  .speaking-cta   { grid-column: 1; grid-row: 2; align-self: start; }
}

/* ---------- Full-bleed detail band --------------------------------------- */
.band { background: var(--ivory); }
.band img {
  width: 100%;
  height: clamp(170px, 24vw, 300px);
  object-fit: cover;
  object-position: 50% 72%;
}

/* ---------- Newsletter invitation ---------------------------------------- */
.notes { background: var(--white); }
.notes-inner { max-width: 38rem; }
.notes h2 {
  font-size: clamp(1.8rem, 1.3rem + 2.2vw, 2.85rem);
  margin-bottom: 1.1rem;
}
.notes p { color: var(--ink-soft); }
.notes .btn { margin-top: .9rem; }

/* ---------- Sign-off ----------------------------------------------------- */
.signoff {
  background: var(--ivory);
  padding-block: clamp(4rem, 10vw, 8.5rem);
  border-top: 1px solid var(--grey-line);
}
.signoff-line {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.85rem, 1.1rem + 3.5vw, 4.1rem);
  line-height: 1.14;
  letter-spacing: -0.015em;
  color: var(--plum);
  max-width: 15em;
  margin: 0 0 1.4rem;
  text-wrap: balance;
}
.signoff-name {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.15rem, 1rem + .8vw, 1.55rem);
  color: var(--ink-muted);
  margin: 0;
}

/* ---------- Footer ------------------------------------------------------- */
.site-footer {
  background: var(--plum-deep);
  color: var(--ivory-soft);
  padding-top: clamp(3rem, 6vw, 4.5rem);
  padding-bottom: 1.75rem;
  font-size: .96rem;
}
.footer-grid { display: grid; gap: 2.25rem; }

.footer-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ivory);
  margin: 0;
}
.footer-heading {
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ivory-muted);
  margin: 0 0 .9rem;
  line-height: 1.6;
}
.footer-block li { margin-bottom: .35rem; }
.site-footer a {
  color: var(--ivory-soft);
  text-decoration: none;
  border-bottom: 1px solid rgba(248, 243, 234, .26);
}
.site-footer a:hover { color: var(--orange-light); border-bottom-color: var(--orange-light); }
.footer-social { display: flex; flex-wrap: wrap; gap: .4rem 1.3rem; }

.footer-base {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .35rem 2rem;
  margin-top: clamp(2.25rem, 5vw, 3.25rem);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(248, 243, 234, .16);
}
.footer-base p { font-size: .82rem; color: var(--ivory-muted); margin: 0; }

@media (min-width: 760px) {
  .footer-grid {
    grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
    gap: 2.5rem;
    align-items: start;
  }
}

/* ---------- Reveal ------------------------------------------------------- */
.js .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
.js .reveal.is-visible { opacity: 1; transform: none; }

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

/* ---------- Print -------------------------------------------------------- */
@media print {
  .masthead, .nav, .btn, .band { display: none !important; }
  body { background: #fff; color: #000; }
}

/* =========================================================================
   /peace-check — focused lead-magnet page.
   Uses the same tokens, type and form styling as the rest of the site.
   These classes are used only by peace-check/index.html.
   ========================================================================= */
.lp { background: var(--ivory); }

.lp-shell {
  display: flex;
  justify-content: center;
  padding: clamp(1.85rem, 6vw, 3.5rem) var(--gutter) clamp(2.25rem, 6vw, 4rem);
}
.lp-inner { width: 100%; max-width: 39rem; }

.lp-brand {
  font-family: var(--font-serif);
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--plum);
  margin: 0 0 clamp(1.75rem, 5vw, 2.75rem);
  line-height: 1.5;
}

.lp-title {
  font-size: clamp(2.05rem, 1.5rem + 2.2vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.016em;
  color: var(--plum);
  margin: 0 0 1.05rem;
}

.lp-lead {
  font-size: clamp(1.02rem, 1rem + .22vw, 1.15rem);
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 1.05rem;
}

.lp-reassure {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.02rem, .98rem + .34vw, 1.2rem);
  line-height: 1.5;
  color: var(--plum);
  margin: 0 0 clamp(1.6rem, 4.5vw, 2.15rem);
}

.lp-panel { margin: 0; }

/* If the heading you set inside Kit repeats the page heading above the form,
   uncomment the next line to hide Kit's heading on this page only.
   (Removing it inside your Kit dashboard is tidier, but this works too.) */
/* .lp .form-shell .formkit-form[data-uid] .formkit-header { display: none !important; } */

.lp-trust {
  margin: 1.3rem 0 0;
  font-size: .84rem;
  line-height: 1.65;
  color: var(--ink-muted);
}

.lp-foot {
  margin-top: clamp(2.5rem, 7vw, 3.5rem);
  padding-top: clamp(1.5rem, 4vw, 2rem);
  border-top: 1px solid var(--grey-line);
}
.lp-signoff {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.15rem, 1.05rem + .5vw, 1.45rem);
  line-height: 1.3;
  color: var(--plum);
  margin: 0 0 .35rem;
  text-wrap: balance;
}
.lp-name {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--ink-muted);
  margin: 0 0 1.5rem;
}
.lp-copy { font-size: .8rem; color: var(--ink-muted); margin: 0; }
