/* ============================================================
   RULANDA — Editorial Nonprofit Stylesheet
   Brand: Cream-dominant editorial. Photo-led. Refined typography.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

/* ----------------------------------------
   1.  TOKENS
   ---------------------------------------- */
:root {
  /* Brand palette */
  --cream:           #F0F6FF;
  --cream-soft:      #F5F9FF;
  --cream-warm:      #E8F0FD;
  --offwhite:        #FAFCFF;
  --paper:           #FFFFFF;

  --gold:            #00AACC;
  --gold-deep:       #007A99;
  --gold-soft:       #33BBDD;

  --orange:          #0A5FC4;
  --orange-deep:     #084BA0;
  --orange-soft:     #1A6ED9;

  --teal:            #0A3D7A;
  --teal-deep:       #062855;
  --teal-soft:       #0D4D96;

  --ink:             #0A1628;
  --ink-soft:        #142240;
  --black:           #050C18;

  --text:            #142240;
  --text-mid:        #3A5280;
  --text-soft:       #6A84B0;
  --line:            rgba(10, 22, 40, 0.10);
  --line-strong:     rgba(10, 22, 40, 0.20);

  /* Typography */
  --font-display:    'DM Sans', system-ui, sans-serif;
  --font-body:       'DM Sans', system-ui, sans-serif;

  /* Geometry */
  --radius-sm:       4px;
  --radius:          8px;
  --radius-lg:       16px;

  /* Shadows */
  --shadow-sm:       0 2px 8px rgba(24, 20, 16, 0.04);
  --shadow:          0 8px 32px rgba(24, 20, 16, 0.08);
  --shadow-lg:       0 24px 64px rgba(24, 20, 16, 0.16);

  /* Easing */
  --ease:            cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:        cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast:          200ms;
  --t-med:           400ms;
  --t-slow:          800ms;
}

/* ----------------------------------------
   2.  BASE RESET
   ---------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; background: none; cursor: pointer; color: inherit; }
ul, ol { list-style: none; }
::selection { background: var(--orange); color: #fff; }

/* ----------------------------------------
   3.  TYPOGRAPHY
   ---------------------------------------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.018em;
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.6rem); letter-spacing: -0.01em; font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.8vw, 3.2rem); letter-spacing: -0.008em; font-weight: 600; }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.8rem); letter-spacing: -0.004em; font-weight: 600; }
h4 { font-size: 1.2rem; line-height: 1.3; }
h5 { font-size: 1rem; }

.display-italic { font-style: normal; font-weight: 600; color: var(--orange); }

p { margin: 0 0 1.1rem; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: clamp(1.1rem, 1.6vw, 1.32rem);
  line-height: 1.6;
  color: var(--text-mid);
  max-width: 60ch;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--orange);
  display: inline-block;
}
.eyebrow.eyebrow--gold { color: var(--gold); }
.eyebrow.eyebrow--gold::before { background: var(--gold); }
.eyebrow.eyebrow--cream { color: var(--cream); }
.eyebrow.eyebrow--cream::before { background: var(--cream); }
.eyebrow.eyebrow--center { justify-content: center; }

.rule {
  width: 56px; height: 2px;
  background: var(--orange);
  border: 0; margin: 24px 0;
}
.rule--center { margin: 24px auto; }
.rule--gold { background: var(--gold); }
.rule--cream { background: var(--cream); }

/* ----------------------------------------
   4.  LAYOUT
   ---------------------------------------- */
