/* ===========================================================
   Be Good House — high-contrast editorial system
   Brand: ink black + cream + single gold accent
   =========================================================== */

:root {
  --ink: #0A0A0A;
  --ink-soft: #1A1A1A;
  --ink-deep: #050505;
  --cream: #FAF7F0;
  --cream-soft: #F2EEE3;
  --bg: #FAF7F0;
  --gold: #D4A24C;
  --gold-deep: #A8802B;
  --gold-soft: #E8C988;
  --muted: #6B6760;
  --line: #E5E0D2;
  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  width: 100%;
  max-width: 100vw;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--ink); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--gold-deep); }
::selection { background: var(--gold); color: var(--ink); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: -0.015em;
  line-height: 1.05;
  margin: 0 0 .5em;
  color: var(--ink);
  font-weight: 800;
}
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3rem); }
h3 { font-size: 1.55rem; }
h4 { font-size: 1.15rem; }
p { margin: 0 0 1em; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  color: var(--gold-deep);
  font-weight: 700;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1.5px;
  background: var(--gold);
}

.gold-rule {
  display: block;
  width: 80px;
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold-soft), transparent);
  border: 0;
  margin: 28px auto;
  border-radius: 999px;
}
.text-center .gold-rule { margin-left: auto; margin-right: auto; }

/* ============== Header ============== */
.site-header {
  background: var(--ink);
  color: var(--cream);
  border-bottom: 1px solid rgba(212, 162, 76, 0.18);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.site-header .logo img { height: 72px; width: auto; filter: brightness(0) invert(1); }
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(250, 247, 240, 0.3);
  color: var(--cream);
  padding: 8px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: 4px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.main-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 32px; align-items: center; }
.main-nav a, .main-nav .has-dropdown > span {
  color: var(--cream);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}
.main-nav a:hover, .main-nav .has-dropdown > span:hover { color: var(--gold); }
.main-nav .has-dropdown { position: relative; padding-bottom: 20px; margin-bottom: -20px; }
.main-nav .has-dropdown > span { display: inline-flex; align-items: center; gap: 6px; }
.main-nav .chevron { width: 9px; height: 9px; transition: transform 0.2s ease; }
.main-nav .has-dropdown:hover .chevron,
.main-nav .has-dropdown.open .chevron { transform: rotate(180deg); }
.main-nav .dropdown {
  position: absolute;
  top: 100%;
  left: -16px;
  margin-top: 6px;
  background: var(--ink);
  border: 1px solid rgba(212, 162, 76, 0.25);
  list-style: none;
  padding: 8px 0;
  min-width: 260px;
  display: none;
  flex-direction: column;
  gap: 0;
  z-index: 50;
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}
.main-nav .dropdown a { display: block; padding: 12px 20px; font-size: 0.78rem; }
.main-nav .dropdown a:hover { background: rgba(212, 162, 76, 0.12); color: var(--gold); }
.main-nav .has-dropdown:hover .dropdown,
.main-nav .has-dropdown.open .dropdown { display: flex; }

.nav-cta {
  display: inline-flex !important;
  padding: 10px 20px !important;
  background: var(--gold);
  color: var(--ink) !important;
  border-radius: 4px;
  font-weight: 700 !important;
}
.nav-cta:hover { background: var(--gold-soft); color: var(--ink) !important; }

/* ============== Buttons ============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: 4px;
  border: 2px solid var(--gold);
  cursor: pointer;
  font-size: 0.85rem;
  text-align: center;
  font-family: var(--font-sans);
  transition: all .2s ease;
  min-height: 56px;
}
.btn:hover {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
  color: var(--ink);
  transform: translateY(-1px);
}
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.btn-ghost { background: transparent; color: var(--cream); border-color: rgba(250, 247, 240, 0.3); }
.btn-ghost:hover { background: rgba(250, 247, 240, 0.08); border-color: var(--gold); color: var(--cream); }
.btn-row { display: flex; flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 14px; margin: 32px auto; }
.btn-row.left { justify-content: flex-start; }

/* Contact page: 2x2 secondary action grid under the primary Contact Us CTA */
.contact-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 240px));
  gap: 14px;
  max-width: 540px;
  margin: 0 auto;
  justify-content: center;
}
.contact-actions .btn { width: 100%; min-height: 56px; }
@media (max-width: 540px) {
  .contact-actions { grid-template-columns: 1fr; max-width: 320px; }
}

