/* ============================================================
   VIBRANT HEALTH ADVOCATES – SIRIUS
   Warm & Human Community Design System
   ============================================================ */

:root {
  --cream:           #FAF6EE;
  --cream-dark:      #F0E4CC;
  --cream-border:    #EDD8BB;
  --terracotta:      #C96A3A;
  --terracotta-soft: #E8936A;
  --terracotta-pale: #FBE8D8;
  --brand:           #7B2D8B;
  --brand-light:     #F0D9F5;
  --brand-mid:       #A855B8;
  --text:            #2C1A0E;
  --text-mid:        #5C3D2E;
  --text-light:      #8B6858;
  --white-warm:      #FFFBF4;
  --shadow:          0 4px 20px rgba(44,26,14,0.12);
  --shadow-lift:     0 8px 36px rgba(44,26,14,0.18);
  --r-photo:         24px;
  --r-card:          16px;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: system-ui,-apple-system,'Segoe UI',Helvetica,Arial,sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.75;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── HEADER / NAV ── */
.site-header {
  background: var(--white-warm);
  border-bottom: 2px dotted var(--cream-border);
  padding: 0 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(44,26,14,0.07);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 2rem;
}
.brand-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}
.brand-lockup .logo-icon {
  width: 46px;
  height: 46px;
  object-fit: contain;
  flex-shrink: 0;
}
.brand-lockup .wordmark {
  height: 34px;
  width: auto;
  object-fit: contain;
  max-width: 260px;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: wrap;
}
.site-nav a {
  color: var(--text);
  font-weight: 600;
  font-size: 0.925rem;
  padding: 7px 15px;
  border-radius: 99px;
  transition: background 0.18s, color 0.18s;
  white-space: nowrap;
  text-decoration: none;
}
.site-nav a:hover,
.site-nav a.active {
  background: var(--brand-light);
  color: var(--brand);
  text-decoration: none;
}
.nav-cta {
  background: var(--brand) !important;
  color: #fff !important;
  padding: 8px 20px !important;
}
.nav-cta:hover {
  background: var(--brand-mid) !important;
  color: #fff !important;
}
.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--cream-border);
  cursor: pointer;
  padding: 7px 9px;
  border-radius: 8px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 99px;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--text);
  color: #EDD8BB;
  padding: 4rem 2rem 2rem;
  margin-top: 5rem;
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 3rem;
}
.footer-brand .footer-logo-icon {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  margin-bottom: 10px;
}
.footer-brand .footer-wordmark {
  height: 26px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  margin-bottom: 14px;
  display: block;
}
.footer-brand p {
  font-size: 0.88rem;
  color: #C9A880;
  line-height: 1.65;
}
.footer-links h4,
.footer-contact h4 {
  color: #F4E4CC;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.45rem; }
.footer-links a {
  color: #C9A880;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--brand-light); }
.footer-contact p {
  color: #C9A880;
  font-size: 0.86rem;
  line-height: 1.8;
  overflow-wrap: break-word;
  word-break: break-all;
}
.footer-contact a {
  color: var(--brand-light);
  word-break: break-all;
}
.footer-contact a:hover { text-decoration: underline; }
.footer-bottom {
  max-width: 1160px;
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-bottom p { color: #7A6050; font-size: 0.8rem; }

/* ── SQUIGGLE DIVIDERS ── */
.squiggle-wrap {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  padding: 0.5rem 0;
}
.squiggle-wrap svg { display: block; width: 100%; }
.squiggle-sm {
  text-align: center;
  margin: 2.5rem auto;
}
.squiggle-sm svg { display: inline-block; width: 220px; }

/* ── HERO (full-bleed with pullup card) ── */
.hero-section { position: relative; }
.hero-img-wrap {
  position: relative;
  width: 100%;
  height: 540px;
  overflow: hidden;
}
.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}
.hero-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(44,26,14,0.08) 0%,
    rgba(44,26,14,0.15) 40%,
    rgba(44,26,14,0.55) 100%
  );
}
.hero-text-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 3.5rem;
  text-align: center;
  padding-left: 2rem;
  padding-right: 2rem;
}
.hero-eyebrow {
  display: inline-block;
  background: var(--brand-light);
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 5px 16px;
  border-radius: 99px;
  margin-bottom: 1.1rem;
}
.hero-text-overlay h1 {
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  max-width: 820px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.35);
  margin-bottom: 1rem;
}
.hero-text-overlay .hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.92);
  max-width: 600px;
  text-shadow: 0 1px 10px rgba(0,0,0,0.3);
  line-height: 1.7;
}
.hero-pullup-outer {
  display: flex;
  justify-content: center;
  padding: 0 2rem;
}
.hero-pullup-card {
  margin-top: -72px;
  position: relative;
  z-index: 10;
  background: var(--white-warm);
  border-radius: 20px;
  box-shadow: var(--shadow-lift);
  padding: 2rem 3rem;
  border: 3px solid var(--cream-border);
  width: min(740px, 100%);
}
.stat-row {
  display: flex;
  justify-content: center;
  gap: 3.5rem;
  flex-wrap: wrap;
  align-items: center;
}
.stat-item { text-align: center; }
.stat-item .num {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--terracotta);
  line-height: 1;
  display: block;
}
.stat-item .lbl {
  font-size: 0.84rem;
  color: var(--text-mid);
  font-weight: 600;
  display: block;
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--cream-border);
  flex-shrink: 0;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  position: relative;
  width: 100%;
  height: clamp(260px, 32vw, 400px);
  overflow: hidden;
}
.page-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(44,26,14,0.6) 0%, rgba(44,26,14,0.1) 65%);
}
.page-hero-text {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem 3rem;
  max-width: 700px;
}
.page-eyebrow {
  display: inline-block;
  background: var(--brand-light);
  color: var(--brand);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 4px 13px;
  border-radius: 99px;
  margin-bottom: 0.75rem;
  width: fit-content;
}
.page-hero-text h1 {
  font-size: clamp(1.7rem, 3.5vw, 2.7rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  text-shadow: 0 2px 14px rgba(0,0,0,0.3);
}

/* ── SECTIONS ── */
.section        { padding: 5rem 2rem; }
.section-inner  { max-width: 1160px; margin: 0 auto; }
.section-narrow { max-width: 800px; margin: 0 auto; }
.section--cream { background: var(--cream); }
.section--white { background: var(--white-warm); }
.section--pale  { background: var(--terracotta-pale); }
.section--brand { background: var(--brand-light); }

.section-label {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--terracotta);
  margin-bottom: 0.6rem;
}
h2.display {
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  font-weight: 900;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 1.2rem;
}
h2.display span { color: var(--terracotta); }
.lead-text {
  font-size: 1.08rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}