.wrap { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.wrap--narrow { max-width: 980px; }
.wrap--text { max-width: 720px; }

.section {
  padding: clamp(72px, 10vw, 132px) 0;
  position: relative;
}
.section--cream { background: var(--cream); }
.section--cream-soft { background: var(--cream-soft); }
.section--paper { background: var(--paper); }
.section--ink { background: var(--ink); color: var(--cream); }
.section--ink h1, .section--ink h2, .section--ink h3, .section--ink h4 { color: var(--cream); }

.tc { text-align: center; }

/* ----------------------------------------
   5.  BUTTONS
   ---------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  font-family: var(--font-body);
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  border-radius: 999px;
  transition: all var(--t-med) var(--ease);
  white-space: nowrap;
  cursor: pointer;
  position: relative;
}
.btn::after {
  content: "→";
  display: inline-block;
  margin-left: 2px;
  transition: transform var(--t-med) var(--ease-out);
  font-size: 1.05em;
}
.btn:hover::after { transform: translateX(4px); }

.btn--primary {
  background: var(--orange);
  color: var(--cream-soft);
  border-color: var(--orange);
}
.btn--primary:hover {
  background: var(--orange-deep);
  border-color: var(--orange-deep);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(196, 80, 26, 0.3);
}

.btn--gold {
  background: var(--gold);
  color: var(--cream-soft);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(204, 139, 10, 0.3);
}

.btn--ink {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.btn--ink:hover {
  background: var(--black);
  transform: translateY(-1px);
}

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

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

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: transparent;
  padding: 8px 0;
  border-radius: 0;
  border-bottom: 1.5px solid var(--ink);
}
.btn--ghost::after { font-size: 1.1em; }
.btn--ghost:hover { color: var(--orange); border-color: var(--orange); }

/* ----------------------------------------
   6.  HEADER / NAV
   ---------------------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 9, 8, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(247, 237, 207, 0.08);
  transition: all var(--t-med) var(--ease);
}
.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  height: 56px;
}
.nav-logo img {
  height: 100%;
  width: auto;
  display: block;
}
.nav-logo span {
  color: #ffffff !important;
}
.ft-logo span {
  color: #ffffff !important;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
  margin-left: auto;
}
.nav-link {
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--cream);
  position: relative;
  padding: 8px 0;
  transition: color var(--t-fast) var(--ease);
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1.5px;
  background: var(--gold-soft);
  transition: width var(--t-med) var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--gold-soft); }
.nav-link.active::after, .nav-link:hover::after { width: 24px; }

.nav-cta {
  display: flex;
  gap: 12px;
  margin-left: 16px;
}
.nav-cta .btn {
  padding: 12px 22px;
  font-size: 0.74rem;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 10px;
  z-index: 101;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all var(--t-med) var(--ease);
}
.burger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mob-nav {
  position: fixed;
  inset: 0;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 32px;
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-med) var(--ease);
}
.mob-nav.is-open { opacity: 1; pointer-events: auto; }
.mob-nav a:not(.mob-nav-logo) {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--cream);
  font-weight: 500;
}
.mob-nav .mob-cta {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 80%;
  max-width: 320px;
  margin-top: 24px;
}
.mob-nav .btn { width: 100%; justify-content: center; }

/* ----------------------------------------
   7.  HERO (with photo carousel)
   ---------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: var(--ink);
}
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  /* Fallback gradient — visible while photo loads or if blocked */
  background-color: #0f0d0a;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(196, 80, 26, 0.18), transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(204, 139, 10, 0.14), transparent 60%),
    linear-gradient(135deg, #1a1612 0%, #0a0907 100%);
  opacity: 0;
  transition: opacity 1500ms var(--ease);
}
.hero-slide.is-active {
  opacity: 1;
  animation: heroKenBurns 9s ease-in-out forwards;
}
@keyframes heroKenBurns {
  0%   { transform: scale(1.04); }
  100% { transform: scale(1.14); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg,
      rgba(10, 9, 8, 0.55) 0%,
      rgba(10, 9, 8, 0.35) 35%,
      rgba(10, 9, 8, 0.65) 80%,
      rgba(10, 9, 8, 0.85) 100%);
}
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}

.hero-inner {
  position: relative;
  z-index: 4;
  width: 100%;
  padding: 168px 0 96px;
  color: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-eyebrow::before {
  content: "";
  width: 36px; height: 1px;
  background: var(--gold-soft);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6.6vw, 6rem);
  line-height: 0.98;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: -0.03em;
  max-width: 16ch;
  margin-bottom: 28px;
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-soft);
}
.hero-sub {
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  color: rgba(247, 237, 207, 0.82);
  max-width: 56ch;
  line-height: 1.55;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-top: 36px;
  border-top: 1px solid rgba(247, 237, 207, 0.18);
  max-width: 720px;
}
.hero-meta-item .num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 500;
  color: var(--cream);
  display: block;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.hero-meta-item .label {
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(247, 237, 207, 0.6);
}