/* ============== Sections ============== */
section { padding: 96px 0; }
.section-cream { background: var(--cream-soft); }
.section-dark { background: var(--ink); color: var(--cream); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--cream); }
.section-dark p { color: rgba(250, 247, 240, 0.85); }
.section-dark .eyebrow { color: var(--gold); }

/* ============== Hero ============== */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
  padding: 120px 0 110px;
  text-align: center;
}
.hero h1 { color: var(--cream); }
.hero h1 .accent { color: var(--gold); font-style: italic; font-weight: 800; }
.hero p { color: rgba(250, 247, 240, 0.82); max-width: 720px; margin-left: auto; margin-right: auto; font-size: 1.15rem; }
.hero .container { position: relative; z-index: 2; }
.hero .eyebrow { color: var(--gold); }

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-bg::before, .hero-bg::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.18;
}
.hero-bg::before {
  top: -160px;
  right: -120px;
  width: 540px;
  height: 540px;
  background: var(--gold);
}
.hero-bg::after {
  bottom: -180px;
  left: -120px;
  width: 460px;
  height: 460px;
  background: var(--gold-deep);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(212,162,76,0.35) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.08;
  z-index: 1;
  pointer-events: none;
}

/* hero variants used per page */
.hero-compact { padding: 80px 0 72px; }
.hero-compact h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); }

/* hero with side image/logo (home) */
.hero-split .container { position: relative; z-index: 2; }
.hero-split .hero-grid-2 {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 64px;
  align-items: center;
  text-align: left;
}
.hero-split p, .hero-split h1 { text-align: left; margin-left: 0; margin-right: 0; }

/* ----- Orbiting logo treatment (BGH crest in hero) ----- */
.hero-mark {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
}
.hero-mark-glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(closest-side,
    rgba(212, 162, 76, 0.55),
    rgba(168, 128, 43, 0.32) 55%,
    transparent 75%);
  filter: blur(48px);
  animation: bgh-glow-pulse 5s ease-in-out infinite;
}
.hero-mark-orbit {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  animation: bgh-orbit-spin 60s linear infinite;
  transform-origin: center;
}
.hero-mark-orbit-reverse {
  animation: bgh-orbit-spin 90s linear infinite reverse;
}
.hero-mark-logo {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bgh-float 6s ease-in-out infinite;
  will-change: transform;
}
.hero-mark-logo img {
  width: 62%;
  height: auto;
  /* Source PNG artwork is slightly left of its canvas center — nudge right to optically center within orbit rings */
  transform: translateX(2.5%);
  filter:
    brightness(0) invert(1)
    drop-shadow(0 0 24px rgba(212, 162, 76, 0.55))
    drop-shadow(0 10px 30px rgba(212, 162, 76, 0.35));
}
.hero-wordmark {
  position: absolute;
  inset-inline: 0;
  bottom: -8px;
  text-align: center;
  pointer-events: none;
}
.hero-wordmark p {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.3vw, 1.2rem);
  letter-spacing: 0.34em;
  color: var(--cream);
  margin: 0;
  text-transform: uppercase;
  line-height: 1;
}
.hero-wordmark .hero-letter {
  display: inline-block;
  animation: bgh-letter-rise 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: var(--d, 0ms);
}
.hero-wordmark .hero-line {
  display: block;
  height: 2px;
  width: 140px;
  margin: 12px auto 0;
  background: linear-gradient(to right, transparent, var(--gold), var(--gold-soft), var(--gold), transparent);
  border-radius: 999px;
  transform-origin: center;
  animation: bgh-line-draw 1s cubic-bezier(0.22, 1, 0.36, 1) 0.7s both;
}

@keyframes bgh-glow-pulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50%      { opacity: 0.95; transform: scale(1.08); }
}
@keyframes bgh-orbit-spin {
  to { transform: rotate(360deg); }
}
@keyframes bgh-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-10px) scale(1.025); }
}
@keyframes bgh-letter-rise {
  from { transform: translateY(40%); opacity: 0; }
  to   { transform: translateY(0);   opacity: 1; }
}
@keyframes bgh-line-draw {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-mark-glow,
  .hero-mark-orbit,
  .hero-mark-logo,
  .hero-wordmark .hero-letter,
  .hero-wordmark .hero-line { animation: none; }
}

/* ============== Grids ============== */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ============== Cards ============== */
.card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 36px 28px;
  transition: all .25s ease;
  position: relative;
}
.card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(10, 10, 10, 0.08);
}
.card h3 { color: var(--ink); margin-bottom: 10px; }
.card p { color: var(--muted); margin: 0; }
.card-icon {
  width: 44px;
  height: 44px;
  margin: 0 0 18px;
  display: block;
  color: var(--gold);
}
.text-center .card-icon { margin-left: auto; margin-right: auto; }

