/* ========================================================================
   Christo Laboro — Brand-aligned design system
   Type:   Rethink Sans (Medium / Bold per official style guide)
   Color:  Black + White + Red #BD031B (accent, used sparingly)
   Logo:   Horizontal main-color in header, mark for favicon
   ======================================================================== */

/* --- RESET ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
button { background: none; border: 0; cursor: pointer; font: inherit; color: inherit; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
input, button, textarea, select { font: inherit; }

/* --- TOKENS ----------------------------------------------------------- */
:root {
  --ink:        #0A0A0A;
  --ink-d:      #000000;
  --paper:      #FFFFFF;
  --paper-d:    #FAFAF9;
  --rule:       #ECEAE6;
  --muted:      #6E6A63;
  --soft:       #F4F2EE;

  /* OFFICIAL BRAND ACCENT — #BD031B with 60% / 20% tints from style guide */
  --accent:        #BD031B;
  --accent-deep:   #97011A;  /* hover / pressed */
  --accent-60:     #DC6A77;
  --accent-20:     #F2D0D3;
  --accent-haze:   #FFF5F6;  /* near-white red tint for backgrounds */

  --font-display: 'Rethink Sans', system-ui, -apple-system, sans-serif;
  --font-body:    'Rethink Sans', system-ui, -apple-system, sans-serif;

  --container-px:    1200px;
  --container-pad:   clamp(20px, 4vw, 48px);
  --section-y:       clamp(88px, 12vw, 168px);
  --gutter:          clamp(24px, 4vw, 56px);

  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;

  --t-fast: 160ms cubic-bezier(.4, 0, .2, 1);
  --t-med:  280ms cubic-bezier(.4, 0, .2, 1);
}

/* --- BASE ------------------------------------------------------------- */
html {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
}

body { background: var(--paper); overflow-x: hidden; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink-d);
  letter-spacing: -0.02em;
  line-height: 1.08;
}

p { color: var(--ink); line-height: 1.65; }

::selection { background: var(--accent); color: var(--paper); }

/* --- UTILITY ---------------------------------------------------------- */
.container {
  max-width: var(--container-px);
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 1.5px;
  background: var(--accent);
}

.section-head {
  margin-bottom: clamp(48px, 6vw, 80px);
  max-width: 36ch;
}

.section-title {
  font-size: clamp(34px, 4.5vw, 56px);
  letter-spacing: -0.025em;
  line-height: 1.06;
  font-weight: 700;
  color: var(--ink-d);
}

/* --- IMAGE SLOTS ------------------------------------------------------ */
.img-slot {
  position: relative;
  background:
    linear-gradient(135deg, rgba(189, 3, 27, 0.025) 0%, rgba(189, 3, 27, 0.07) 100%),
    var(--paper-d);
  border: 1px dashed rgba(189, 3, 27, 0.25);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--accent);
  padding: 24px;
  text-align: center;
}
.img-slot::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(45deg, transparent 49%, rgba(189, 3, 27, 0.04) 50%, transparent 51%);
  background-size: 12px 12px;
  pointer-events: none;
}
.img-slot__label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
  z-index: 1;
}
.img-slot__hint {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 12px;
  color: var(--muted);
  z-index: 1;
  letter-spacing: 0.01em;
  max-width: 24ch;
  line-height: 1.4;
}
.img-slot--4-3 { aspect-ratio: 4 / 3; }
.img-slot--16-9 { aspect-ratio: 16 / 9; }
.img-slot--portrait { aspect-ratio: 4 / 5; }
.img-slot--square { aspect-ratio: 1 / 1; }

/* When a real image is present, drop the placeholder treatment */
.img-slot--filled,
.img-slot:has(img) {
  border: none;
  background: none;
  padding: 0;
}
.img-slot--filled::before,
.img-slot:has(img)::before { display: none; }
.img-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- SKIP LINK -------------------------------------------------------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--ink-d);
  color: var(--paper);
  padding: 12px 20px;
  font-weight: 600;
  font-size: 14px;
  z-index: 200;
  transition: top var(--t-fast);
  border-radius: 0 0 4px 4px;
}
.skip-link:focus { top: 0; }

