/* Beyond Basic Needs — static rebuild. Palette and type follow the original
   WordPress site: Poppins, primary #3d68b2, accent #2ea3f2, gray #6d6e71. */

@font-face { font-family: Poppins; src: url(/fonts/poppins-400.woff2) format("woff2"); font-weight: 400; font-display: swap; }
@font-face { font-family: Poppins; src: url(/fonts/poppins-500.woff2) format("woff2"); font-weight: 500; font-display: swap; }
@font-face { font-family: Poppins; src: url(/fonts/poppins-600.woff2) format("woff2"); font-weight: 600; font-display: swap; }
@font-face { font-family: Poppins; src: url(/fonts/poppins-700.woff2) format("woff2"); font-weight: 700; font-display: swap; }

/* Oswald — self-hosted condensed display face for headings/eyebrows/nav
   (the brand's Headline-Gothic look; Oswald is the reference file's own
   named fallback). Single weight; hierarchy comes from size + spacing. */
@font-face { font-family: Oswald; src: url(/fonts/oswald-600.woff2) format("woff2"); font-weight: 600; font-display: swap; }

:root {
  --blue: #3d68b2;
  --blue-dark: #2c4d87;
  --sky: #2ea3f2;
  --gray: #6d6e71;
  --ink: #2b2b2b;
  --light: #f4f7fb;
  --radius: 10px;
  --font-head: Oswald, "Arial Narrow", Helvetica, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: Poppins, Helvetica, Arial, sans-serif; color: var(--ink); line-height: 1.65; font-size: 16px; }
img { max-width: 100%; height: auto; }
a { color: var(--blue); }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; font-synthesis: none; line-height: 1.15; letter-spacing: .01em; color: var(--blue-dark); }
h1 { font-size: 2.4rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }
.container--narrow { max-width: 820px; }
.center { text-align: center; }
.flow > * + * { margin-top: 1em; }
.flow h2, .flow h3 { margin-top: 1.6em; }

.btn { display: inline-block; background: var(--blue); color: #fff; text-decoration: none; font-weight: 600;
  padding: 12px 26px; border-radius: 999px; border: 2px solid var(--blue); cursor: pointer; font-size: 1rem;
  font-family: inherit; transition: background .15s, color .15s; }