.body-text {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.82;
  margin-bottom: 1.2rem;
}
hr.dotted {
  border: none;
  border-top: 2px dotted var(--cream-border);
  margin: 2.5rem 0;
}

/* ── POLAROID CARDS ── */
.polaroid-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  align-items: start;
}
.polaroid-card {
  background: var(--white-warm);
  padding: 12px 12px 40px;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
  border-radius: 3px;
}
.polaroid-card:nth-child(1) { transform: rotate(-2.4deg); margin-top: 0; }
.polaroid-card:nth-child(2) { transform: rotate(1.8deg);  margin-top: 2.2rem; }
.polaroid-card:nth-child(3) { transform: rotate(-1.1deg); margin-top: 0.8rem; }
.polaroid-card:nth-child(4) { transform: rotate(2.2deg);  margin-top: 1.6rem; }
.polaroid-card:hover { box-shadow: var(--shadow-lift); transform: rotate(0deg) scale(1.02) !important; }
.polaroid-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 2px;
  display: block;
}
.polaroid-card .card-body {
  padding: 12px 4px 0;
}
.polaroid-card .card-icon {
  font-size: 1.6rem;
  display: block;
  margin-bottom: 5px;
}
.polaroid-card .card-title-text {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 5px;
  display: block;
}
.polaroid-card .card-text {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
}
.tape-strip {
  display: block;
  width: 48px;
  height: 13px;
  background: rgba(240,217,245,0.75);
  border-radius: 2px;
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(-1.5deg);
}

/* ── FEATURE CARDS ── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}
.feature-card {
  background: var(--white-warm);
  border-radius: var(--r-card);
  padding: 2rem;
  border: 2px dotted var(--cream-border);
  box-shadow: var(--shadow);
  transition: transform 0.22s, box-shadow 0.22s;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lift);
}
.feature-card .icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  margin-bottom: 1rem;
}
.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.55rem;
}
.feature-card p {
  font-size: 0.94rem;
  color: var(--text-mid);
  line-height: 1.75;
}

/* ── PROGRAMME CARDS ── */
.prog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.75rem;
}
.prog-card {
  background: var(--white-warm);
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 2px solid var(--cream-border);
  display: flex;
  flex-direction: column;
  transition: transform 0.22s, box-shadow 0.22s;
}
.prog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }
.prog-card .prog-icon-bar {
  background: var(--terracotta-pale);
  padding: 1.25rem 1.5rem;
  font-size: 2rem;
  border-bottom: 2px solid var(--cream-border);
}
.prog-card .prog-body { padding: 1.5rem; flex: 1; }
.prog-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.prog-card .prog-blurb {
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.72;
  font-weight: 600;
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px dotted var(--cream-border);
}
.prog-card .prog-detail {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.78;
}