.hero-pager {
  position: absolute;
  bottom: 32px;
  right: 40px;
  z-index: 5;
  display: flex;
  gap: 10px;
}
.hero-dot {
  width: 32px;
  height: 2px;
  background: rgba(247, 237, 207, 0.3);
  cursor: pointer;
  transition: background var(--t-med) var(--ease);
  border: 0;
  padding: 0;
}
.hero-dot.is-active { background: var(--gold-soft); }

/* ----------------------------------------
   8.  PAGE HERO (subpages)
   ---------------------------------------- */
.pg-hero {
  position: relative;
  padding: 200px 0 96px;
  background: var(--cream);
  overflow: hidden;
}
.pg-hero::before {
  content: "";
  position: absolute;
  top: -10%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--cream-warm) 0%, transparent 65%);
  pointer-events: none;
}
.pg-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
}
.crumb {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text-soft);
  margin-bottom: 32px;
  text-transform: uppercase;
}
.crumb a { color: var(--text-mid); transition: color var(--t-fast); }
.crumb a:hover { color: var(--orange); }
.crumb span { margin: 0 10px; opacity: 0.5; }
.pg-hero h1 {
  font-size: clamp(2.4rem, 5.8vw, 5rem);
  margin-top: 18px;
  margin-bottom: 24px;
  max-width: 14ch;
}
.pg-hero p {
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  color: var(--text-mid);
  max-width: 56ch;
  line-height: 1.6;
}

/* ----------------------------------------
   9.  ABOUT INTRO BLOCK
   ---------------------------------------- */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 88px;
  align-items: start;
}
.intro-grid h2 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 400;
  letter-spacing: -0.02em;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 72px;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-img-stack {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 4px;
  overflow: hidden;
  background-color: #2a1f16;
  background-image:
    radial-gradient(circle at 30% 20%, rgba(196, 80, 26, 0.18), transparent 60%),
    linear-gradient(160deg, #2a1f16 0%, #181410 100%);
}
@media (max-width: 768px) {
  .about-img-stack {
    aspect-ratio: 16 / 9;
  }
}
.about-img-stack img {
  width: 100%; height: 100%;
  object-fit: cover;
  font-size: 0;
  color: transparent;
}
.about-img-frame {
  position: absolute;
  inset: 0;
  border: 1px solid var(--orange);
  transform: translate(14px, 14px);
  pointer-events: none;
  z-index: -1;
  border-radius: 4px;
}
.about-stat {
  position: absolute;
  bottom: -28px; left: -28px;
  background: var(--cream);
  padding: 22px 28px;
  border-left: 3px solid var(--orange);
  box-shadow: var(--shadow);
  max-width: 240px;
}
.about-stat .num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.about-stat .lbl {
  font-size: 0.78rem;
  color: var(--text-mid);
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.about-content h2 {
  margin-bottom: 20px;
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
}
.about-content p {
  color: var(--text-mid);
  font-size: 1.04rem;
  line-height: 1.7;
}
.about-content p + p { margin-top: 1.1em; }

.tag-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 32px 0;
}
.tag {
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 8px 16px;
  background: var(--cream);
  color: var(--ink);
  border-radius: 999px;
  border: 1px solid var(--line);
}

/* ----------------------------------------
   10.  PRINCIPLES (guiding principles)
   ---------------------------------------- */
.princ-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 64px;
  border-top: 1px solid var(--line);
}
.princ-item {
  padding: 44px 32px 44px 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.princ-item:nth-child(3n) { border-right: 0; padding-right: 0; }
.princ-item:nth-child(3n+1) { padding-left: 0; }
.princ-item:nth-child(3n+2) { padding-left: 32px; padding-right: 32px; }
.princ-num {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-style: italic;
  color: var(--orange);
  margin-bottom: 18px;
  display: block;
}
.princ-item h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.princ-item p {
  color: var(--text-mid);
  font-size: 0.97rem;
  line-height: 1.65;
}

/* ----------------------------------------
   11.  PILLARS (image-led)
   ---------------------------------------- */
.pillar-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: 80px;
  align-items: end;
}
.pillar-head h2 { max-width: 16ch; }
.pillar-head p {
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 50ch;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.pillar {
  position: relative;
  background: var(--paper);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
.pillar:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.pillar-img {
  aspect-ratio: 5 / 3;
  background-size: cover;
  background-position: center;
  position: relative;
  /* Distinct fallback so missing photos don't blend with cream section bg */
  background-color: #2a221a;
  background-image:
    radial-gradient(circle at 25% 30%, rgba(196, 80, 26, 0.22), transparent 60%),
    linear-gradient(135deg, #2a221a 0%, #1a1410 100%);
}
.pillar-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(24,20,16,0) 50%, rgba(24,20,16,0.35) 100%);
}
.pillar-roman {
  position: absolute;
  top: 16px; left: 18px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--cream);
  background: rgba(24,20,16,0.4);
  backdrop-filter: blur(8px);
  padding: 4px 12px;
  border-radius: 999px;
  z-index: 2;
}
.pillar-body {
  padding: 28px 28px 32px;
}
.pillar-body h4 {
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  color: var(--ink);
}
.pillar-body p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 16px;
}
.pillar-link {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--t-med) var(--ease-out);
}
.pillar-link::after { content: "→"; }
.pillar-link:hover { gap: 14px; color: var(--orange-deep); }