.btn:hover { background: var(--blue-dark); border-color: var(--blue-dark); }
.btn--donate { background: var(--sky); border-color: var(--sky); }
.btn--donate:hover { background: #1288d8; border-color: #1288d8; }
.btn--ghost { background: transparent; color: #fff; border-color: #fff; }
.btn--ghost:hover { background: #fff; color: var(--blue); }
/* Secondary outline button for light backgrounds (ghost is white-on-blue only) */
.btn--line { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn--line:hover { background: var(--blue); color: #fff; }
.btn--big { width: 100%; padding: 16px; font-size: 1.15rem; }

/* header */
.site-header { background: var(--blue); position: sticky; top: 0; z-index: 50; }
.site-header__inner { max-width: 1200px; margin: 0 auto; padding: 10px 20px; display: flex; align-items: center; gap: 24px; }
.site-header__logo img { width: 210px; height: auto; display: block; }
.nav-toggle { display: none; background: none; border: 0; color: #fff; font-size: 1.7rem; cursor: pointer; }
.site-nav { display: flex; margin-left: auto; gap: 4px; align-items: center; }
.nav-item { position: relative; }
.nav-top { display: block; color: #fff; text-decoration: none; font-family: var(--font-head); text-transform: uppercase; letter-spacing: .04em; font-weight: 600; font-size: .95rem; padding: 10px 12px; border-radius: 6px; }
.nav-top:hover, .nav-top.is-active { background: rgba(255,255,255,.14); }
.nav-donate { background: #fff; color: var(--blue); padding: 10px 22px; border-radius: 7px; }
.nav-donate:hover { background: #eef3fb; color: var(--blue-dark); }
.caret { font-size: .7em; }
.subnav { list-style: none; position: absolute; top: 100%; left: 0; background: #fff; min-width: 280px;
  border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,.15); padding: 8px; display: none; }
.has-sub:hover .subnav, .has-sub:focus-within .subnav, .has-sub.open .subnav { display: block; }
.subnav a { display: block; padding: 9px 12px; text-decoration: none; color: var(--ink); border-radius: 6px; font-size: .93rem; }
.subnav a:hover { background: var(--light); color: var(--blue); }

/* hero + sections */
.hero { background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%); color: #fff; padding: 90px 0; text-align: center; }
.hero h1 { color: #fff; font-size: 2.9rem; }
.hero__sub { font-size: 1.2rem; margin: 18px auto 28px; max-width: 640px; }
.hero__ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.page-hero { background: linear-gradient(160deg, var(--blue) 0%, var(--blue-dark) 100%); color: #fff; padding: 74px 0; text-align: center; }
.page-hero h1 { color: #fff; text-transform: uppercase; font-size: clamp(2rem, 4.6vw, 3.4rem); }
.page-hero p { max-width: 48rem; margin: 14px auto 0; color: rgba(255,255,255,.92); font-size: 1.1rem; }
.page-hero__img { border-radius: var(--radius); margin-bottom: 20px; }
.section { padding: 60px 0; }
.section--light { background: var(--light); }
.section--blue { background: var(--blue); color: #fff; }
.section--blue h2, .section--blue h3 { color: #fff; }
.section__title { margin-bottom: 24px; }

/* stats */
.stats__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin: 34px 0 20px; }
.stat { text-align: center; }
.stat__num { display: block; font-size: 2.6rem; font-weight: 700; }
.stat__label { display: block; opacity: .9; }
.stats__tag { font-style: italic; opacity: .95; }

/* cards / grids */
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.card { background: #fff; border-radius: var(--radius); padding: 24px; box-shadow: 0 4px 18px rgba(0,0,0,.07); }
.card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.card h3 a { text-decoration: none; color: var(--blue-dark); }
.card p { font-size: .93rem; color: var(--gray); margin-bottom: 10px; }
.card__link { font-weight: 600; text-decoration: none; font-size: .93rem; }

/* testimonials */
.tstrip { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 22px; }
.tcard { background: #fff; border-radius: var(--radius); padding: 24px; box-shadow: 0 4px 18px rgba(0,0,0,.07); }
.tcard blockquote { font-size: .95rem; color: var(--ink); }
.tcard figcaption { margin-top: 12px; font-weight: 600; color: var(--blue); }

/* articles */
.article-hero { padding: 44px 0 10px; }
.article-meta { color: var(--gray); font-size: .9rem; display: flex; gap: 18px; margin-top: 10px; }
.article-body { padding: 20px 0 40px; }
.article-body > * + * { margin-top: 1em; }
.article-body h2, .article-body h3 { margin-top: 1.6em; }
.article-body li { margin-left: 1.2em; }
.article-cta { background: var(--light); border-radius: var(--radius); padding: 30px; text-align: center; margin-bottom: 40px; }
.article-cta h3 { margin-bottom: 16px; }
.cta-band { background: var(--sky); color: #fff; }
.cta-band h2 { color: #fff; margin-bottom: 18px; }

/* tables, media, forms */
.table-wrap { overflow-x: auto; }
table { border-collapse: collapse; width: 100%; }
td, th { border: 1px solid #d7dfeb; padding: 10px 12px; text-align: left; }
th { background: var(--light); }
.video-wrap { position: relative; padding-top: 56.25%; border-radius: var(--radius); overflow: hidden; }
.video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.form-wrap iframe { width: 100%; min-height: 760px; border: 0; }
.img-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 1.4em 0; }
.img-grid img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; border-radius: var(--radius); }
@media (max-width: 700px) { .img-grid { grid-template-columns: 1fr 1fr; } }
ul { padding-left: 1.2em; }

/* donate */
.donate-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 34px; align-items: start; }
.donate-card { background: #fff; border-radius: var(--radius); padding: 30px; box-shadow: 0 6px 26px rgba(0,0,0,.1); }
.donate-form fieldset { border: 0; margin-bottom: 18px; }
.donate-form .btn { border-radius: 7px; }
.donate-form legend { font-weight: 600; color: var(--blue-dark); margin-bottom: 8px; }
.freq label { margin-right: 18px; font-weight: 500; cursor: pointer; }
.amounts { display: block; }
.amounts legend { display: block; }
.amounts label { display: inline-block; margin: 0 8px 8px 0; cursor: pointer; }
.amounts input { position: absolute; opacity: 0; }
.amounts span { display: inline-block; padding: 10px 18px; border: 2px solid var(--blue); border-radius: 8px;
  font-weight: 600; color: var(--blue); min-width: 72px; text-align: center; }
.amounts input:checked + span { background: var(--blue); color: #fff; }
.amounts input:focus-visible + span { outline: 2px solid var(--sky); outline-offset: 2px; }
.custom-amount input { padding: 10px; border: 2px solid #d7dfeb; border-radius: 8px; width: 140px; font-size: 1rem; font-family: inherit; }
.kit-hint { color: var(--gray); margin-bottom: 14px; }
.fee-cover { margin-bottom: 18px; font-size: .95rem; }
.secure-note { font-size: .82rem; color: var(--gray); margin-top: 14px; }
.donate-aside h3 { margin-bottom: 14px; }
.donate-aside h4 { margin: 18px 0 4px; }
.donate-aside p { font-size: .95rem; }
.goal { margin-bottom: 22px; }
.goal__bar { background: #e4ebf5; height: 14px; border-radius: 999px; overflow: hidden; }
.goal__fill { background: var(--sky); height: 100%; width: 0; border-radius: 999px; transition: width .6s ease; }
.goal__text { font-size: .92rem; color: var(--gray); margin-top: 8px; }

/* donor wall (campaign pages, worker-rendered) */
.donor-wall { margin-top: 30px; }
.donor-wall ul { list-style: none; padding: 0; }
.donor-wall li { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid #e4ebf5; font-size: .95rem; }

/* footer */
.site-footer { background: var(--blue-dark); color: #dfe8f5; margin-top: 40px; }
.site-footer a { color: #fff; }
.site-footer__main { max-width: 1140px; margin: 0 auto; padding: 56px 20px 34px; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; }
.site-footer__logo img { width: 220px; height: auto; }
.site-footer__tagline { font-size: .92rem; opacity: .9; margin-top: 14px; max-width: 32ch; }
.site-footer__contact { font-size: .9rem; opacity: .9; margin-top: 16px; }
.site-footer__contact a { text-decoration: underline; }
.site-footer__socials { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 18px; }
.site-footer__socials a { font-weight: 500; opacity: .92; }
.site-footer__socials a:hover { opacity: 1; text-decoration: underline; }
.site-footer__seal { display: inline-block; margin-top: 22px; }
.site-footer__seal img { width: 84px; height: 84px; }
.site-footer h4 { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .05em; color: #fff; margin-bottom: 12px; font-size: 1rem; }
.site-footer ul { list-style: none; padding: 0; }
.site-footer li { margin-bottom: 9px; }
.site-footer li a { font-size: .95rem; opacity: .92; }
.site-footer li a:hover { opacity: 1; }
.site-footer__bottom { border-top: 1px solid rgba(255,255,255,.15); padding: 22px 20px; text-align: center; font-size: .82rem; line-height: 1.6; opacity: .82; }
.site-footer__legal { max-width: 70rem; margin: 0 auto 8px; }
.site-footer__bottom a { text-decoration: underline; }

/* responsive */
@media (max-width: 900px) {
  h1 { font-size: 1.9rem; }
  .hero h1 { font-size: 2.2rem; }
  .nav-toggle { display: block; margin-left: auto; }
  .site-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--blue-dark);
    flex-direction: column; align-items: stretch; padding: 10px; gap: 0; }
  .site-nav.open { display: flex; }
  .subnav { position: static; box-shadow: none; background: rgba(255,255,255,.08); min-width: 0; }
  .subnav a { color: #fff; }
  .nav-donate { text-align: center; margin-top: 6px; }
  .grid--2, .grid--3, .stats__grid, .donate-grid, .site-footer__main { grid-template-columns: 1fr; }
}

/* analytics */
.gtm-ns { display: none; visibility: hidden; }

/* ============================================================
   Homepage redesign — scoped under .nh (the homepage <main> carries
   class="nh") so it stays homepage-only. Tracks the single-file design
   reference: uppercase Oswald headings (--font-head), brand blue on
   light / white on dark, warm-gray body text, 7px buttons, tilted hero
   card. Reuses the site's :root tokens; no third-party fonts.
   ============================================================ */
.nh { color: var(--gray); }
.nh h1, .nh h2, .nh h3 { color: var(--blue); text-transform: uppercase; }
.nh h4, .nh h5, .nh h6 { text-transform: uppercase; }
.nh-hero h1, .nh-band__left h2, .nh-band__left h3, .nh .section--blue h2, .nh .section--blue h3, .nh-donate h2 { color: #fff; }
/* Breathing room under bare headings (splits, bands). Section titles and
   cards keep their own explicit spacing. */
.nh h2 { margin-bottom: .5em; }
.nh h2.section__title { margin-bottom: 24px; }
.nh__eyebrow { display: inline-block; font-family: var(--font-head); font-weight: 600; font-size: .92rem; letter-spacing: .16em; text-transform: uppercase; color: var(--blue); margin-bottom: 12px; }
.nh-hero .nh__eyebrow, .nh-band__left .nh__eyebrow, .nh-donate .nh__eyebrow, .nh .section--blue .nh__eyebrow { color: rgba(255,255,255,.85); }

.nh .section { padding: 84px 0; }
.nh .btn { border-radius: 7px; padding: 14px 28px; }
.nh .btn--donate { background: var(--blue); border-color: var(--blue); }
.nh .btn--donate:hover { background: var(--blue-dark); border-color: var(--blue-dark); }
.nh .btn--invert { background: #fff; color: var(--blue); border-color: #fff; }
.nh .btn--invert:hover { background: #eef3fb; color: var(--blue-dark); border-color: #eef3fb; }
.nh .stat__num { font-family: var(--font-head); font-weight: 600; font-synthesis: none; color: var(--blue); }

/* Vertical rhythm: gap between stacked paragraphs and above button rows
   (the global reset zeroes <p> margins). */
.nh p + p { margin-top: 1rem; }
/* Tight metrics band right below the hero */
.nh .section.nh-statband { padding: 18px 0; }
.nh-statband .stats__grid { margin: 0; }
/* Highlighter underline under the hero's second sentence */
.nh-underline { background: linear-gradient(to top, rgba(255,255,255,.28) 0, rgba(255,255,255,.28) .14em, transparent .14em); }
/* Sponsor logos link out; keep the anchor sized to its logo */
.nh-logos a { display: inline-flex; align-items: center; }

.nh-hero { position: relative; overflow: hidden; background: linear-gradient(160deg, var(--blue) 0%, var(--blue-dark) 100%); color: #fff; padding: 88px 0 96px; }
.nh-hero::after { content: ""; position: absolute; right: -130px; top: -130px; width: 440px; height: 440px; border-radius: 50%; background: rgba(255,255,255,.06); pointer-events: none; }
.nh-hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr .9fr; gap: 52px; align-items: center; }
.nh-hero h1 { font-size: clamp(2.4rem, 5.2vw, 4.1rem); line-height: 1.05; margin-bottom: 18px; }
.nh-hero__lead { font-size: 1.15rem; color: rgba(255,255,255,.92); max-width: 34rem; margin-bottom: 26px; }
.nh-hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; }
.nh-hero__note { margin-top: 20px; font-size: .92rem; color: rgba(255,255,255,.8); }
.nh-hero__media { position: relative; }
.nh-hero__img { width: 100%; height: auto; border-radius: 16px; box-shadow: 0 26px 50px -22px rgba(0,0,0,.55); transform: rotate(1.5deg); }
.nh-hero__badge { position: absolute; left: 16px; bottom: 16px; background: #fff; color: var(--blue); border-radius: 12px; padding: 10px 16px; box-shadow: 0 12px 26px -12px rgba(0,0,0,.45); transform: rotate(-1.5deg); }
.nh-hero__badge b { display: block; font-family: var(--font-head); font-weight: 600; font-synthesis: none; font-size: 1.7rem; line-height: 1; }
.nh-hero__badge span { font-size: .76rem; color: var(--gray); }

.nh-split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.nh-split__img { width: 100%; height: auto; border-radius: var(--radius); box-shadow: 0 14px 34px -18px rgba(0,0,0,.3); }

.nh-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 36px; }
.nh-step { background: #fff; border: 1px solid #e5e9f0; border-radius: var(--radius); padding: 28px 24px; }
.nh-step__n { font-family: var(--font-head); font-weight: 600; font-synthesis: none; font-size: 2.6rem; color: #cdd6e6; line-height: 1; margin-bottom: 6px; }
.nh-step h3 { margin-bottom: 6px; }
.nh-step p { color: var(--gray); font-size: .96rem; margin: 0; }

.nh-kit__list { list-style: none; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 20px; margin: 18px 0 22px; }
.nh-kit__list li, .nh-proof li { position: relative; padding-left: 30px; font-weight: 500; color: var(--ink); }
.nh-kit__list li::before, .nh-proof li::before { content: ""; position: absolute; left: 0; top: 3px; width: 18px; height: 18px; border-radius: 50%; background: var(--blue) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.2l-3.5-3.5L4 14.2l5 5 11-11-1.5-1.4z'/%3E%3C/svg%3E") center / 12px no-repeat; }
.nh-callout { background: var(--light); border-left: 4px solid var(--blue); border-radius: 8px; padding: 14px 18px; color: var(--gray); font-size: .95rem; }
.nh-fine { font-size: .85rem; color: var(--gray); margin-top: 14px; }

.nh-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 36px; }
.nh-card { position: relative; background: #fff; border: 1px solid #e5e9f0; border-radius: var(--radius); padding: 30px 26px; display: flex; flex-direction: column; transition: transform .15s ease, box-shadow .2s ease; }
.nh-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -22px rgba(0,0,0,.3); }
.nh-card--feature { border: 2px solid var(--blue); }
.nh-card h3 { margin-bottom: 8px; }
.nh-card p { color: var(--gray); font-size: .96rem; flex-grow: 1; margin: 0; }
.nh-card__link { color: var(--blue); font-weight: 600; margin-top: 12px; text-decoration: none; }
.nh-card__link:hover { text-decoration: underline; }
.nh-tag { display: inline-block; align-self: flex-start; background: var(--blue); color: #fff; font-family: var(--font-head); font-size: .74rem; letter-spacing: .06em; text-transform: uppercase; font-weight: 600; padding: 4px 12px; border-radius: 999px; margin-bottom: 12px; }

.nh-band { display: grid; grid-template-columns: 1.05fr .95fr; border-radius: var(--radius); overflow: hidden; box-shadow: 0 16px 40px -20px rgba(0,0,0,.3); }
.nh-band__left { background: linear-gradient(160deg, var(--blue), var(--blue-dark)); color: #fff; padding: 48px 44px; }
.nh-band__left p { color: rgba(255,255,255,.92); }
.nh-band__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.nh-band__right { background: var(--light); padding: 48px 40px; }
.nh-band__right h3 { margin-bottom: 16px; }
.nh-proof { list-style: none; padding: 0; display: grid; gap: 14px; margin: 0; }

.nh-donate { text-align: center; }
.nh-donate h2 { max-width: 26ch; margin: 0 auto 14px; }
.nh-donate p { color: rgba(255,255,255,.92); max-width: 46rem; margin: 0 auto 12px; }
.nh-chips { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin: 22px 0 10px; }
.nh-chip { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.3); border-radius: 7px; padding: 9px 18px; font-weight: 600; color: #fff; }
.nh-chip b { font-family: var(--font-head); font-weight: 600; margin-right: 6px; }

/* Logo walls — Port Pillow Partners / Corporate Sponsors / Hospitals.
   Full colour like the live site; centered grid that wraps, each logo
   bounded to a uniform box so wildly different art lines up. */
.nh-logowall .section__title { margin-bottom: 8px; }
.nh-logowall p { max-width: 46rem; margin: 0 auto; }
.nh-logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 30px 46px; margin-top: 40px; }
.nh-logos img { max-height: 52px; max-width: 150px; width: auto; height: auto; object-fit: contain; transition: transform .15s ease; }
.nh-logos img:hover { transform: scale(1.06); }

/* Four stats (reference set) */
.nh .stats__grid { grid-template-columns: repeat(4, 1fr); }

/* Center the narrow section-intro blocks (eyebrow + heading + lead). The
   .container--narrow utility only caps width; it needs auto margins to sit
   centered inside the full-width container. */
.nh .container--narrow { margin-left: auto; margin-right: auto; }

/* Founder signature */
.nh-sign { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .04em; color: var(--blue); margin-top: 4px; }
.nh-sign small { display: block; font-family: Poppins, Helvetica, Arial, sans-serif; text-transform: none; letter-spacing: 0; color: var(--gray); font-weight: 400; }

/* Testimonials — glass cards on a gradient, like the reference; still pulls
   the quotes live from the collection. */
.nh-testimonials { background: linear-gradient(160deg, var(--blue-dark), var(--blue)); }
.nh-testimonials .tstrip { margin-top: 44px; }
.nh-testimonials .tcard { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); border-radius: 16px; box-shadow: none; padding: 30px 28px; backdrop-filter: blur(4px); display: flex; flex-direction: column; }
.nh-testimonials .tcard blockquote { position: relative; padding-top: 36px; color: rgba(255,255,255,.95); font-size: 1rem; line-height: 1.6; }
.nh-testimonials .tcard blockquote::before { content: "\201C"; position: absolute; top: -4px; left: -2px; font-family: var(--font-head); font-weight: 600; font-size: 3.6rem; line-height: 1; color: rgba(255,255,255,.4); }
.nh-testimonials .tcard figcaption { margin-top: 18px; font-family: var(--font-head); text-transform: uppercase; letter-spacing: .05em; color: #fff; font-size: 1rem; }

@media (max-width: 900px) {
  .nh .section { padding: 60px 0; }
  .nh-hero { padding: 60px 0 66px; }
  .nh-hero__grid, .nh-split, .nh-band { grid-template-columns: 1fr; }
  .nh-steps, .nh-cards, .nh-kit__list { grid-template-columns: 1fr; }
  .nh .stats__grid { grid-template-columns: 1fr 1fr; }
  .nh-hero__img, .nh-hero__badge { transform: none; }
  .nh-split__media { order: -1; }
}
@media (max-width: 560px) {
  .nh .stats__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Our Impact page (content/pages/our-impact.njk) — scoped under .nh.
   Compact interior hero, thank-you-note photo gallery, and a masonry
   wall of every recipient testimonial.
   ============================================================ */
.nh-subhero { background: linear-gradient(160deg, var(--blue) 0%, var(--blue-dark) 100%); color: #fff; padding: 74px 0; text-align: center; }
.nh-subhero a:not(.btn) { color: #fff; text-decoration: underline; }
.nh-subhero h1 { color: #fff; font-size: clamp(2rem, 4.6vw, 3.4rem); text-transform: uppercase; margin-bottom: 14px; }
.nh-subhero .nh__eyebrow { color: rgba(255,255,255,.85); }
.nh-subhero p { max-width: 48rem; margin: 0 auto; color: rgba(255,255,255,.92); font-size: 1.1rem; }

.nh-numbers__note { max-width: 46rem; margin: 34px auto 0; }
.nh-actions-center { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 20px; }

/* Thank-you note photos — four across, click to open full size */
.nh-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 40px; }
.nh-gallery a { display: block; border-radius: var(--radius); overflow: hidden; box-shadow: 0 14px 34px -18px rgba(0,0,0,.35); }
.nh-gallery img { display: block; width: 100%; aspect-ratio: 3 / 4; object-fit: cover; transition: transform .2s ease; }
.nh-gallery a:hover img { transform: scale(1.04); }

/* Every recipient testimonial — glass cards on the gradient band (same look
   as the homepage), masonry columns for varied lengths, collapsed to a
   preview with a Show-all button wired in main.js. */
.nh-testimonials .container--narrow p { color: rgba(255,255,255,.9); }
.nh-quotes { column-count: 3; column-gap: 24px; margin-top: 40px; }
.nh-quote { break-inside: avoid; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius); padding: 24px; margin-bottom: 24px; backdrop-filter: blur(4px); }
.nh-quote blockquote { color: rgba(255,255,255,.95); font-size: .96rem; line-height: 1.6; }
.nh-quote blockquote::before { content: "\201C"; font-family: var(--font-head); font-weight: 600; font-size: 2.2rem; line-height: 0; color: rgba(255,255,255,.5); margin-right: 4px; vertical-align: -.4em; }
.nh-quote figcaption { margin-top: 14px; font-family: var(--font-head); text-transform: uppercase; letter-spacing: .04em; color: #fff; font-size: .95rem; }
.nh-more { display: block; width: fit-content; margin: 36px auto 0; }

@media (max-width: 900px) {
  .nh-gallery { grid-template-columns: repeat(2, 1fr); }
  .nh-quotes { column-count: 2; }
}
@media (max-width: 600px) {
  .nh-gallery { grid-template-columns: 1fr 1fr; }
  .nh-quotes { column-count: 1; }
}

/* ============================================================
   Content pages (page.njk layout, wrapped in .nh .nh-page): gradient hero
   above a flowing article body with the redesign heading treatment.
   ============================================================ */
.nh-page .section { padding: 52px 0 72px; }
/* Sub-headings (h4/h5, e.g. FAQ questions) were unstyled — give them a real
   heading look distinct from the big uppercase h2/h3. */
.nh-page h4, .nh-page h5 { font-family: var(--font-head); font-weight: 600; color: var(--blue-dark); font-size: 1.2rem; line-height: 1.3; margin-top: 1.4em; }
.nh-page .flow li { margin-bottom: .35em; }

/* FAQ accordion — native <details>/<summary>, no JS */
.faq { border: 1px solid #e5e9f0; border-radius: var(--radius); margin: 10px 0; background: #fff; }
.faq summary { cursor: pointer; list-style: none; position: relative; padding: 16px 46px 16px 18px; font-family: var(--font-head); font-weight: 600; font-size: 1.12rem; letter-spacing: .01em; text-transform: uppercase; color: var(--blue-dark); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 18px; top: 50%; transform: translateY(-50%); font-family: var(--font-head); font-size: 1.5rem; line-height: 1; color: var(--blue); }
.faq[open] summary { color: var(--blue); }
.faq[open] summary::after { content: "\2013"; }
.faq summary:hover { color: var(--blue); }
.faq__a { padding: 2px 18px 16px; color: var(--gray); }
.faq__a > * + * { margin-top: .7em; }
.faq__a a { color: var(--blue); text-decoration: underline; }

/* Team / founder cards (About Us) + founder bio photo */
.nh-team { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.nh-team__card { display: block; background: #fff; border: 1px solid #e5e9f0; border-radius: var(--radius); padding: 30px 24px; text-align: center; text-decoration: none; transition: transform .15s ease, box-shadow .2s ease; }
.nh-team__card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -22px rgba(0,0,0,.3); }
.nh-team__card img { width: 150px; height: 150px; border-radius: 50%; object-fit: cover; margin: 0 auto 16px; display: block; }
.nh-team__card h3 { color: var(--blue); text-transform: uppercase; margin-bottom: 4px; }
.nh-team__role { display: block; color: var(--gray); font-weight: 500; }
.nh-team__link { display: inline-block; margin-top: 12px; color: var(--blue); font-weight: 600; text-decoration: none; }
.nh-team__link:hover { text-decoration: underline; }
.founder-photo { width: 190px; height: 190px; border-radius: 50%; object-fit: cover; display: block; margin: 0 auto 6px; }
@media (max-width: 760px) { .nh-team { grid-template-columns: 1fr; max-width: 340px; margin-left: auto; margin-right: auto; } }

/* Blog posts (post.njk) — gradient hero, readable article body, and a
   horizontal blog slider (scroll-snap, no JS) for related posts. */
.nh-subhero__meta { color: rgba(255,255,255,.8); margin-top: 12px; font-size: .95rem; }
.nh-article .article-body { color: var(--ink); font-size: 1.05rem; }
.nh-article .article-body h2, .nh-article .article-body h3, .nh-article .article-cta h3 { color: var(--blue-dark); }
.nh-article .article-body a:not(.btn) { color: var(--blue); text-decoration: underline; }
.nh-article .article-body img { border-radius: var(--radius); margin: 1.2em 0; }
.blog-slider { display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 6px 2px 20px; margin-top: 34px; }
.blog-slide { flex: 0 0 300px; scroll-snap-align: start; background: #fff; border: 1px solid #e5e9f0; border-radius: var(--radius); padding: 24px; text-decoration: none; display: flex; flex-direction: column; transition: transform .15s ease, box-shadow .2s ease; }
.blog-slide:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -22px rgba(0,0,0,.3); }
.blog-slide__tag { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .08em; font-size: .72rem; color: var(--blue); }
.blog-slide h3 { color: var(--blue-dark); margin: 10px 0 8px; font-size: 1.12rem; }
.blog-slide p { color: var(--gray); font-size: .95rem; flex-grow: 1; margin: 0; }
.blog-slide__link { color: var(--blue); font-weight: 600; margin-top: 14px; }

/* Numbered step list (Port Pillow Makers instructions) */
.nh-steplist { list-style: none; counter-reset: step; padding: 0; max-width: 680px; margin: 36px auto 0; }
.nh-steplist li { counter-increment: step; position: relative; padding-left: 58px; margin-bottom: 22px; min-height: 42px; color: var(--gray); }
.nh-steplist li::before { content: counter(step); position: absolute; left: 0; top: 0; width: 42px; height: 42px; border-radius: 50%; background: var(--blue); color: #fff; font-family: var(--font-head); font-weight: 600; font-size: 1.25rem; display: flex; align-items: center; justify-content: center; }
.nh-steplist li strong { color: var(--blue-dark); }

/* Build Day page: 4-up card grid, pricing cards, anchor scroll offset */
.nh-cards--4 { grid-template-columns: repeat(4, 1fr); }
.nh-pricing .nh-card { text-align: center; align-items: center; }
.nh-price__count { display: block; font-family: var(--font-head); font-weight: 600; font-size: 1.7rem; color: var(--blue); text-transform: uppercase; }
.nh-price__each { display: block; font-size: 1.15rem; color: var(--blue-dark); font-weight: 600; margin: 8px 0 2px; }
.nh-price__total { display: block; color: var(--gray); font-size: .95rem; }
:target { scroll-margin-top: 84px; }
@media (max-width: 900px) { .nh-cards--4 { grid-template-columns: 1fr 1fr; } }

/* Split variant: top-aligned with the media sticky beside a long text column */
.nh-split--top { align-items: start; }
.nh-split--top .nh-split__media { position: sticky; top: 90px; }
.nh-split .nh-steplist { max-width: none; margin: 18px 0 0; }
@media (max-width: 900px) { .nh-split--top .nh-split__media { position: static; } }

/* Resource cards — whole card is a link to the external organization */
.nh-resource { text-decoration: none; color: inherit; }
.nh-resource h3 { color: var(--blue-dark); }
.nh-resource .nh-resource__go { margin-top: 16px; color: var(--blue); font-weight: 600; font-family: var(--font-head); text-transform: uppercase; letter-spacing: .03em; font-size: .82rem; }
.nh-resource:hover .nh-resource__go { text-decoration: underline; }

/* Blog listing — search + category chips + cards */
.blog-toolbar { margin-bottom: 42px; }
.blog-search { position: relative; max-width: 560px; margin: 0 auto 20px; }
.blog-search__input { width: 100%; font-family: inherit; font-size: 1.02rem; padding: 15px 22px 15px 52px; border: 1px solid #d5dbe6; border-radius: 999px; color: var(--ink); box-shadow: 0 8px 22px -16px rgba(0,0,0,.35); background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236d6e71' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='m21 21-4.3-4.3'/%3E%3C/svg%3E") 20px center / 19px no-repeat; }
.blog-search__input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(61,104,178,.15); }
.blog-chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.blog-chip { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .04em; font-size: .76rem; font-weight: 600; padding: 9px 16px; border-radius: 999px; border: 1px solid #d5dbe6; background: #fff; color: var(--blue-dark); cursor: pointer; transition: background .15s ease, border-color .15s ease, color .15s ease; }
.blog-chip:hover { border-color: var(--blue); color: var(--blue); }
.blog-chip.is-active { background: var(--blue); border-color: var(--blue); color: #fff; }
.blog-list { margin-top: 0; }
.blog-card h3 { font-size: 1.12rem; margin: 4px 0 8px; }
.blog-card h3 a { color: inherit; text-decoration: none; }
.blog-search__empty { color: var(--gray); margin-top: 28px; font-weight: 500; }
/* category tag colors (small pill on each card + used by the chips) */
.cat--kits { background: var(--blue); }
.cat--coping { background: #2a9d8f; }
.cat--support { background: #cf6a5b; }
.cat--events { background: #7a61b0; }
.cat--stories { background: #b85c94; }

/* Centered CTA row with clear separation above the button */
.nh-cta-row { text-align: center; margin-top: 40px; }