/* ── SPLIT LAYOUT ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.split-img {
  border-radius: var(--r-photo);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}
.split-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

/* ── PHOTO CLUSTER (scrapbook) ── */
.photo-cluster {
  position: relative;
  height: 380px;
}
.photo-cluster .pol-a,
.photo-cluster .pol-b {
  position: absolute;
  background: var(--white-warm);
  padding: 11px 11px 36px;
  box-shadow: var(--shadow-lift);
}
.photo-cluster .pol-a {
  width: 76%;
  top: 0; left: 0;
  transform: rotate(-3deg);
  z-index: 1;
}
.photo-cluster .pol-b {
  width: 62%;
  bottom: 0; right: 0;
  transform: rotate(2.8deg);
  z-index: 2;
  border: 2px solid var(--cream-border);
}
.photo-cluster .pol-a img,
.photo-cluster .pol-b img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  border-radius: 1px;
}

/* ── STAMP BADGE ── */
.stamp-badge {
  width: 124px;
  height: 124px;
  border-radius: 50%;
  border: 3px dashed var(--terracotta);
  background: var(--terracotta-pale);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotate(-9deg);
  padding: 14px;
  flex-shrink: 0;
}
.stamp-badge .stamp-num {
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--terracotta);
  line-height: 1;
}
.stamp-badge .stamp-lbl {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--terracotta);
  margin-top: 4px;
  line-height: 1.3;
}

/* ── IMPACT SECTION ── */
.impact-section {
  background: var(--text);
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}
.impact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 30px 30px;
}
.impact-inner {
  max-width: 1160px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.impact-inner > .section-label { color: var(--terracotta-soft); }
.impact-inner > h2.display { color: #F4E4CC; }
.impact-grid {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  align-items: center;
}
.impact-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.impact-stat .num {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--terracotta-soft);
  line-height: 1;
}
.impact-stat .lbl {
  font-size: 0.88rem;
  color: #C9A880;
  font-weight: 600;
  margin-top: 0.4rem;
}
.impact-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.15);
}

/* ── CTA BAND ── */
.cta-band {
  background: var(--brand);
  padding: 5rem 2rem;
  text-align: center;
}
.cta-band h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  max-width: 720px;
  margin: 0 auto 1.75rem;
}
.btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 99px;
  font-weight: 700;
  font-size: 1rem;
  font-family: inherit;
  text-decoration: none;
  transition: transform 0.16s, box-shadow 0.16s;
  cursor: pointer;
  border: none;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 22px rgba(0,0,0,0.22); text-decoration: none; }
.btn-primary   { background: var(--terracotta); color: #fff; }
.btn-white     { background: #fff; color: var(--brand); }
.btn-outline   { background: transparent; color: #fff; border: 2px solid #fff; }
.btn-brand     { background: var(--brand); color: #fff; }

/* ── TRUSTEE CARDS ── */
.trustee-row {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.trustee-card {
  background: var(--white-warm);
  border-radius: var(--r-card);
  padding: 1.5rem 2rem;
  border: 2px dotted var(--cream-border);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 220px;
}
.t-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.t-name { font-weight: 800; font-size: 0.95rem; color: var(--text); }
.t-role { font-size: 0.82rem; color: var(--brand); font-weight: 600; margin-top: 2px; }

/* ── BLOG CARDS ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.blog-card {
  background: var(--white-warm);
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 2px solid var(--cream-border);
  transition: transform 0.22s, box-shadow 0.22s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lift);
  text-decoration: none;
}
.blog-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.blog-card-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-tag {
  display: inline-block;
  background: var(--terracotta-pale);
  color: var(--terracotta);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  border-radius: 99px;
  margin-bottom: 0.65rem;
  width: fit-content;
}
.blog-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.5rem;
  line-height: 1.38;
}
.blog-card .dek {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.68;
  flex: 1;
}
.read-more {
  display: inline-block;
  margin-top: 1rem;
  color: var(--brand);
  font-weight: 700;
  font-size: 0.88rem;
}

/* ── ARTICLE ── */
.article-hero {
  position: relative;
  width: 100%;
  height: clamp(240px, 28vw, 360px);
  overflow: hidden;
}
.article-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.article-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(44,26,14,0.3);
}
.article-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 3.5rem 2rem 5rem;
}
.article-label {
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--terracotta);
  margin-bottom: 0.75rem;
  display: block;
}
.article-wrap h1 {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 900;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 0.85rem;
}
.article-dek {
  font-size: 1.1rem;
  color: var(--text-mid);
  line-height: 1.72;
  margin-bottom: 2.5rem;
  border-left: 4px solid var(--terracotta);
  padding-left: 1rem;
  font-style: italic;
}
.article-body p {
  font-size: 1.04rem;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}
.article-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--brand);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 2rem;
}
.article-back:hover { text-decoration: underline; }

