/*
Theme Name: ACF Ataribuno
Theme URI: https://acfghana.org
Author: Ataribuno Cervix Foundation
Author URI: https://acfghana.org
Description: Custom WordPress theme for the Ataribuno Cervix Foundation (ACF) — a nonprofit dedicated to preventing gynecologic cancers among women in underserved communities. Teal-anchored palette drawn from the cervical cancer awareness ribbon, with dedicated templates for Home, About, Our Work, Events, Contact and Donate.
Version: 1.2.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: acf-ataribuno
Tags: nonprofit, health, charity, custom-menu, featured-images, translation-ready
*/

/* ---------------------------------------------------------------------------
   1. Tokens
--------------------------------------------------------------------------- */
:root {
  --ink: #12292b;
  --ink-soft: #3d5456;
  --teal-900: #0b3b3e;
  --teal-700: #0f5b60;
  --teal-500: #17797f;
  --teal-300: #7fb5b3;
  --teal-100: #ddedec;
  --paper: #f7fbfa;
  --white: #ffffff;
  --gold: #d9962e;
  --gold-dark: #b87c1c;
  --rose: #c9556b;
  --border: #d5e4e3;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Public Sans", -apple-system, "Segoe UI", sans-serif;

  --size-hero: clamp(2.4rem, 5.5vw, 4.2rem);
  --size-h2: clamp(1.7rem, 3.4vw, 2.6rem);
  --size-h3: clamp(1.25rem, 2vw, 1.5rem);

  --wrap: 1160px;
  --wrap-narrow: 760px;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(11, 59, 62, 0.10);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------------------------------------------------------------------------
   2. Base
--------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--teal-900);
  margin: 0 0 0.6em;
  letter-spacing: -0.01em;
}
h1 { font-size: var(--size-hero); }
h2 { font-size: var(--size-h2); }
h3 { font-size: var(--size-h3); }

p { margin: 0 0 1.2em; }

a { color: var(--teal-700); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--teal-500); }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 clamp(1.1rem, 4vw, 2rem); }
.wrap--narrow { max-width: var(--wrap-narrow); }

.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
}
.skip-link {
  position: absolute;
  left: 1rem; top: -100px;
  background: var(--teal-900); color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 0 0 8px 8px;
  z-index: 999;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 0; color: #fff; }

/* ---------------------------------------------------------------------------
   3. Buttons
--------------------------------------------------------------------------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s, color 0.2s, border-color 0.2s;
}
.btn:hover { transform: translateY(-2px); }

.btn--gold { background: var(--gold); color: var(--teal-900); }
.btn--gold:hover { background: var(--gold-dark); color: #fff; }

.btn--teal { background: var(--teal-700); color: #fff; }
.btn--teal:hover { background: var(--teal-500); color: #fff; }

.btn--ghost { background: transparent; color: var(--teal-900); border-color: var(--teal-700); }
.btn--ghost:hover { background: var(--teal-700); color: #fff; }

.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); }
.btn--ghost-light:hover { background: #fff; color: var(--teal-900); }

/* ---------------------------------------------------------------------------
   4. Header / navigation
--------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(247, 251, 250, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.8rem clamp(1.1rem, 4vw, 2rem);
  max-width: var(--wrap);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}
.brand__mark { width: 42px; height: 42px; flex: none; }
.brand__text { line-height: 1.15; }
.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--teal-900);
  display: block;
}
.brand__tag {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-500);
  display: block;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 0.2rem;
  margin: 0; padding: 0;
}
.main-nav a {
  display: block;
  padding: 0.55rem 0.85rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  text-decoration: none;
  border-radius: 8px;
}
.main-nav a:hover,
.main-nav .current-menu-item > a,
.main-nav .current_page_item > a {
  color: var(--teal-700);
  background: var(--teal-100);
}
.main-nav .menu-item-donate > a {
  background: var(--gold);
  color: var(--teal-900);
  border-radius: 999px;
  padding-inline: 1.3rem;
  margin-left: 0.5rem;
}
.main-nav .menu-item-donate > a:hover { background: var(--gold-dark); color: #fff; }

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--teal-700);
  border-radius: 8px;
  padding: 0.45rem 0.6rem;
  color: var(--teal-900);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

@media (max-width: 880px) {
  .nav-toggle { display: inline-flex; align-items: center; gap: 0.4rem; }
  .main-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    display: none;
    padding: 0.8rem 1.2rem 1.2rem;
  }
  .main-nav.is-open { display: block; }
  .main-nav ul { flex-direction: column; gap: 0.1rem; }
  .main-nav .menu-item-donate > a { margin: 0.5rem 0 0; text-align: center; }
}

/* ---------------------------------------------------------------------------
   5. Hero + ribbon signature
--------------------------------------------------------------------------- */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--teal-900) 0%, var(--teal-700) 70%, var(--teal-500) 100%);
  color: #fff;
  overflow: hidden;
}
.hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: clamp(4rem, 9vw, 7.5rem) clamp(1.1rem, 4vw, 2rem) clamp(5rem, 10vw, 8rem);
}
.hero h1 { color: #fff; max-width: 15ch; }
.hero__lede {
  max-width: 52ch;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--teal-100);
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-100);
  margin-bottom: 1.4rem;
}
.hero__eyebrow::before {
  content: "";
  width: 34px; height: 2px;
  background: var(--gold);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2rem; }