.stat-card { text-align: center; padding: 40px 28px; }
.stat-card .card-icon { color: var(--gold); margin: 0 auto 16px; }
.stat-card .stat {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 12px;
}
.stat-card p { color: var(--muted); font-size: 0.95rem; }

/* Section header — eyebrow + display + rule */
.section-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.section-head p { color: var(--muted); font-size: 1.1rem; }
.section-dark .section-head p { color: rgba(250, 247, 240, 0.78); }

/* ============== Pillars ============== */
.pillar-list { max-width: 880px; margin: 0 auto; }
.pillar {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.pillar:last-child { border-bottom: none; }
.pillar-label {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1;
}
.pillar h3 { font-size: 2rem; color: var(--ink); margin-bottom: 14px; }
.pillar blockquote {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--ink-soft);
  border-left: 2px solid var(--gold);
  padding: 4px 0 4px 18px;
  margin: 14px 0;
  font-size: 1.1rem;
}
.pillar p { color: var(--muted); }

/* ============== Profile / scholar blocks ============== */
.profile-image {
  border-radius: 4px;
  max-width: 460px;
  margin: 0 auto;
  border: 1px solid var(--line);
}
.quote {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--ink);
  border-left: 2px solid var(--gold);
  padding: 6px 0 6px 20px;
  margin: 20px 0;
  font-size: 1.2rem;
  line-height: 1.5;
}
.quote-hero {
  font-family: var(--font-display);
  font-style: italic;
  text-align: center;
  font-size: 1.35rem;
  color: var(--cream);
  max-width: 760px;
  margin: 0 auto 30px;
  line-height: 1.5;
}
.quote-hero cite {
  display: block;
  margin-top: 16px;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

.scholar-attribution { margin-top: 16px; }
.scholar-attribution p { margin-bottom: 2px; color: var(--muted); }
.scholar-attribution p strong { color: var(--ink); font-family: var(--font-display); font-size: 1.1rem; }
.scholar-logo { text-align: left; margin-top: 14px; }
.scholar-logo img { margin: 0; }

ul.bullets { padding-left: 0; list-style: none; }
ul.bullets li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: var(--muted);
}
ul.bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 16px;
  height: 1.5px;
  background: var(--gold);
}

/* ============== Crest block ============== */
.crest-display {
  background: var(--ink);
  color: var(--cream);
  padding: 80px 40px;
  text-align: center;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.crest-display::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(212,162,76,0.18), transparent 65%);
  pointer-events: none;
}
.crest-display img { position: relative; z-index: 1; margin: 0 auto; filter: brightness(0) invert(1); }
.crest-display h2, .crest-display h3 { color: var(--cream); }
.crest-display p { color: rgba(250, 247, 240, 0.8); }

/* ============== Form embed wrapper ============== */
.form-wrap {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 32px;
  margin-top: 24px;
}

/* ============== Donate ============== */
.donate-tiers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 32px;
}
.donate-tiers-3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}
.donate-tier {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 30px 24px;
  text-align: center;
  transition: all .2s ease;
  cursor: pointer;
  display: block;
  color: var(--ink);
}
.donate-tier:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(10, 10, 10, 0.08);
}
.donate-tier.featured {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
  position: relative;
}
.donate-tier.featured:hover { border-color: var(--gold); }
.donate-tier.featured .tier-amount { color: var(--gold); }
.donate-tier.featured .tier-label { color: rgba(250, 247, 240, 0.7); }
.donate-tier.featured .tier-impact { color: rgba(250, 247, 240, 0.9); }
.donate-tier.featured::before {
  content: "Most Impact";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--ink);
  padding: 4px 14px;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 999px;
}
.tier-amount {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 6px;
}
.tier-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 14px;
}
.tier-impact {
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0;
}
.donate-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.donate-info-item {
  text-align: center;
  padding: 28px 20px;
}
.donate-info-item .num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--gold);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 12px;
}
.donate-info-item h4 { font-family: var(--font-sans); font-weight: 700; letter-spacing: 0.05em; }
.donate-info-item p { color: var(--muted); font-size: 0.95rem; margin: 0; }