/* ── PULL QUOTE ── */
.pull-quote {
  border-left: 4px solid var(--terracotta);
  padding: 1rem 1.5rem;
  background: var(--terracotta-pale);
  border-radius: 0 12px 12px 0;
  font-size: 1.08rem;
  font-style: italic;
  color: var(--text-mid);
  margin: 2rem 0;
  line-height: 1.78;
}

/* ── MISSION BLOCK ── */
.mission-block {
  border: 2px dotted var(--terracotta);
  border-radius: var(--r-card);
  padding: 2.5rem;
  background: var(--white-warm);
  position: relative;
}
.mission-block .mission-badge {
  position: absolute;
  top: -18px;
  left: 2rem;
  background: var(--terracotta);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 14px;
  border-radius: 99px;
}

/* ── CONTACT LAYOUT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: start;
}
.contact-form-wrap {
  background: var(--white-warm);
  border-radius: var(--r-card);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 2px solid var(--cream-border);
}
.contact-form-wrap h2 {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.contact-form-wrap > p {
  font-size: 0.92rem;
  color: var(--text-mid);
  margin-bottom: 1.75rem;
  line-height: 1.7;
}
.form-row { margin-bottom: 1.1rem; }
.form-row label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text);
  margin-bottom: 0.35rem;
}
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 10px 14px;
  border: 2px solid var(--cream-border);
  border-radius: 10px;
  background: var(--cream);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text);
  transition: border-color 0.15s;
  appearance: none;
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--brand);
  background: #fff;
}
.form-row textarea { min-height: 130px; resize: vertical; }
.contact-details h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1rem;
}
.contact-details .detail-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}
.detail-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.detail-text { font-size: 0.92rem; color: var(--text-mid); line-height: 1.7; overflow-wrap: break-word; }
.detail-text a { color: var(--brand); word-break: break-all; }
.detail-text strong { color: var(--text); display: block; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 2px; }

/* ── DOTS BACKGROUND ── */
.dots-bg {
  background-image: radial-gradient(circle, var(--cream-border) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .photo-cluster { height: 280px; }
  .photo-cluster .pol-b { width: 55%; }
}

@media (max-width: 700px) {
  .nav-toggle { display: flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0; right: 0;
    background: var(--white-warm);
    flex-direction: column;
    padding: 1.25rem 2rem 1.5rem;
    border-bottom: 2px dotted var(--cream-border);
    box-shadow: 0 8px 24px rgba(44,26,14,0.1);
    gap: 2px;
    align-items: flex-start;
    z-index: 99;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 9px 4px; font-size: 1rem; border-radius: 0; width: 100%; }
  .site-header { position: relative; }
  .hero-img-wrap { height: 380px; }
  .hero-text-overlay { padding-top: 2.5rem; }
  .hero-text-overlay h1 { font-size: 1.75rem; }
  .hero-text-overlay .hero-sub { font-size: 0.95rem; }
  .hero-pullup-card { margin-top: -50px; padding: 1.5rem 1.25rem; }
  .stat-row { gap: 1.75rem; }
  .stat-divider { display: none; }
  .polaroid-grid { grid-template-columns: 1fr 1fr; }
  .polaroid-card { transform: none !important; margin-top: 0 !important; }
  .polaroid-card:hover { transform: none !important; }
  .section { padding: 3rem 1.5rem; }
  .impact-grid { gap: 2rem; }
  .impact-divider { display: none; }
  .footer-inner { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .prog-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .trustee-row { flex-direction: column; }
  .trustee-card { min-width: unset; }
  .photo-cluster { display: none; }
  .page-hero-text { padding: 1.5rem; }
  .page-hero-text h1 { font-size: 1.6rem; }
  .contact-form-wrap { padding: 1.5rem; }
}

@media (max-width: 480px) {
  .polaroid-grid { grid-template-columns: 1fr; }
  .hero-pullup-outer { padding: 0 1rem; }
}