/* The ribbon arc — signature element */
.ribbon-arc {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.ribbon-arc svg { width: 100%; height: 100%; }

/* Page hero (interior pages) */
.page-hero {
  background: linear-gradient(150deg, var(--teal-900), var(--teal-700));
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-hero__inner {
  position: relative; z-index: 2;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 4.5rem) clamp(1.1rem, 4vw, 2rem);
}
.page-hero h1 { color: #fff; margin-bottom: 0.3em; }
.page-hero p { color: var(--teal-100); max-width: 60ch; margin: 0; }

/* ---------------------------------------------------------------------------
   6. Sections
--------------------------------------------------------------------------- */
.section { padding: clamp(3.2rem, 7vw, 5.5rem) 0; }
.section--tint { background: var(--teal-100); }
.section--white { background: var(--white); }
.section--dark { background: var(--teal-900); color: var(--teal-100); }
.section--dark h2, .section--dark h3 { color: #fff; }

.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-500);
  margin-bottom: 0.8rem;
}
.section__eyebrow .ribbon-glyph { width: 16px; height: 20px; flex: none; }
.section__intro { max-width: 62ch; color: var(--ink-soft); }
.section--dark .section__intro { color: var(--teal-100); }
.section__head { margin-bottom: 2.4rem; }
.section__head--split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

/* ---------------------------------------------------------------------------
   7. Cards & grids
--------------------------------------------------------------------------- */
.grid { display: grid; gap: 1.5rem; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid--3, .grid--2, .grid--4 { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card h3 { margin-bottom: 0.2em; }
.card p { color: var(--ink-soft); margin-bottom: 0; font-size: 0.98rem; }
.card__icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--teal-100);
  color: var(--teal-700);
  display: grid;
  place-items: center;
  margin-bottom: 0.9rem;
}
.card__icon svg { width: 24px; height: 24px; }
.card .card__more {
  margin-top: auto;
  padding-top: 0.9rem;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
}
.card .card__more::after { content: " →"; }

/* Post / event cards */
.post-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.post-card__thumb { aspect-ratio: 16 / 9; background: var(--teal-100); }
.post-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.post-card__body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; gap: 0.4rem; flex: 1; }
.post-card__meta {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-500);
}
.post-card h3 { font-size: 1.2rem; margin: 0; }
.post-card h3 a { color: var(--teal-900); text-decoration: none; }
.post-card h3 a:hover { color: var(--teal-500); }
.post-card p { font-size: 0.95rem; color: var(--ink-soft); margin: 0; }

/* Impact story quote cards */
.story-card {
  background: var(--white);
  border-left: 5px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow);
  padding: 1.8rem 1.7rem;
}
.story-card blockquote {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--teal-900);
}
.story-card cite {
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-500);
}

/* Numbered pathway (Our Work: prevention steps) */
.pathway { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
.pathway li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
}
.pathway .pathway__step {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--teal-300);
  line-height: 1;
  padding-top: 0.15rem;
}
.pathway h3 { font-size: 1.15rem; margin-bottom: 0.25em; }
.pathway p { margin: 0; color: var(--ink-soft); font-size: 0.97rem; }

/* ---------------------------------------------------------------------------
   8. Donate band + newsletter
--------------------------------------------------------------------------- */
.donate-band {
  background: linear-gradient(120deg, var(--teal-900), var(--teal-700));
  color: #fff;
  position: relative;
  overflow: hidden;
}
.donate-band__inner {
  position: relative; z-index: 2;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 4.5rem) clamp(1.1rem, 4vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.donate-band h2 { color: #fff; margin: 0 0 0.3em; }
.donate-band p { color: var(--teal-100); max-width: 55ch; margin: 0; }

.newsletter-form { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-top: 1.4rem; }
.newsletter-form input[type="email"] {
  flex: 1 1 260px;
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  font: inherit;
  background: var(--white);
  color: var(--ink);
}
.newsletter-form input[type="email"]:focus { outline: 3px solid var(--gold); outline-offset: 1px; }

/* ---------------------------------------------------------------------------
   9. Content (single posts / pages)
--------------------------------------------------------------------------- */
.entry-content { max-width: var(--wrap-narrow); margin: 0 auto; }
.entry-content > * { margin-bottom: 1.3em; }
.entry-content h2, .entry-content h3 { margin-top: 1.6em; }
.entry-content ul, .entry-content ol { padding-left: 1.4rem; }
.entry-content blockquote {
  border-left: 4px solid var(--gold);
  margin: 1.5em 0;
  padding: 0.4em 0 0.4em 1.2em;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--teal-900);
}
.entry-content img { border-radius: var(--radius); }
.entry-meta {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal-500);
}
.wp-block-image figcaption { font-size: 0.85rem; color: var(--ink-soft); }
.alignwide { max-width: var(--wrap); }
.alignfull { max-width: none; }