/* ----------------------------------------
   12.  FOUNDER / LEADERSHIP
   ---------------------------------------- */
.founder-section {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.founder-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: stretch;
}
.founder-img-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
}
.founder-img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.founder-tag {
  position: absolute;
  bottom: 24px; left: -24px;
  background: var(--ink);
  color: var(--cream);
  padding: 14px 22px;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.founder-tag em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-size: 1rem;
  color: var(--gold-soft);
  display: block;
  margin-top: 4px;
}

.founder-content {
  padding: 8px 0;
}
.founder-name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.05;
}
.founder-role {
  font-size: 0.92rem;
  font-style: italic;
  color: var(--orange);
  margin-bottom: 28px;
  font-family: var(--font-display);
}
.founder-bio p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 1em;
}
/* ----------------------------------------
   HOME PAGE MOBILE FIXES
   ---------------------------------------- */
.stats-grid-4col {
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
  text-align: center;
}
@media (max-width: 768px) {
  .stats-grid-4col {
    grid-template-columns: 1fr 1fr !important;
    gap: 28px;
  }
}
@media (max-width: 480px) {
  .stats-grid-4col {
    grid-template-columns: 1fr 1fr !important;
    gap: 20px;
  }
}

/* drop-cap removed */

.founder-creds {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.cred {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text-mid);
}
.cred-mark {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-style: italic;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.cred-mark--dot {
  background: transparent;
  color: var(--orange);
  font-size: 1.4rem;
  font-style: normal;
  line-height: 1;
  margin-top: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.founder-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 36px;
}
.founder-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 4px;
  font-size: 0.92rem;
  transition: all var(--t-fast);
}
.founder-email:hover { color: var(--orange); border-color: var(--orange); }

/* ----------------------------------------
   13.  IMPACT / WORK
   ---------------------------------------- */