/* --- BUTTON ----------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  padding: 13px 26px;
  border: 1.5px solid transparent;
  border-radius: var(--radius-sm);
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--t-fast), color var(--t-fast),
              border-color var(--t-fast), transform var(--t-fast);
}
.btn--lg { padding: 17px 34px; font-size: 15px; }

.btn--primary {
  background: var(--accent);
  color: var(--paper);
  border-color: var(--accent);
}
.btn--primary:hover {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
  color: var(--paper);
}

.btn--ghost {
  background: transparent;
  color: var(--ink-d);
  border-color: var(--ink-d);
}
.btn--ghost:hover {
  background: var(--ink-d);
  color: var(--paper);
}

.btn--dark {
  background: var(--ink-d);
  color: var(--paper);
  border-color: var(--ink-d);
}
.btn--dark:hover {
  background: var(--paper);
  color: var(--ink-d);
}

.btn--inverse {
  background: var(--paper);
  color: var(--ink-d);
  border-color: var(--paper);
}
.btn--inverse:hover {
  background: var(--accent);
  color: var(--paper);
  border-color: var(--accent);
}

/* --- HEADER ----------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--rule);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 78px;
}
.brand {
  display: flex;
  align-items: center;
  transition: opacity var(--t-fast);
}
.brand:hover { opacity: 0.85; }
.brand-logo {
  height: 34px;
  width: auto;
}
.primary-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}
.primary-nav ul {
  display: flex;
  gap: 36px;
}
.primary-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  padding: 8px 0;
  position: relative;
  transition: color var(--t-fast);
}
.primary-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--t-med);
}
.primary-nav a:hover { color: var(--ink-d); }
.primary-nav a:hover::after { transform: scaleX(1); }

/* Dropdown */
.primary-nav .has-dropdown { position: relative; }
.primary-nav .caret {
  display: inline-block;
  margin-left: 4px;
  font-size: 10px;
  vertical-align: middle;
  transition: transform var(--t-fast);
}
.primary-nav .has-dropdown:hover .caret,
.primary-nav .has-dropdown:focus-within .caret { transform: rotate(180deg); }
.primary-nav .dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  padding: 8px 0;
  min-width: 200px;
  box-shadow: 0 10px 30px -8px rgba(0, 0, 0, 0.10);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-fast), transform var(--t-fast), visibility 0s linear var(--t-fast);
  display: flex;
  flex-direction: column;
  gap: 0;
  z-index: 110;
}
.primary-nav .has-dropdown:hover .dropdown,
.primary-nav .has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  transition: opacity var(--t-fast), transform var(--t-fast);
}
.primary-nav .dropdown li { padding: 0; }
.primary-nav .dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: var(--ink);
  white-space: nowrap;
}
.primary-nav .dropdown a::after { display: none; }
.primary-nav .dropdown a:hover { background: var(--paper-d); color: var(--accent); }

.mobile-nav-sub {
  font-size: 16px !important;
  font-weight: 500 !important;
  color: var(--muted) !important;
  padding-left: 16px;
  border-left: 2px solid var(--accent);
}

.btn--header { padding: 11px 22px; font-size: 14px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 8px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--ink-d);
}

.mobile-nav {
  border-top: 1px solid var(--rule);
  padding: 28px var(--container-pad) 36px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  background: var(--paper);
}
.mobile-nav[hidden] { display: none !important; }
.mobile-nav a:not(.btn) {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink-d);
  letter-spacing: -0.01em;
}
.mobile-nav .btn { align-self: flex-start; margin-top: 8px; }

@media (max-width: 880px) {
  .primary-nav, .btn--header { display: none; }
  .nav-toggle { display: flex; }
  .brand-logo { height: 30px; }
}

/* --- HERO ------------------------------------------------------------- */
.hero {
  padding: clamp(48px, 7vw, 96px) 0 clamp(72px, 11vw, 136px);
  background:
    radial-gradient(ellipse 80% 60% at 70% 35%, rgba(232, 154, 77, 0.10), transparent 70%),
    #FAF4EA;
  position: relative;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--rule);
}
.hero-grid {
  display: grid;
  grid-template-columns: 6fr 5fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}