/* ============== Footer ============== */
.site-footer {
  background: var(--ink-deep);
  color: var(--cream);
  padding: 72px 0 28px;
  border-top: 2px solid var(--gold);
}
.site-footer h4 {
  color: var(--gold);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-family: var(--font-sans);
  font-weight: 700;
}
.site-footer p { color: rgba(250, 247, 240, 0.78); margin-bottom: 8px; }
.site-footer a { color: rgba(250, 247, 240, 0.9); }
.site-footer a:hover { color: var(--gold); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
  align-items: start;
}
.footer-logo img { max-width: 140px; height: auto; filter: brightness(0) invert(1); margin-bottom: 16px; }
.footer-logo p { font-size: 0.9rem; max-width: 320px; color: rgba(250, 247, 240, 0.65); }
.socials { display: flex; flex-direction: column; gap: 10px; }
.socials a { font-size: 0.85rem; color: rgba(250, 247, 240, 0.85); }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(250, 247, 240, 0.1);
  text-align: center;
  font-size: 0.82rem;
  color: rgba(250, 247, 240, 0.55);
}
.footer-bottom a { color: var(--gold); }

/* ============== Fact strip (numbers/impact bar) ============== */
.fact-strip {
  background: var(--ink);
  color: var(--cream);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.fact-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(212, 162, 76, 0.12), transparent 65%);
}
.fact-strip .container { position: relative; z-index: 1; }
.fact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.fact-item .fact-num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.fact-item .fact-label {
  color: rgba(250, 247, 240, 0.78);
  font-size: 0.95rem;
  line-height: 1.4;
  margin: 0;
}

/* ============== Check list (gold-badge bullet alternative) ============== */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.check-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 16px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(212, 162, 76, 0.12);
  color: rgba(250, 247, 240, 0.88);
  line-height: 1.55;
}
.check-list li:last-child { border-bottom: none; }
.check-list .check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(212, 162, 76, 0.14);
  border: 1px solid rgba(212, 162, 76, 0.55);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  transition: all .2s ease;
}
.check-list li:hover .check {
  background: var(--gold);
  border-color: var(--gold);
}
.check-list li:hover .check svg { stroke: var(--ink); }
.check-list .check svg { width: 14px; height: 14px; stroke: var(--gold); }
.check-list strong { color: var(--cream); font-weight: 700; }

/* Two-column dark "achievements" panel */
.achievements {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1080px;
  margin: 0 auto;
  align-items: start;
}
.achievement-col {
  position: relative;
}
.achievement-col + .achievement-col::before {
  content: "";
  position: absolute;
  left: -32px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(212, 162, 76, 0.4), transparent);
}
.achievement-col .col-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 20px;
}
.achievement-col .col-eyebrow .num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0;
}
.achievement-col h3 {
  color: var(--cream);
  font-size: 1.75rem;
  text-align: left;
  margin-bottom: 24px;
}

/* ============== Mission split (text + dark stat panel) ============== */
.mission-split {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 64px;
  align-items: stretch;
}
.mission-narrative p {
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 1.25em;
}
.mission-narrative p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 5.5rem;
  font-weight: 800;
  float: left;
  line-height: 0.82;
  margin: 6px 14px -4px 0;
  color: var(--gold-deep);
}
.mission-narrative strong { color: var(--ink); font-weight: 700; }
.mission-stat-panel {
  background: var(--ink);
  color: var(--cream);
  padding: 48px 40px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mission-stat-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(212, 162, 76, 0.22), transparent 60%);
  pointer-events: none;
}
.mission-stat-panel > * { position: relative; z-index: 1; }
.mission-stat-panel .panel-label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 18px;
}
.mission-stat-panel .big-stat {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 5vw, 4.5rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}
.mission-stat-panel .big-stat-cap {
  font-size: 0.92rem;
  color: rgba(250, 247, 240, 0.75);
  margin: 0 0 28px;
  line-height: 1.4;
}
.mission-stat-panel .sub-stat {
  border-top: 1px solid rgba(212, 162, 76, 0.22);
  padding-top: 18px;
  margin-top: 18px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: baseline;
}
.mission-stat-panel .sub-stat .num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
}
.mission-stat-panel .sub-stat .lbl {
  font-size: 0.85rem;
  color: rgba(250, 247, 240, 0.7);
  line-height: 1.4;
}