.impact-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
  height: 600px;
  margin-top: 48px;
}
.impact-tile {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  transition: transform var(--t-med) var(--ease);
  /* Fallback so empty tiles aren't pure white */
  background-color: #2a221a;
}
.impact-tile-1 { background-color: #2a1a14; }
.impact-tile-2 { background-color: #1f2a26; }
.impact-tile-3 { background-color: #2a2218; }
.impact-tile-4 { background-color: #251a1a; }
.impact-tile:hover { transform: translateY(-3px); }
.impact-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(24,20,16,0.7) 100%);
}
.impact-tile-1 { grid-column: 1 / 3; grid-row: 1 / 2; }
.impact-tile-2 { grid-column: 3 / 4; grid-row: 1 / 3; }
.impact-tile-3 { grid-column: 1 / 2; grid-row: 2 / 3; }
.impact-tile-4 { grid-column: 2 / 3; grid-row: 2 / 3; }
.impact-tile-cap {
  position: absolute;
  bottom: 22px; left: 24px;
  z-index: 2;
  color: var(--cream);
  right: 24px;
}
.impact-tile-cap .tag {
  display: inline-block;
  font-size: 0.7rem;
  background: rgba(247,237,207,0.95);
  color: var(--ink);
  padding: 5px 12px;
  letter-spacing: 0.1em;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 12px;
  border-radius: 999px;
  border: 0;
}
.impact-tile-cap h4 {
  font-family: var(--font-display);
  font-size: 1.32rem;
  color: var(--cream);
  font-weight: 500;
  letter-spacing: -0.01em;
  max-width: 22ch;
}

.impact-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 80px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.impact-stat {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid var(--line);
}
.impact-stat:last-child { border-right: 0; }
.impact-stat .n {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 500;
  color: var(--orange);
  display: block;
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 10px;
}
.impact-stat .l {
  font-size: 0.82rem;
  color: var(--text-mid);
  letter-spacing: 0.04em;
}

/* ----------------------------------------
   14.  PROGRAMS
   ---------------------------------------- */
.prog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 56px;
}
.prog-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: var(--ink);
  color: var(--cream);
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px;
  transition: transform var(--t-med) var(--ease);
}
.prog-card:hover { transform: translateY(-4px); }
.prog-card-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  opacity: 0.4;
}
.prog-card::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(24,20,16,0.6) 0%, rgba(24,20,16,0.95) 100%);
  z-index: 1;
}
.prog-card > * { position: relative; z-index: 2; }

.prog-badge {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 6px 14px;
  border: 1px solid var(--gold-soft);
  color: var(--gold-soft);
  border-radius: 999px;
  margin-bottom: 20px;
  align-self: flex-start;
}
.prog-card--rm2 .prog-badge {
  border-color: var(--cream);
  color: var(--cream);
}
.prog-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
  color: var(--cream);
}
.prog-full {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold-soft);
  margin-bottom: 22px;
}
.prog-card p {
  color: rgba(247,237,207,0.78);
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 1em;
}
.prog-tag {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--gold-soft);
  font-style: italic;
  font-family: var(--font-display);
  margin-top: 16px;
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.model-item {
  padding: 32px 28px;
  background: var(--cream-soft);
  border-radius: 4px;
  border: 1px solid var(--line);
}
.model-num {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-style: italic;
  color: var(--orange);
  margin-bottom: 14px;
  display: block;
}
.model-item h4 {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.model-item p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ----------------------------------------
   15.  CONTACT / DONATE
   ---------------------------------------- */
.connect-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.contact-card {
  background: var(--paper);
  padding: 48px 40px;
  border-radius: 6px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.contact-card h3 {
  font-size: 1.7rem;
  margin-bottom: 6px;
}
.contact-card .lead {
  font-size: 0.96rem;
  color: var(--text-mid);
  margin-bottom: 32px;
}

.fg-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.fg { margin-bottom: 16px; }
.fg label {
  display: block;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 8px;
}
.fg input,
.fg select,
.fg textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line-strong);
  background: var(--paper);
  font-family: inherit;
  font-size: 0.96rem;
  color: var(--ink);
  border-radius: 4px;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  outline: 0;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(196, 80, 26, 0.12);
}
.fg textarea { resize: vertical; min-height: 110px; }
.form-submit { margin-top: 22px; }
.form-success {
  display: none;
  margin-top: 24px;
  padding: 18px 22px;
  background: var(--cream);
  border-left: 3px solid var(--orange);
  font-size: 0.95rem;
  color: var(--ink);
  border-radius: 4px;
}
.form-success.is-shown { display: block; }
.form-error {
  display: none;
  margin-top: 24px;
  padding: 18px 22px;
  background: #FEE;
  border-left: 3px solid #C44;
  font-size: 0.95rem;
  color: #722;
  border-radius: 4px;
}
.form-error.is-shown { display: block; }

.connect-side .eyebrow { color: var(--gold); }
.connect-side .eyebrow::before { background: var(--gold); }
.connect-side h2 { margin-bottom: 20px; }

.engage-list { margin-top: 36px; }
.engage-item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.engage-item:last-child { border-bottom: 0; }
.engage-mark {
  width: 30px; height: 30px;
  border: 1.5px solid var(--orange);
  color: var(--orange);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-top: 2px;
}
.engage-item h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--ink);
}
.engage-item p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.55;
}