.hero-content { max-width: 60ch; }
.hero-kicker {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-kicker::before {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--accent);
  display: inline-block;
}
.hero-title {
  font-size: clamp(36px, 4.8vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin-bottom: 28px;
  color: var(--ink-d);
}
.hero-subtitle {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  color: var(--muted);
  margin-bottom: 40px;
  max-width: 52ch;
}
.hero-verse {
  position: relative;
  margin: 0 0 44px;
  max-width: 56ch;
  padding-left: 24px;
  border-left: 2px solid var(--accent);
}
.hero-verse p {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 12px;
  letter-spacing: -0.005em;
}
.hero-verse cite {
  font-style: normal;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}
.hero-cta {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}
.hero-link {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-d);
  padding: 6px 0;
  transition: color var(--t-fast);
}
.hero-link span { display: inline-block; margin-left: 6px; transition: transform var(--t-fast); }
.hero-link:hover { color: var(--accent); }
.hero-link:hover span { transform: translateX(4px); }

.hero-visual {
  position: relative;
  aspect-ratio: 5 / 6;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.35);
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { aspect-ratio: 16 / 10; max-height: 420px; }
  .hero-content { max-width: 100%; }
}

/* --- PILLARS ---------------------------------------------------------- */
.pillars {
  padding: var(--section-y) 0;
  background: var(--paper-d);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gutter);
}
.pillar {
  display: flex;
  flex-direction: column;
}
.pillar-img {
  margin-bottom: 28px;
}
.pillar-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.pillar-num {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.16em;
}
.pillar-dot {
  width: 4px;
  height: 4px;
  background: var(--rule);
  border-radius: 50%;
}
.pillar-tag {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.pillar-title {
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  color: var(--ink-d);
}
.pillar-body {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}
.pillar-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1.5px;
  transition: opacity var(--t-fast), color var(--t-fast);
}
.pillar-link:hover { color: var(--accent-deep); opacity: 0.85; }

@media (max-width: 760px) {
  .pillars-grid { grid-template-columns: 1fr; gap: 56px; }
}

/* --- ABOUT ------------------------------------------------------------ */
.about {
  padding: var(--section-y) 0;
  background: var(--paper);
}
.about-inner {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}
.about-img { width: 100%; }
.about-content { padding-right: clamp(0px, 2vw, 24px); }
.about-body {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 8px;
  margin-bottom: 36px;
  max-width: 50ch;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
  padding: 28px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.about-stat-num {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
}
.about-stat-lbl {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

@media (max-width: 880px) {
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
}

/* --- COURSE ----------------------------------------------------------- */
.course {
  padding: var(--section-y) 0;
  background: var(--paper-d);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.course-inner {
  display: grid;
  grid-template-columns: 6fr 5fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}
.course-img { width: 100%; }
.course-content {}
.course-body {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
  margin-top: 8px;
}
.course-points {
  margin: 28px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.course-points li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
}
.course-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 14px;
  height: 1.5px;
  background: var(--accent);
}
.course-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.course-cta-note {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.course-cta-note strong {
  font-weight: 700;
  color: var(--accent);
}

@media (max-width: 880px) {
  .course-inner { grid-template-columns: 1fr; }
  .course-img { order: 2; }
}

/* --- FIELD REPORTS / RESOURCES PREVIEW ------------------------------- */
.reports {
  padding: var(--section-y) 0;
  background: var(--paper);
}
.section-head--row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  max-width: none;
  gap: 32px;
  flex-wrap: wrap;
}
.section-head--row > div { max-width: 36ch; }
.section-link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-d);
  letter-spacing: 0.01em;
  padding-bottom: 14px;
  transition: color var(--t-fast);
  white-space: nowrap;
}
.section-link span { display: inline-block; margin-left: 4px; transition: transform var(--t-fast); }
.section-link:hover { color: var(--accent); }
.section-link:hover span { transform: translateX(4px); }

.reports-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gutter);
}
.report-card {}
.report-card-link {
  display: block;
  color: inherit;
}
.report-card-img {
  margin-bottom: 20px;
  transition: transform var(--t-med);
}
.report-card-link:hover .report-card-img { transform: translateY(-2px); }
.report-card-meta {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.report-card-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
  color: var(--ink-d);
  transition: color var(--t-fast);
}
.report-card-link:hover .report-card-title { color: var(--accent); }
.report-card-excerpt {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.55;
}