/* FAQ accordion */
.faq details {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.4rem;
  margin-bottom: 0.8rem;
}
.faq summary {
  font-weight: 700;
  color: var(--teal-900);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.4rem; color: var(--teal-500); line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq details p { margin: 0.8rem 0 0; color: var(--ink-soft); }

/* Contact blocks */
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 2.5rem; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
.contact-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1rem;
  align-items: start;
}
.contact-list .card__icon { margin: 0; }
.contact-list strong { display: block; color: var(--teal-900); }
.contact-list span, .contact-list a { color: var(--ink-soft); }

/* Donation option tiers */
.tier {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.7rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.tier:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.tier--featured { border: 2px solid var(--gold); position: relative; }
.tier--featured::before {
  content: "Most impact";
  position: absolute;
  top: -0.8rem; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--teal-900);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.9rem;
  border-radius: 999px;
  white-space: nowrap;
}
.tier h3 { margin: 0; }
.tier p { color: var(--ink-soft); font-size: 0.95rem; flex: 1; }
.tier .btn { margin-top: 0.4rem; }

/* ---------------------------------------------------------------------------
   10. Footer
--------------------------------------------------------------------------- */
.site-footer {
  background: var(--teal-900);
  color: var(--teal-100);
  margin-top: 0;
}
.site-footer a { color: var(--teal-100); text-decoration: none; }
.site-footer a:hover { color: var(--gold); }
.site-footer__grid {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 4rem) clamp(1.1rem, 4vw, 2rem) 2rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
}
@media (max-width: 880px) { .site-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .site-footer__grid { grid-template-columns: 1fr; } }
.site-footer h4 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.5rem; }
.site-footer .brand__name, .site-footer .brand__tag { color: #fff; }
.site-footer .brand__tag { color: var(--teal-300); }
.site-footer__about { font-size: 0.95rem; margin-top: 1rem; color: var(--teal-300); }
.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.14);
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 1.3rem clamp(1.1rem, 4vw, 2rem);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--teal-300);
}

/* ---------------------------------------------------------------------------
   11. Utilities & misc
--------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

.pagination { display: flex; gap: 0.4rem; justify-content: center; margin-top: 3rem; flex-wrap: wrap; }
.pagination .page-numbers {
  display: inline-grid;
  place-items: center;
  min-width: 42px; height: 42px;
  padding: 0 0.7rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--white);
  text-decoration: none;
  font-weight: 700;
}
.pagination .page-numbers.current { background: var(--teal-700); color: #fff; border-color: var(--teal-700); }

.search-form { display: flex; gap: 0.6rem; }
.search-form input[type="search"] {
  flex: 1;
  padding: 0.8rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  font: inherit;
}

.error-404 { text-align: center; padding: 5rem 0; }
.error-404 h1 { font-size: clamp(3rem, 8vw, 5rem); }

.wp-caption { max-width: 100%; }
.sticky { display: block; }
.bypostauthor { display: block; }
.gallery-caption { display: block; }
.alignleft { float: left; margin: 0 1.5rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1.5rem; }
.aligncenter { margin-left: auto; margin-right: auto; }

/* ---------------------------------------------------------------------------
   12. Founder page
--------------------------------------------------------------------------- */
.founder-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 880px) { .founder-grid { grid-template-columns: 1fr; } }
.founder-grid__photo img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  object-fit: cover;
}
.founder-placeholder {
  aspect-ratio: 4 / 5;
  border: 2px dashed var(--teal-300);
  border-radius: var(--radius);
  background: var(--teal-100);
  display: grid;
  place-content: center;
  gap: 1rem;
  text-align: center;
  padding: 2rem;
  color: var(--teal-700);
  font-size: 0.9rem;
}
.founder-placeholder__glyph { width: 48px; height: 60px; margin: 0 auto; color: var(--teal-500); }
.founder-message { margin-top: 1.5rem; }
.founder-quote {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.4;
  color: #fff;
}
.founder-quote::before { content: "\201C"; color: var(--gold); }
.founder-quote::after { content: "\201D"; color: var(--gold); }

/* Founder photo card */
.founder-grid__photo { max-width: 380px; }
.founder-grid__photo img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: top;
}
.founder-card {
  background: var(--teal-900);
  color: var(--teal-100);
  border-radius: 0 0 var(--radius) var(--radius);
  margin-top: -10px;
  position: relative;
  padding: 1.1rem 1.3rem;
  font-size: 0.9rem;
}
.founder-card strong {
  display: block;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.05rem;
}
@media (max-width: 880px) { .founder-grid__photo { max-width: 320px; } }

/* Single-page landing: offset anchored sections below the sticky header */
[id] { scroll-margin-top: 84px; }

.about-background {
  background: var(--teal-100);
  border-left: 5px solid var(--teal-500);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.6rem 1.8rem;
  margin-top: 2rem;
}
.section--white .about-background { background: var(--paper); }
.about-background h3 { margin-bottom: 0.3em; }
.about-background p { margin: 0; color: var(--ink-soft); }

/* Sections receiving focus from anchor navigation: no visible ring on the whole block */
section:focus, section:focus-visible { outline: none; }