.contact-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.contact-meta-item .label {
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 6px;
  font-weight: 600;
}
.contact-meta-item .value {
  font-size: 1rem;
  color: var(--ink);
  font-weight: 500;
}
.contact-meta-item .value a { color: var(--ink); }
.contact-meta-item .value a:hover { color: var(--orange); }

/* Donate section */
.donate-section {
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.donate-section h2,
.donate-section h3 { color: var(--cream); }
.donate-section .lead,
.donate-section p { color: rgba(247,237,207,0.78); }
.donate-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
}
.donate-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.donate-grid h2 { color: var(--cream); margin-bottom: 16px; }
.donate-grid .lead { color: rgba(247,237,207,0.7); }

.donate-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.donate-tiers--four {
  grid-template-columns: repeat(4, 1fr);
}
.donate-tier {
  background: rgba(247,237,207,0.06);
  border: 1px solid rgba(247,237,207,0.16);
  padding: 28px 22px;
  text-align: center;
  border-radius: 4px;
  transition: all var(--t-med) var(--ease);
  cursor: pointer;
  position: relative;
  display: block;
  font-family: inherit;
  width: 100%;
  color: inherit;
}
.donate-tier:hover {
  background: rgba(247,237,207,0.12);
  border-color: var(--gold-soft);
  transform: translateY(-3px);
}
.donate-tier.is-selected {
  border-color: var(--gold-soft);
  background: rgba(229, 160, 32, 0.12);
}
.donate-tier .amt {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--cream);
  display: block;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.donate-tier .lbl {
  font-size: 0.78rem;
  color: rgba(247,237,207,0.6);
  letter-spacing: 0.04em;
}
.donate-tier-cta {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.donate-secure {
  font-size: 0.78rem;
  color: rgba(247,237,207,0.45);
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.donate-secure svg { width: 14px; height: 14px; }

/* ----------------------------------------
   16.  CTA BAND
   ---------------------------------------- */
.cta-band {
  background: var(--cream-warm);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  top: -50%; right: -10%;
  width: 70%; height: 200%;
  background: radial-gradient(circle, var(--cream) 0%, transparent 50%);
  pointer-events: none;
}
.cta-band-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: center;
}
.cta-band h2 {
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  margin-bottom: 12px;
}
.cta-band p {
  color: var(--text-mid);
  font-size: 1.05rem;
}
.cta-band-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* ----------------------------------------
   17.  FOOTER
   ---------------------------------------- */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: 88px 0 40px;
}
.ft-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 64px;
}
.ft-logo {
  height: 64px;
  margin-bottom: 24px;
  display: block;
}
.ft-logo img { height: 100%; width: auto; }
.ft-tagline {
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(247,237,207,0.6);
  max-width: 38ch;
  margin-bottom: 24px;
}
.ft-head {
  font-family: var(--font-body);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-soft);
  margin-bottom: 22px;
}
.ft-links li { margin-bottom: 12px; }
.ft-links a {
  font-size: 0.92rem;
  color: rgba(247,237,207,0.75);
  transition: color var(--t-fast);
}
.ft-links a:hover { color: var(--gold-soft); }

.ft-contact-item {
  font-size: 0.92rem;
  color: rgba(247,237,207,0.75);
  margin-bottom: 12px;
  line-height: 1.5;
}
.ft-contact-item a { color: rgba(247,237,207,0.85); }
.ft-contact-item a:hover { color: var(--gold-soft); }
.ft-contact-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247,237,207,0.4);
  display: block;
  margin-bottom: 4px;
}

.ft-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(247,237,207,0.1);
  font-size: 0.82rem;
  color: rgba(247,237,207,0.45);
  flex-wrap: wrap;
  gap: 16px;
}
.ft-bottom-links {
  display: flex; gap: 20px;
}
.ft-bottom-links a:hover { color: var(--gold-soft); }

/* ----------------------------------------
   18.  REVEAL ANIMATION
   ---------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out);
}
.reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ----------------------------------------
   19.  RESPONSIVE
   ---------------------------------------- */
/* ----------------------------------------
   17.  RESPONSIVE — TABLET & MOBILE
   ---------------------------------------- */