@media (max-width: 880px) {
  .reports-grid { grid-template-columns: 1fr; gap: 48px; }
  .section-head--row { flex-direction: column; align-items: flex-start; }
  .section-link { padding-bottom: 0; }
}

/* --- CTA BAND --------------------------------------------------------- */
.cta-band {
  padding: var(--section-y) 0;
  background: var(--ink-d);
  color: var(--paper);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
}
.cta-band-title {
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--paper);
  max-width: 24ch;
  margin: 0 auto 36px;
  font-weight: 700;
}
.cta-band-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 40px;
  max-width: 48ch;
  margin-left: auto;
  margin-right: auto;
}

/* --- FOOTER ----------------------------------------------------------- */
.site-footer {
  background: var(--paper);
  border-top: 1px solid var(--rule);
  padding-top: clamp(64px, 8vw, 96px);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: clamp(48px, 6vw, 96px);
  padding-bottom: 64px;
}
.footer-brand .brand-logo {
  height: 32px;
  margin-bottom: 18px;
}
.footer-tagline {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 18px;
  max-width: 32ch;
}
.footer-501c3 {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.02em;
  line-height: 1.6;
}
.footer-501c3 strong { color: var(--accent); font-weight: 600; }
.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gutter);
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-d);
  margin-bottom: 20px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col a {
  font-size: 14px;
  color: var(--muted);
  transition: color var(--t-fast);
}
.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid var(--rule);
  padding: 24px 0 32px;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 12px; color: var(--muted); }
.footer-bottom ul { display: flex; gap: 24px; }
.footer-bottom a { font-size: 12px; color: var(--muted); transition: color var(--t-fast); }
.footer-bottom a:hover { color: var(--accent); }

@media (max-width: 880px) {
  .footer-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-nav { grid-template-columns: repeat(2, 1fr); }
}

/* --- INTERIOR PAGES SHARED + TYPED ---------------------------------- */
.page-hero--cream {
  background:
    radial-gradient(ellipse 80% 60% at 70% 35%, rgba(232, 154, 77, 0.10), transparent 70%),
    #FAF4EA;
}
.page-hero--dark {
  background: var(--ink-d);
  color: var(--paper);
  border-bottom: 3px solid var(--accent);
}
.page-hero--dark .eyebrow,
.page-hero--dark .eyebrow::before { color: var(--accent); background: var(--accent); }
.page-hero--dark .page-hero-title { color: var(--paper); }
.page-hero--dark .page-hero-sub { color: rgba(255,255,255,0.7); }

.page-hero-sub {
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
  color: var(--muted);
  max-width: 58ch;
  margin-top: 24px;
}

/* TWO-COL OPERATE CARDS */
.operate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gutter);
  margin-top: 48px;
}
.operate-card {
  padding: 36px;
  background: var(--paper-d);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
}
.operate-card h3 {
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.operate-card p { color: var(--muted); font-size: 16px; line-height: 1.6; }
@media (max-width: 760px) { .operate-grid { grid-template-columns: 1fr; } }

/* FOUNDER SECTION (alternating image + text) */
.founder-section {
  padding: var(--section-y) 0;
  background: var(--paper);
}
.founder-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}
.founder-img { width: 100%; }
.founder-body p { margin-bottom: 18px; font-size: 17px; line-height: 1.7; color: var(--ink); }
.founder-body p:first-of-type { margin-top: 8px; }
.founder-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink-d);
  margin-bottom: 4px;
}
.founder-role {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
@media (max-width: 880px) { .founder-grid { grid-template-columns: 1fr; } }

/* THE MARK (logo explanation) */
.mark-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gutter);
  margin-top: 48px;
}
.mark-card {
  padding: 40px 36px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  text-align: center;
}
.mark-img {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 120px;
  margin-bottom: 20px;
}
.mark-img img {
  max-height: 100%;
  width: auto;
  display: block;
}
.mark-title {
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--ink-d);
}
.mark-body {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  max-width: 340px;
  margin: 0 auto;
}
@media (max-width: 760px) { .mark-grid { grid-template-columns: 1fr; gap: 20px; } }