/* ============== Value grid (Be Good Approach) ============== */
.approach-star {
  font-size: 1.8rem;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
  text-align: center;
  letter-spacing: 0.8em;
  padding-left: 0.8em;
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 44px 36px 36px;
  position: relative;
  transition: all .25s ease;
  display: flex;
  flex-direction: column;
}
.value-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(10, 10, 10, 0.08);
}
.value-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 64px;
  height: 2px;
  background: var(--gold);
  transition: width .3s ease;
}
.value-card:hover::after { width: 100%; }
.value-card .v-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.6rem;
  color: var(--gold-deep);
  line-height: 0.8;
  margin-bottom: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.value-card .v-name {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 6px;
  letter-spacing: -0.015em;
  line-height: 1;
}
.value-card .v-tag {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 700;
  margin: 0 0 20px;
}
.value-card .v-body {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
  margin: 0 0 24px;
  flex: 1;
}
.value-card .v-scripture {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink);
  border-top: 1px solid var(--line);
  padding-top: 18px;
  margin: 0;
  line-height: 1.45;
}
.value-card .v-scripture cite {
  display: block;
  margin-top: 8px;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 700;
}

/* ============== Hybrid engines (reciprocal arms diagram) ============== */
.engines {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  position: relative;
  align-items: stretch;
}
.engines-link {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--ink);
  border: 2px solid var(--gold);
  transform: translate(-50%, -50%);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  box-shadow: 0 12px 32px rgba(10, 10, 10, 0.18);
}
.engine {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 48px 44px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.engine-svg-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(212, 162, 76, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.engine-svg-wrap svg { width: 28px; height: 28px; color: var(--gold-deep); }
.engine-tag {
  display: inline-block;
  padding: 5px 14px;
  background: var(--ink);
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 999px;
  margin-bottom: 20px;
  align-self: flex-start;
}
.engine h3 {
  text-align: left;
  font-size: 2rem;
  color: var(--ink);
  margin: 0 0 16px;
}
.engine .engine-body {
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 24px;
  flex: 1;
}
.engine-outputs {
  list-style: none;
  padding: 24px 0 0;
  margin: 0;
  border-top: 1px solid var(--line);
}
.engine-outputs li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--ink);
  font-weight: 500;
}
.engine-outputs li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--gold);
  flex-shrink: 0;
  transform: rotate(45deg);
}

/* ============== Team profiles ============== */
.team-profile {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 96px;
}
.team-profile:last-child { margin-bottom: 0; }
.photo-frame {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
}
.photo-frame img {
  width: 100%;
  border-radius: 4px;
  border: 1px solid var(--line);
  display: block;
}
.photo-frame::before {
  content: "";
  position: absolute;
  top: -14px;
  left: -14px;
  width: 80px;
  height: 80px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  pointer-events: none;
}
.photo-frame::after {
  content: "";
  position: absolute;
  bottom: -14px;
  right: -14px;
  width: 80px;
  height: 80px;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  pointer-events: none;
}
.role-chip {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(8px);
  color: var(--gold);
  padding: 8px 16px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 999px;
  border: 1px solid rgba(212, 162, 76, 0.3);
}
.team-role-tag {
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 700;
  margin-bottom: 8px;
}
.team-name {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 24px;
  letter-spacing: -0.015em;
  line-height: 1;
}
.team-bio {
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 14px;
  font-size: 1.02rem;
}
.team-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0;
}
.team-credentials span {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 7px 14px;
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
}
.team-quote {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--ink);
  border-left: 2px solid var(--gold);
  padding: 6px 0 6px 20px;
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.5;
}
.team-quote cite {
  display: block;
  margin-top: 8px;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 700;
}
.team-profile.reverse { grid-template-columns: 7fr 5fr; }
.team-profile.reverse .photo-frame { order: 2; }
.team-profile.reverse .photo-frame::before {
  left: auto; right: -14px;
  border-left: none; border-right: 2px solid var(--gold);
}
.team-profile.reverse .photo-frame::after {
  right: auto; left: -14px;
  border-right: none; border-left: 2px solid var(--gold);
}
.team-profile .photo-frame { max-width: none; }

/* CTA strip pattern overlay */
.cta-strip-rich .cta-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(212,162,76,0.35) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.1;
  pointer-events: none;
}
.cta-strip-rich .cta-divider {
  display: block;
  width: 60px;
  height: 1.5px;
  margin: 0 auto 28px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

/* ============== Pull quote (editorial scripture) ============== */
.pull-quote {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 24px 0;
}
.pull-quote blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  line-height: 1.4;
  color: var(--ink);
  margin: 0;
  padding: 0 24px;
  position: relative;
}
.pull-quote blockquote::before,
.pull-quote blockquote::after {
  content: "";
  display: block;
  width: 60px;
  height: 1.5px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 18px auto;
}
.pull-quote cite {
  display: block;
  margin-top: 8px;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 700;
}
.section-dark .pull-quote blockquote { color: var(--cream); }
.section-dark .pull-quote cite { color: var(--gold); }