/* Tablet & small laptop */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .burger { display: flex; }

  .nav-inner { padding: 14px 24px; }
  .nav-logo { height: 48px; }

  .hero-inner { padding: 144px 0 80px; }
  .hero-meta { grid-template-columns: 1fr 1fr; gap: 24px; }
  .hero-pager { display: none; }

  .section { padding: 88px 0; }

  .intro-grid { grid-template-columns: 1fr; gap: 24px; }
  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-stat { left: 24px; }

  .princ-grid { grid-template-columns: 1fr 1fr; }
  .princ-item { padding: 32px 24px !important; border-right: 1px solid var(--line); }
  .princ-item:nth-child(2n) { border-right: 0; padding-right: 0 !important; }
  .princ-item:nth-child(2n+1) { padding-left: 0 !important; }

  .pillar-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 56px; }
  .pillars { grid-template-columns: 1fr 1fr; }

  .founder-grid { grid-template-columns: 1fr; gap: 56px; }
  .founder-img-wrap { max-width: 480px; }
  .founder-creds { grid-template-columns: 1fr; }

  .impact-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 280px 280px 280px;
    height: auto;
  }
  .impact-tile-1 { grid-column: 1 / 3; grid-row: 1 / 2; }
  .impact-tile-2 { grid-column: 1 / 2; grid-row: 2 / 3; }
  .impact-tile-3 { grid-column: 2 / 3; grid-row: 2 / 3; }
  .impact-tile-4 { grid-column: 1 / 3; grid-row: 3 / 4; }

  .impact-stats { grid-template-columns: 1fr 1fr; }
  .impact-stat:nth-child(2) { border-right: 0; }
  .impact-stat:nth-child(1), .impact-stat:nth-child(2) { border-bottom: 1px solid var(--line); }

  .prog-grid { grid-template-columns: 1fr; }
  .model-grid { grid-template-columns: 1fr 1fr; }

  .connect-grid { grid-template-columns: 1fr; gap: 56px; }
  .donate-grid { grid-template-columns: 1fr; gap: 40px; }

  .cta-band-inner { grid-template-columns: 1fr; gap: 32px; }
  .cta-band-actions { justify-content: flex-start; }

  .ft-grid { grid-template-columns: 1fr 1fr; gap: 40px; }

  /* Three-forces grid is forced to 3-col inline on about.html — override */
  .pillars[style*="repeat(3"] { grid-template-columns: 1fr 1fr !important; }
}

/* Standard phone */
@media (max-width: 768px) {
  .wrap { padding: 0 22px; }
  .section { padding: 72px 0; }

  .nav-inner { padding: 12px 20px; }
  .nav-logo { height: 42px; }

  .hero { min-height: 92vh; }
  .hero-inner { padding: 124px 0 72px; }
  .hero-eyebrow { font-size: 0.68rem; margin-bottom: 22px; }
  .hero-eyebrow::before { width: 22px; }
  .hero-title {
    font-size: clamp(2.2rem, 9vw, 3.6rem);
    line-height: 1.02;
    margin-bottom: 22px;
  }
  .hero-sub { font-size: 1rem; margin-bottom: 32px; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 12px; margin-bottom: 44px; }
  .hero-actions .btn { justify-content: center; width: 100%; }
  .hero-meta { grid-template-columns: 1fr 1fr; gap: 20px 24px; padding-top: 28px; }
  .hero-meta-item .num { font-size: 1.6rem; }

  .pg-hero { padding: 144px 0 64px; }
  .pg-hero h1 { font-size: clamp(2.2rem, 9vw, 3.4rem); }

  h2 { font-size: clamp(1.6rem, 6.5vw, 2.2rem); }
  h3 { font-size: 1.4rem; }

  .princ-grid { grid-template-columns: 1fr; }
  .princ-item { padding: 28px 0 !important; border-right: 0 !important; border-bottom: 1px solid var(--line); }
  .princ-item:last-child { border-bottom: 0; }

  .pillars { grid-template-columns: 1fr; }
  .pillars[style*="repeat(3"] { grid-template-columns: 1fr !important; }

  .btn {
    white-space: normal;
    text-align: center;
    line-height: 1.25;
    padding: 14px 22px;
  }
  .btn--gold[data-donate-cta],
  .btn--outline-cream[data-donate-monthly],
  .btn--outline-cream[data-donate-custom] { padding: 14px 18px; font-size: 0.78rem; letter-spacing: 0.06em; }

  .donate-tiers,
  .donate-tiers--four { grid-template-columns: 1fr 1fr !important; }
  .donate-tier-cta { flex-direction: column; align-items: stretch; }
  .donate-tier-cta .btn { width: 100%; justify-content: center; min-width: 0; }

  .model-grid { grid-template-columns: 1fr; }
  .fg-row { grid-template-columns: 1fr; }
  .impact-stats { grid-template-columns: 1fr 1fr; }
  .impact-stat { padding: 28px 0; }

  .ft-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-meta { grid-template-columns: 1fr; gap: 20px; }
  .ft-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .founder-tag { left: 0; bottom: -36px; padding: 16px 22px; }
  .founder-tag em { font-size: 0.95rem; }
  .about-stat { left: 12px; bottom: -22px; padding: 20px 24px; max-width: 86%; }

  .cta-band-actions { flex-direction: column; align-items: stretch; }
  .cta-band-actions .btn { width: 100%; justify-content: center; }

  .contact-card { padding: 28px 22px; }
  .form-submit .btn { width: 100%; justify-content: center; }

  .prog-card { padding: 36px 26px; min-height: auto; }
  .prog-title { font-size: 2rem; }

  .impact-tile-cap h4 { font-size: 1rem; }
  .impact-tile-cap { padding: 18px; }
}