/* DONATE TIERS */
.donate-tiers {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin: 32px 0;
}
.donate-tier {
  background: var(--paper);
  border: 1.5px solid var(--rule);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  cursor: pointer;
  transition: border-color var(--t-fast), background var(--t-fast), transform var(--t-fast);
  font-family: inherit;
}
.donate-tier:hover {
  border-color: var(--accent);
  background: var(--accent-haze);
}
.donate-tier-amount {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  color: var(--ink-d);
  margin-bottom: 4px;
}
.donate-tier-period {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
@media (max-width: 720px) { .donate-tiers { grid-template-columns: repeat(2, 1fr); } }

.donate-where {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gutter);
  margin-top: 48px;
}
.donate-where-item h4 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--accent);
  margin-bottom: 8px;
}
.donate-where-item p { color: var(--muted); font-size: 15px; line-height: 1.55; }
@media (max-width: 760px) { .donate-where { grid-template-columns: 1fr; } }

/* COURSES — pricing card */
.course-pricing {
  background: var(--ink-d);
  color: var(--paper);
  padding: clamp(40px, 5vw, 64px) clamp(32px, 4vw, 48px);
  border-radius: var(--radius-md);
  text-align: center;
  max-width: 480px;
  margin: 48px auto;
}
.course-pricing-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 14px;
}
.course-pricing-amount {
  font-family: var(--font-display);
  font-size: 84px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 6px;
  color: var(--paper);
}
.course-pricing-amount span {
  font-size: 32px;
  vertical-align: top;
  margin-left: 4px;
  color: rgba(255, 255, 255, 0.6);
}
.course-pricing-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 32px;
}

/* RESOURCES INDEX GRID */
.resources-index-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gutter);
}
@media (max-width: 880px) { .resources-index-grid { grid-template-columns: 1fr; gap: 48px; } }

/* ARTICLE BODY */
.article-section { padding: var(--section-y) 0; background: var(--paper); }
.article-body { max-width: 720px; margin: 0 auto; }
.article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.article-meta strong { color: var(--accent); font-weight: 700; }
.article-body h2 {
  font-size: clamp(24px, 2.4vw, 30px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 56px 0 16px;
  color: var(--ink-d);
}
.article-body h3 {
  font-size: clamp(20px, 1.9vw, 24px);
  font-weight: 700;
  margin: 36px 0 12px;
  color: var(--ink-d);
}
.article-body p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 20px;
}
.article-body p:first-of-type {
  font-size: 21px;
  line-height: 1.6;
  color: var(--ink-d);
  font-weight: 500;
}
.article-body ul, .article-body ol {
  margin: 0 0 24px 24px;
  padding-left: 0;
}
.article-body ul li, .article-body ol li {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 10px;
  list-style: disc;
  padding-left: 4px;
}
.article-body ol li { list-style: decimal; }
.article-body strong { font-weight: 700; color: var(--ink-d); }
.article-body em { font-style: italic; }
.article-body a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.article-body blockquote {
  margin: 32px 0;
  padding: 8px 0 8px 24px;
  border-left: 3px solid var(--accent);
  font-style: italic;
  color: var(--muted);
}
.article-body hr {
  border: 0;
  border-top: 1px solid var(--rule);
  margin: 48px 0;
}

/* ROADMAP TIMELINE */
.roadmap-intro {
  padding: clamp(48px, 7vw, 96px) 0 clamp(32px, 5vw, 64px);
  background:
    radial-gradient(ellipse 80% 60% at 70% 35%, rgba(232, 154, 77, 0.10), transparent 70%),
    #FAF4EA;
  text-align: center;
}
.roadmap-intro-inner { max-width: 720px; margin: 0 auto; padding: 0 var(--container-pad); }
.roadmap-cue {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 36px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.roadmap-cue-arrow {
  width: 1px;
  height: 32px;
  background: var(--accent);
  position: relative;
  animation: cue-bob 2.4s ease-in-out infinite;
}
.roadmap-cue-arrow::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: -3px;
  width: 7px; height: 7px;
  border-right: 1.5px solid var(--accent);
  border-bottom: 1.5px solid var(--accent);
  transform: rotate(45deg);
}
@keyframes cue-bob {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.5; }
}