/* ============== Final CTA strip ============== */
.cta-strip {
  background: var(--ink);
  color: var(--cream);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(212,162,76,0.15), transparent 65%);
}
.cta-strip .container { position: relative; z-index: 1; }
.cta-strip h2 { color: var(--cream); }
.cta-strip p { color: rgba(250, 247, 240, 0.8); max-width: 640px; margin: 0 auto 28px; font-size: 1.15rem; }

/* ============== Partners ============== */
.partners {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 64px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.partners img {
  max-width: 200px;
  height: auto;
  opacity: 0.7;
  transition: opacity .2s ease;
  filter: grayscale(100%);
}
.partners a:hover img { opacity: 1; filter: grayscale(0%); }

/* ============== Mobile ============== */
@media (max-width: 900px) {
  section { padding: 64px 0; }
  .hero { padding: 80px 0 72px; }
  .hero-split .hero-grid-2 { grid-template-columns: 1fr; gap: 56px; text-align: center; }
  .hero-split p, .hero-split h1 { text-align: center; margin-left: auto; margin-right: auto; }
  .hero-mark { max-width: 340px; }
  .hero-wordmark p { font-size: 0.85rem; letter-spacing: 0.28em; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .donate-tiers { grid-template-columns: 1fr 1fr; }
  .donate-info { grid-template-columns: 1fr; }
  .pillar { grid-template-columns: 1fr; gap: 12px; }
  .pillar-label { font-size: 1.5rem; }
  .fact-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .achievements { grid-template-columns: 1fr; gap: 48px; }
  .mission-split { grid-template-columns: 1fr; gap: 40px; }
  .value-grid { grid-template-columns: 1fr; }
  .engines { grid-template-columns: 1fr; gap: 56px; }
  .engines-link { display: none; }
  .team-profile, .team-profile.reverse { grid-template-columns: 1fr; gap: 40px; margin-bottom: 64px; }
  .team-profile.reverse .photo-frame { order: 0; }
  .photo-frame { max-width: 420px; }
  .photo-frame::before { top: -8px; left: -8px; width: 56px; height: 56px; }
  .photo-frame::after { bottom: -8px; right: -8px; width: 56px; height: 56px; }
  .team-profile.reverse .photo-frame::before { left: auto; right: -8px; }
  .team-profile.reverse .photo-frame::after { right: auto; left: -8px; }
  .achievement-col + .achievement-col::before {
    left: 0; right: 0; top: -24px;
    width: auto; height: 1px;
    background: linear-gradient(to right, transparent, rgba(212, 162, 76, 0.4), transparent);
  }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .nav-toggle { display: inline-flex; }
  .main-nav { display: none; width: 100%; }
  .main-nav.open { display: block; }
  .site-header .container { flex-wrap: wrap; }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 0; width: 100%; margin-top: 12px; }
  .main-nav ul li {
    width: 100%;
    padding: 0;
    border-bottom: 1px solid rgba(250, 247, 240, 0.08);
  }
  /* Reset desktop hover-bridge hack on mobile so spacing stays even */
  .main-nav .has-dropdown {
    padding-bottom: 0;
    margin-bottom: 0;
  }
  /* Whole row is the tap target — links + dropdown trigger fill their li */
  .main-nav ul li > a,
  .main-nav .has-dropdown > span {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 16px 4px;
    box-sizing: border-box;
  }
  .main-nav .has-dropdown > span { justify-content: space-between; }
  .main-nav .dropdown {
    position: static;
    border: none;
    box-shadow: none;
    padding: 0 0 6px 16px;
    margin: 0;
  }
  .main-nav .dropdown li { border-bottom: none; }
  .main-nav .dropdown a { padding: 12px 4px; }
  /* Donate pill becomes a full-width gold button on mobile */
  .main-nav .nav-cta {
    display: flex !important;
    justify-content: center;
    width: 100%;
    padding: 16px 4px !important;
    margin-top: 8px;
    border-radius: 4px;
  }
  .site-header .logo img { height: 56px; }
  .partners { gap: 32px; }
  .partners img { max-width: 140px; }
  .crest-display { padding: 56px 24px; }
  .form-wrap { padding: 20px; }
}

@media (max-width: 540px) {
  .donate-tiers { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .btn-row { flex-direction: column; }
}