/* Small phone */
@media (max-width: 480px) {
  .wrap { padding: 0 18px; }
  .section { padding: 60px 0; }

  .nav-inner { padding: 10px 16px; }
  .nav-logo { height: 38px; }

  .hero-inner { padding: 116px 0 60px; }
  .hero-title { font-size: clamp(2rem, 10vw, 3rem); max-width: 14ch; }
  .hero-sub { font-size: 0.96rem; }
  .hero-meta { grid-template-columns: 1fr; gap: 18px; }
  .hero-meta-item { padding-bottom: 16px; border-bottom: 1px solid rgba(247,237,207,0.12); }
  .hero-meta-item:last-child { border-bottom: 0; padding-bottom: 0; }

  .pg-hero { padding: 124px 0 56px; }

  .impact-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: 240px 240px 240px 240px;
  }
  .impact-tile-1, .impact-tile-2, .impact-tile-3, .impact-tile-4 {
    grid-column: 1 / 2;
  }
  .impact-tile-1 { grid-row: 1 / 2; }
  .impact-tile-2 { grid-row: 2 / 3; }
  .impact-tile-3 { grid-row: 3 / 4; }
  .impact-tile-4 { grid-row: 4 / 5; }

  .impact-stats { grid-template-columns: 1fr; }
  .impact-stat { border-right: 0 !important; border-bottom: 1px solid var(--line); }
  .impact-stat:last-child { border-bottom: 0; }

  .donate-tiers,
  .donate-tiers--four { grid-template-columns: 1fr !important; }

  .btn { padding: 12px 22px; font-size: 0.86rem; }
  .mob-nav a:not(.mob-nav-logo) { font-size: 1.6rem; }
}

/* Print fallback */
@media print {
  .site-header, .mob-nav, .cta-band, .donate-section, .site-footer { display: none; }
}

/* ----------------------------------------
   MOB-NAV LOGO FIX
   Logo added to mobile overlay HTML. CSS below ensures it
   displays correctly without being overridden by generic mob-nav rules.
   ---------------------------------------- */

/* Shift overlay to top-aligned — logo removed, links centered */
.mob-nav {
  justify-content: center;
  padding-top: 0;
}

/* Logo link — reset all inherited nav-link styles */
.mob-nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  text-decoration: none;
  margin-bottom: 40px;
  font-size: 1rem;       /* prevent .mob-nav a font-size from inflating this */
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #ffffff;
}
.mob-nav-logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
}
.mob-nav-logo span {
  color: #ffffff;
}

/* All nav links centered now that logo is gone */
.mob-nav > a:not(.mob-nav-logo) {
  align-self: center;
}
.mob-nav .mob-cta {
  align-self: center;
}