.roadmap {
  position: relative;
  padding: clamp(64px, 9vw, 120px) 0 clamp(80px, 11vw, 144px);
  background: var(--paper);
}
.roadmap-spine {
  position: absolute;
  top: 80px;
  bottom: 80px;
  left: 50%;
  width: 2px;
  background: var(--rule);
  transform: translateX(-50%);
  z-index: 0;
}
.roadmap-spine-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--accent);
  transition: height 80ms linear;
}

.roadmap-phase {
  position: relative;
  text-align: center;
  margin: 96px auto 56px;
  max-width: 360px;
  padding: 14px 28px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 999px;
  z-index: 2;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms cubic-bezier(.4,0,.2,1), transform 600ms cubic-bezier(.4,0,.2,1);
}
.roadmap-phase.is-visible { opacity: 1; transform: translateY(0); }
.roadmap-phase:first-child { margin-top: 0; }
.roadmap-phase-num {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  display: block;
}
.roadmap-phase-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink-d);
  text-transform: uppercase;
  margin-top: 2px;
}

.roadmap-item {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  gap: 0;
  margin: 56px 0;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 700ms cubic-bezier(.4,0,.2,1), transform 700ms cubic-bezier(.4,0,.2,1);
}
.roadmap-item.is-visible { opacity: 1; transform: translateY(0); }

.roadmap-item-card { grid-row: 1; }
.roadmap-item-node {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  align-self: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--rule);
  position: relative;
  z-index: 3;
  transition: transform 300ms cubic-bezier(.4,0,.2,1), background 300ms, border-color 300ms;
}
.roadmap-item.is-visible .roadmap-item-node { transform: scale(1.1); }

/* COMPLETED — solid red filled, illuminated pulsing glow emanating from the node itself */
.roadmap-item--done .roadmap-item-node {
  background: var(--accent);
  border-color: var(--accent);
  animation: node-glow 3.2s ease-in-out infinite;
}
.roadmap-item--done .roadmap-item-node::after {
  content: '';
  position: absolute;
  top: 4px; left: 3px;
  width: 8px; height: 4px;
  border-left: 1.5px solid var(--paper);
  border-bottom: 1.5px solid var(--paper);
  transform: rotate(-45deg);
  z-index: 1;
}
@keyframes node-glow {
  0%, 100% {
    box-shadow:
      0 0 0 5px rgba(189, 3, 27, 0.22),
      0 0 22px 4px rgba(189, 3, 27, 0.42);
  }
  50% {
    box-shadow:
      0 0 0 13px rgba(189, 3, 27, 0.10),
      0 0 42px 14px rgba(189, 3, 27, 0.72);
  }
}

/* IN PROGRESS — filled red with subtle expanding ring */
.roadmap-item--progress .roadmap-item-node {
  background: var(--accent);
  border-color: var(--accent);
  animation: node-pulse-progress 2.6s ease-in-out infinite;
}
@keyframes node-pulse-progress {
  0%, 100% {
    box-shadow: 0 0 0 6px rgba(189, 3, 27, 0.22);
  }
  50% {
    box-shadow: 0 0 0 18px rgba(189, 3, 27, 0.04);
  }
}

/* PLANNED — outline circle, no glow */
.roadmap-item--planned .roadmap-item-node {
  background: var(--paper);
  border-color: var(--rule);
  /* keep the paper ring to mask the spine */
}

@media (prefers-reduced-motion: reduce) {
  .roadmap-item--done .roadmap-item-node,
  .roadmap-item--progress .roadmap-item-node {
    animation: none;
  }
}

.roadmap-item-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  transition: border-color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
}
.roadmap-item-card:hover {
  border-color: var(--accent-20);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -16px rgba(189, 3, 27, 0.18);
}
.roadmap-item--left .roadmap-item-card { grid-column: 1; margin-right: 32px; text-align: right; }
.roadmap-item--right .roadmap-item-card { grid-column: 3; margin-left: 32px; }
.roadmap-item--left .roadmap-item-status { justify-content: flex-end; }

.roadmap-item-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.roadmap-item-status-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  display: inline-block;
}
.roadmap-item--done .roadmap-item-status { color: var(--accent); }
.roadmap-item--done .roadmap-item-status-dot { background: var(--accent); }
.roadmap-item--progress .roadmap-item-status { color: var(--accent-deep); }
.roadmap-item--progress .roadmap-item-status-dot { background: var(--accent); box-shadow: 0 0 0 3px rgba(189, 3, 27, 0.18); }
.roadmap-item--planned .roadmap-item-status { color: var(--muted); }
.roadmap-item--planned .roadmap-item-status-dot { background: transparent; border: 1.5px solid var(--muted); }

.roadmap-item-title {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin: 0 0 12px;
  color: var(--ink-d);
}
.roadmap-item-body {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 760px) {
  /* spine: sits at center of the node column (column 1, 48px wide) = container_pad + 24px */
  .roadmap-spine { left: calc(var(--container-pad) + 24px); }
  .roadmap-phase {
    margin-left: 0;
    margin-right: auto;
    max-width: 100%;
    text-align: left;
    padding-left: 64px;
  }
  .roadmap-item {
    grid-template-columns: 48px 1fr;
  }
  /* node centered in its 48px column → aligns with spine */
  .roadmap-item-node {
    grid-column: 1;
    justify-self: center;
    margin-left: 0;
  }
  .roadmap-item--left .roadmap-item-card,
  .roadmap-item--right .roadmap-item-card {
    grid-column: 2;
    margin: 0;
    text-align: left;
  }
  .roadmap-item--left .roadmap-item-status { justify-content: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  .roadmap-item, .roadmap-phase { opacity: 1; transform: none; }
  .roadmap-cue-arrow { animation: none; }
  .roadmap-spine-fill { display: none; }
}

/* GET INVOLVED HUB */
.involve-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.involve-card {
  position: relative;
  padding: 40px 36px 36px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  transition: border-color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
}
.involve-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -20px rgba(189, 3, 27, 0.18);
}
.involve-card-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.18em;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rule);
}
.involve-card-title {
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--ink-d);
}
.involve-card-body {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}
.involve-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1.5px;
  align-self: flex-start;
  transition: gap var(--t-fast), color var(--t-fast);
}
.involve-card-cta:hover {
  gap: 12px;
  color: var(--accent-deep);
}
@media (max-width: 720px) { .involve-grid { grid-template-columns: 1fr; } }

/* CONTACT FORM */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 560px;
  margin: 48px 0;
}
.contact-field { display: flex; flex-direction: column; gap: 6px; }
.contact-field label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-field input,
.contact-field textarea,
.contact-field select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--rule);
  border-radius: var(--radius-sm);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  transition: border-color var(--t-fast);
}
.contact-field input:focus,
.contact-field textarea:focus,
.contact-field select:focus {
  outline: none;
  border-color: var(--accent);
}
.contact-field textarea { min-height: 140px; resize: vertical; }
.contact-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
}
.contact-meta h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.contact-meta p, .contact-meta a { font-size: 16px; color: var(--ink); }
.contact-meta a:hover { color: var(--accent); }
@media (max-width: 720px) { .contact-meta { grid-template-columns: 1fr; gap: 20px; } }

/* --- INTERIOR PAGES (volunteer, about, etc.) ------------------------- */
.page-hero {
  padding: clamp(64px, 9vw, 120px) 0 clamp(48px, 7vw, 88px);
  background:
    radial-gradient(ellipse 80% 60% at 70% 35%, rgba(232, 154, 77, 0.10), transparent 70%),
    #FAF4EA;
  border-bottom: 1px solid var(--rule);
}
.page-hero-inner { max-width: 760px; }
.page-hero-title {
  font-size: clamp(40px, 5.5vw, 72px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  font-weight: 700;
  color: var(--ink-d);
  margin-bottom: 36px;
}
.page-verse {
  position: relative;
  margin: 0;
  max-width: 64ch;
  padding-left: 24px;
  border-left: 2px solid var(--accent);
}
.page-verse p {
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 14px;
}
.page-verse cite {
  font-style: normal;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.content-section {
  padding: var(--section-y) 0;
  background: var(--paper);
}
.content-narrow { max-width: 760px; }
.content-body {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 24px;
}
.content-body strong {
  font-weight: 700;
  color: var(--ink-d);
}
.content-h3 {
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink-d);
  margin: 48px 0 20px;
}
.content-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}
.content-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
}
.content-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 14px;
  height: 1.5px;
  background: var(--accent);
}

/* --- A11Y / MOTION ---------------------------------------------------- */
.btn:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

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