/* ============================================================
   WildInvest — Global Stylesheet (Editorial Redesign)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600&family=Source+Sans+3:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=JetBrains+Mono:wght@400;500&display=swap');

/* ── Tokens ────────────────────────────────────────────────── */
:root {
  /* Brand palette — kept from v19, refined */
  --forest:        #2D4A2D;
  --forest-dark:   #1A2E1A;
  --forest-light:  #3D6B3D;
  --ochre:         #C8892A;
  --ochre-deep:    #B07820;
  --terracotta:    #B5522B;
  --soil:          #5C3D1E;

  /* Surfaces — softer cream/sage palette matching v19 sage tone */
  --paper:         #FAF7F0;   /* warm off-white, body default */
  --offwhite:      #F4EFE5;   /* slightly warmer surface */
  --cream:         #ECE5D6;   /* deeper cream */
  --sage:          #E6EDE3;   /* light sage — matches v19 section bg */
  --sage-deep:     #D2DCCD;

  /* Ink */
  --text-dark:     #1C1C18;
  --text-mid:      #4A4A40;
  --text-light:    #7A7A6E;
  --rule:          rgba(28,28,24,0.12);
  --rule-strong:   rgba(28,28,24,0.22);

  --white:         #FFFFFF;
  --black:         #000000;

  /* Type */
  --font-serif:    'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans:     'Source Sans 3', 'Helvetica Neue', system-ui, sans-serif;
  --font-mono:     'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  /* Layout */
  --container:     1240px;
  --container-narrow: 880px;
  --container-wide: 1440px;
  --gutter:        clamp(20px, 4vw, 56px);
  --radius:        3px;
  --radius-sm:     2px;
  --transition:    0.35s cubic-bezier(.4,0,.2,1);

  --nav-h:         94px;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--paper);
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
/* Deter casual image copying (drag / long-press save). Not screenshot-proof. */
img, video, .hero-bg, .kb-slide, .voice-bg { -webkit-user-drag: none; -khtml-user-drag: none; -moz-user-drag: none; -o-user-drag: none; user-select: none; -webkit-user-select: none; -webkit-touch-callout: none; }
a { color: inherit; text-decoration: none; }
.donate-show-mobile { display: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
/* Faster, single-tap response on touch: kill the 300ms double-tap-zoom wait. */
a, button, .btn, [role="button"], summary, label, input[type="submit"] { touch-action: manipulation; -webkit-tap-highlight-color: transparent; }
/* On touch devices, don't require a first tap just to trigger a sticky :hover state. */
@media (hover: none) {
  a:hover, .btn:hover, button:hover, .project-card:hover, .project-card-featured:hover, .grant-card:hover, .mf-card:hover, .story-card:hover, .team-card:hover { transform: none; }
}

/* ── Type Scale ────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.12;
  color: var(--forest-dark);
  letter-spacing: -0.005em;
}
h1 { font-size: clamp(2.4rem, 5.2vw, 4.4rem); font-weight: 400; }
h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
h4 { font-size: clamp(1.15rem, 1.8vw, 1.35rem); font-weight: 600; }
h5 { font-size: 1rem; font-weight: 600; }
p { font-size: 1.05rem; color: var(--text-mid); max-width: 70ch; }
p.lead {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.1vw, 1.55rem);
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-dark);
  font-style: italic;
}

/* Eyebrow + rule */
.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 18px;
}
.eyebrow-light { color: rgba(255,255,255,0.75); }

.rule {
  width: 48px;
  height: 1px;
  background: var(--ochre);
  margin: 22px 0 28px;
  border: 0;
}
.rule-centre { margin-left: auto; margin-right: auto; }
.rule-heavy { height: 2px; }

/* Pull quote in body copy */
.pull-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.4;
  color: var(--forest-dark);
  padding: 8px 0 8px 28px;
  border-left: 2px solid var(--ochre);
  margin: 36px 0;
  max-width: 32ch;
}
.pull-quote cite {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 14px;
}

/* ── Utility ───────────────────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 var(--gutter); }
.container-wide { max-width: var(--container-wide); margin: 0 auto; padding: 0 var(--gutter); }
.section-pad { padding: clamp(72px, 9vw, 130px) 0; }
.section-pad-sm { padding: clamp(56px, 6vw, 84px) 0; }
.text-centre { text-align: center; }
.text-white { color: var(--white) !important; }
.text-white * { color: inherit; }

.bg-paper { background: var(--paper); }
.bg-offwhite { background: var(--offwhite); }
.bg-cream { background: var(--cream); }
.bg-sage { background: var(--sage); }
.bg-forest { background: var(--forest-dark); color: var(--paper); }
.bg-forest h1, .bg-forest h2, .bg-forest h3 { color: var(--paper); }
.bg-forest p { color: rgba(255,255,255,0.82); }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}
.btn-primary:hover {
  background: var(--forest-dark);
  border-color: var(--forest-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45,74,45,0.3);
}
.btn-donate {
  background: var(--ochre);
  color: var(--white);
  border-color: var(--ochre);
  padding: 16px 36px;
  font-size: 0.92rem;
}
.btn-donate:hover {
  background: var(--ochre-deep);
  border-color: var(--ochre-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(200,137,42,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.65);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}
.btn-outline-dark {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}
.btn-outline-dark:hover {
  background: var(--forest);
  color: var(--white);
}
.btn-ghost {
  background: transparent;
  color: var(--text-dark);
  border-color: var(--text-dark);
}
.btn-ghost:hover {
  background: var(--text-dark);
  color: var(--paper);
}
.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest);
  border-bottom: 1.5px solid var(--ochre);
  padding-bottom: 3px;
  transition: gap var(--transition), color var(--transition);
}
.btn-link:hover { gap: 14px; color: var(--ochre); }
.btn-link-light {
  color: var(--white);
  border-bottom-color: var(--ochre);
}
.btn-link-light:hover { color: var(--ochre); }

/* Back link */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 32px;
  transition: gap var(--transition), color var(--transition);
}
.back-link:hover { gap: 14px; color: var(--forest); }

/* ── Donate top bar ────────────────────────────────────────── */
.donate-bar {
  background: var(--forest-dark);
  color: var(--paper);
  padding: 11px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 5;
}
.donate-bar p {
  margin: 0;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.82);
  max-width: none;
  letter-spacing: 0.02em;
}
.donate-bar a {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ochre);
  border-bottom: 1px solid var(--ochre);
  padding-bottom: 2px;
  transition: color var(--transition);
}
.donate-bar a:hover { color: var(--white); border-bottom-color: var(--white); }

/* ── Section intro ─────────────────────────────────────────── */
.intro-block {
  max-width: 720px;
  margin: 0 auto 64px;
  text-align: center;
}
.intro-block .rule { margin: 20px auto 28px; }
.intro-block h2 { margin-bottom: 20px; text-wrap: balance; }
.intro-block p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-mid);
  margin-left: auto;
  margin-right: auto;
}
.intro-block.intro-left { text-align: left; margin-left: 0; }
.intro-block.intro-left .rule { margin-left: 0; }
.intro-block.intro-left p { margin-left: 0; }

/* ── Hero (full-bleed) ─────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--paper);
  isolation: isolate;
}
.hero-page {
  min-height: 480px;
  align-items: flex-end;
}
.hero-page .hero-content { padding: 0 var(--gutter) 88px; }
.hero-page h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  filter: brightness(1);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(160deg, rgba(20,32,22,0.28) 0%, rgba(20,32,22,0.44) 50%, rgba(15,24,16,0.72) 100%);
}
.hero-overlay::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 55%, rgba(0,0,0,0.4) 100%);
  pointer-events: none;
  mix-blend-mode: multiply;
}
.hero-content h1 .hero-tag {
  display: block;
  width: 64px;
  height: 2px;
  background: var(--ochre);
  margin: 0 auto 28px;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 920px;
  padding: 140px var(--gutter) 100px;
}
.hero-content .eyebrow { color: var(--white); }
.hero-content h1 {
  color: var(--paper);
  margin-bottom: 28px;
  font-weight: 400;
  font-style: italic;
  text-shadow: 0 2px 14px rgba(0,0,0,0.4);
  text-wrap: balance;
}
.hero-content h1 em { color: var(--ochre); font-style: italic; }
.hero-content p {
  color: rgba(255,255,255,0.92);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  max-width: 60ch;
  margin: 0 auto 38px;
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Floating hero scroll cue */
.hero-scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: float-cue 2.4s ease-in-out infinite;
}
.hero-scroll-cue::after {
  content: "";
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.4);
}
@keyframes float-cue {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.55; }
  50%      { transform: translate(-50%, 6px); opacity: 0.85; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-scroll-cue { animation: none; }
}

/* ── Photo Figure (image + caption + credit) ──────────────── */
.photo-figure {
  position: relative;
  margin: 0;
  overflow: visible;
  border-radius: var(--radius);
  background: transparent;
}
.photo-figure img,
.photo-figure video {
  width: 100%;
  display: block;
  height: auto;
  border-radius: var(--radius);
  -webkit-user-drag: none;
  user-drag: none;
}
.photo-figure.photo-cover {
  height: 100%;
}
.photo-figure.photo-cover img {
  width: 100%; height: 100%;
  object-fit: cover;
}
/* ── Photo caption (museum-label treatment) ────────────────── */
.photo-caption {
  position: relative;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--text-mid);
  padding: 16px 4px 0 0;
  line-height: 1.55;
  max-width: 52ch;
  display: block;
}
.photo-caption::before {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: var(--ochre);
  margin-bottom: 10px;
}
/* Optional eyebrow at top of caption (mono uppercase tag) */
.photo-caption .cap-eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 6px;
}
/* Tight variant for grid items / overlays */
.photo-figure.cap-tight .photo-caption {
  font-size: 0.84rem;
  padding: 12px 4px 0 0;
}
.photo-figure.cap-tight .photo-caption::before { width: 20px; margin-bottom: 8px; }

/* Camera button (deprecated — kept for legacy markup, hidden) */
.cam-btn, .cam-tip { display: none !important; }

/* Photo credit (small mono caption under each figure) */
.photo-credit {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 10px;
  opacity: 0.7;
  line-height: 1.5;
}

/* Camera button — sits over the image */
.cam-btn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.32);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  z-index: 4;
  padding: 0;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.cam-btn:hover, .cam-btn:focus-visible {
  background: var(--ochre);
  transform: scale(1.08);
  border-color: var(--ochre);
  outline: 0;
}
.cam-btn svg {
  width: 18px; height: 18px;
  stroke: var(--white);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}
.cam-tip {
  position: absolute;
  bottom: 56px;
  right: 12px;
  background: rgba(26,46,26,0.96);
  color: rgba(255,255,255,0.9);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border-left: 2px solid var(--ochre);
  max-width: 280px;
  text-align: right;
  line-height: 1.55;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity var(--transition), transform var(--transition);
  z-index: 5;
  box-shadow: 0 8px 28px rgba(0,0,0,0.3);
}
.cam-tip.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Section divider ───────────────────────────────────────── */
.section-divider {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 88px 0 56px;
}
.section-divider::before, .section-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--rule);
}
.section-divider-label {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ochre);
  white-space: nowrap;
}

/* ── Project cards ─────────────────────────────────────────── */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(28px, 3vw, 40px);
}
.project-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(0,0,0,0.05);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 42px rgba(0,0,0,0.12);
}
.project-card-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.project-card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(.2,.7,.2,1);
}
.project-card:hover .project-card-img-wrap img { transform: scale(1.05); }
.project-card-body {
  padding: 32px 32px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.project-card-meta {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 10px;
  min-height: 1.5em;
  white-space: nowrap;
  flex: 0 0 auto;
}
.project-card-body h3 { font-size: 1.35rem; margin-bottom: 12px; line-height: 1.25; min-height: calc(1.35rem * 1.25 * 2); }
.project-card-body p:not(.project-card-meta) {
  font-size: 0.97rem;
  color: var(--text-mid);
  margin-bottom: 22px;
  flex: 1;
}
.project-card-link {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest);
  border-bottom: 1.5px solid var(--ochre);
  padding-bottom: 3px;
  align-self: flex-start;
  transition: color var(--transition), border-color var(--transition);
}
.project-card-link:hover { color: var(--ochre); }

/* Featured project card */
.project-card-featured {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  min-height: 460px;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 6px 32px rgba(0,0,0,0.08);
  margin-bottom: 40px;
}
.project-card-featured .project-card-img-wrap {
  aspect-ratio: auto;
  height: 100%;
  min-height: 460px;
}
.project-card-featured .project-card-body {
  padding: clamp(36px, 4vw, 56px);
  justify-content: center;
}
.project-card-featured .project-card-body h3 {
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  margin-bottom: 18px;
}
.project-card-featured .project-card-body p { font-size: 1rem; margin-bottom: 28px; }

/* Coming Soon teaser */
.project-teaser {
  background: var(--sage);
  border: 1.5px dashed var(--rule-strong);
  border-radius: var(--radius);
  padding: 48px;
  text-align: center;
}
.project-teaser p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--text-mid);
  margin: 0 auto;
  max-width: 50ch;
}
.project-teaser strong { color: var(--forest); font-weight: 500; }

/* Transparency note */
.transparency-note {
  background: var(--sage);
  border-left: 3px solid var(--ochre);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 24px;
  margin: 24px 0;
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.6;
}
.transparency-note strong { color: var(--forest-dark); font-weight: 600; }

/* ── Stats Strip ───────────────────────────────────────────── */
.stats-strip {
  background: var(--forest-dark);
  padding: 0;
  overflow: hidden;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.stat-item {
  padding: 72px 36px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
  position: relative;
}
.stat-item:last-child { border-right: 0; }
.stat-item::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--ochre);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.7s cubic-bezier(.2,.7,.2,1);
}
.stat-item.visible::before { transform: scaleX(1); }
.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5.4vw, 5.2rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  margin-bottom: 14px;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  max-width: none;
}

/* ── Three Strands (Pillars) ───────────────────────────────── */
.pillars-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-top: 3px solid var(--ochre);
}
.pillars-bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover;
  background-position: center;
  filter: brightness(0.42);
}
.pillars-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,46,26,0.4), rgba(10,20,10,0.6));
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 32px);
}
.pillar-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  padding: 40px 36px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.pillar-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--ochre);
  transform: translateY(-4px);
}
.pillar-num {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-style: italic;
  color: var(--ochre);
  line-height: 1;
  margin-bottom: 16px;
}
.pillar-card h3 {
  color: var(--white);
  margin-bottom: 14px;
  font-size: 1.35rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.pillar-card p {
  color: rgba(255,255,255,0.85);
  font-size: 0.96rem;
  line-height: 1.65;
  max-width: none;
}
.pillar-card p strong { color: var(--ochre); font-weight: 600; }

/* ── Collapsible accordion (used for "Our Story", expedition strands, etc.) ── */
.wi-acc { border-top: 1px solid rgba(28,28,24,0.14); margin-bottom: 8px; }
.wi-acc > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 4px;
  outline: none;
}
.wi-acc > summary::-webkit-details-marker { display: none; }
.wi-acc > summary:hover .wi-acc-title,
.wi-acc > summary:focus-visible .wi-acc-title { color: var(--ochre); }
.wi-acc-title {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.02rem;
  line-height: 1.3;
  color: var(--forest-dark);
  transition: color .25s;
}
.wi-acc-title.serif {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
}
.wi-acc-chevron { flex-shrink: 0; width: 20px; height: 20px; position: relative; transition: transform .35s cubic-bezier(.4,0,.2,1); }
.wi-acc-chevron::before, .wi-acc-chevron::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 13px; height: 1.5px;
  background: var(--ochre);
  transform-origin: center;
}
.wi-acc-chevron::before { transform: translate(-50%,-50%); }
.wi-acc-chevron::after { transform: translate(-50%,-50%) rotate(90deg); transition: transform .35s cubic-bezier(.4,0,.2,1); }
.wi-acc[open] > summary .wi-acc-chevron::after { transform: translate(-50%,-50%) rotate(0deg); }
.wi-acc-body { padding: 0 4px 20px; max-width: 74ch; }
.wi-acc-body p + p { margin-top: 1.1em; }
@keyframes nlFlash { 0%,100% { box-shadow: 0 0 0 0 rgba(201,139,42,0); } 30% { box-shadow: 0 0 0 4px rgba(201,139,42,0.6); } }
.nl-flash { animation: nlFlash 1.6s ease; border-radius: 6px; }
.wi-acc[open] > .wi-acc-body { animation: accReveal .4s ease both; }
@keyframes accReveal { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .wi-acc[open] .wi-acc-body { animation: none; } }

/* ── Blog/dispatch cards ───────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(28px, 3vw, 40px);
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(0,0,0,0.05);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 42px rgba(0,0,0,0.12);
}
.blog-card-img-wrap {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.blog-card-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 28px 30px; display: flex; flex-direction: column; flex: 1; }
.blog-card-meta {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 10px;
}
.blog-card-body h3 { font-size: 1.25rem; margin-bottom: 12px; line-height: 1.3; }
.blog-card-body p { font-size: 0.95rem; flex: 1; margin-bottom: 18px; }

/* ── Photo layouts — asymmetric, cinematic ─────────────────── */
/* photo-grid-2 (legacy flat 2-col) → asymmetric mosaic, second photo offset */
.photo-grid-2 {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  grid-template-rows: auto auto;
  gap: 18px 22px;
  margin: 56px 0;
  align-items: start;
}
.photo-grid-2 > .photo-figure:nth-child(1) {
  grid-row: 1 / span 2;
  align-self: stretch;
}
.photo-grid-2 > .photo-figure:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
  margin-top: 36px;
}
.photo-grid-2 > .photo-figure:nth-child(1) img { aspect-ratio: 3/4; object-fit: cover; }
.photo-grid-2 > .photo-figure:nth-child(2) img { aspect-ratio: 4/3; object-fit: cover; }

/* photo-grid-2-1 (legacy 2:1) keeps simple cinematic split */
.photo-grid-2-1 {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 22px;
  margin: 48px 0;
  align-items: start;
}
.photo-grid-2-1 .photo-figure img { aspect-ratio: 4/3; object-fit: cover; }

/* photo-grid-3 → drop-in for a horizontal scrollable cinema strip */
.photo-grid-3 {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  gap: 18px;
  margin: 48px -4px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 6px 4px 18px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--ochre) transparent;
}
.photo-grid-3::-webkit-scrollbar { height: 6px; }
.photo-grid-3::-webkit-scrollbar-thumb { background: var(--ochre); border-radius: 3px; }
.photo-grid-3 .photo-figure {
  scroll-snap-align: start;
}
.photo-grid-3 .photo-figure img { aspect-ratio: 4/5; object-fit: cover; }
.photo-grid-3 .photo-figure:nth-child(odd) img { aspect-ratio: 3/4; }
.photo-grid-3 .photo-figure:nth-child(3n) img { aspect-ratio: 4/3; }

/* photo-mosaic-4 — asymmetric 2x2 replacement, jazz layout */
.photo-mosaic-4 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(160px, auto);
  gap: 14px;
  margin: 56px 0;
}
.photo-mosaic-4 > .photo-figure:nth-child(1) { grid-column: span 4; grid-row: span 2; }
.photo-mosaic-4 > .photo-figure:nth-child(2) { grid-column: span 2; }
.photo-mosaic-4 > .photo-figure:nth-child(3) { grid-column: span 2; }
.photo-mosaic-4 > .photo-figure:nth-child(4) { grid-column: span 6; }
.photo-mosaic-4 > .photo-figure img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 760px) {
  .photo-mosaic-4 { grid-template-columns: 1fr; }
  .photo-mosaic-4 > .photo-figure { grid-column: 1 / -1 !important; grid-row: auto !important; }
  .photo-mosaic-4 > .photo-figure img { aspect-ratio: 4/3; }
  .photo-grid-2 { grid-template-columns: 1fr; }
  .photo-grid-2 > .photo-figure:nth-child(2) { grid-column: 1; margin-top: 0; }
}

.photo-full { margin: 56px 0; }
.photo-full .photo-figure img { width: 100%; max-height: 720px; object-fit: cover; }

/* Photo break-out — full-bleed against the container */
.photo-breakout {
  position: relative;
  margin: 64px calc(50% - 50vw);
  width: 100vw;
  max-width: 100vw;
}
.photo-breakout .photo-figure img {
  width: 100%;
  max-height: 78vh;
  object-fit: cover;
}
.photo-breakout .breakout-caption-wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px var(--gutter) 0;
}

/* ── Approach 2-col block ──────────────────────────────────── */
.approach-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 84px);
  align-items: center;
}
.approach-block .photo-figure img { aspect-ratio: 4/5; object-fit: cover; height: 100%; }

/* 2-col intro layout used heavily on Nicaragua */
.section-intro-2col {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: start;
}

/* ── Sub-project header block ──────────────────────────────── */
.sub-project-header {
  background: var(--forest-dark);
  border-radius: var(--radius);
  padding: 36px 40px;
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.sub-project-header h2 { color: var(--paper); margin: 0; font-size: clamp(1.45rem, 2.5vw, 2.1rem); }
.sub-project-header .location-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-top: 8px;
  display: block;
}

/* Partner tags */
.partner-logos {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}
.partner-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
}
.partner-tag {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-mid);
  background: var(--sage);
  border-radius: var(--radius-sm);
  padding: 6px 14px;
}
.partner-tag strong { color: var(--forest); font-weight: 600; }

/* Fact-box / quick stats */
.fact-box {
  background: var(--forest-dark);
  border-radius: var(--radius);
  padding: 32px;
  margin: 36px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  text-align: center;
}
.fact-box-item .n {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 300;
  color: var(--paper);
  line-height: 1;
  margin-bottom: 8px;
}
.fact-box-item .l {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  max-width: none;
}

/* Project tabs (used on Nicaragua page) */
.project-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.project-tab {
  padding: 11px 24px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--white);
  color: var(--text-mid);
  border: 1.5px solid var(--rule);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.project-tab:hover, .project-tab.active {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}
.project-tab.tab-donate {
  background: var(--ochre);
  color: var(--white);
  border-color: var(--ochre);
}
.project-tab.tab-donate:hover { background: var(--ochre-deep); border-color: var(--ochre-deep); }

/* ── Video figure (placeholder for now) ────────────────────── */
.video-figure {
  position: relative;
  background: var(--forest-dark);
  border-radius: var(--radius);
  aspect-ratio: 16/9;
  overflow: hidden;
  margin: 36px 0;
}
.video-figure video {
  width: 100%; height: 100%; object-fit: cover;
}
.video-figure .video-placeholder {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-size: cover;
  background-position: center;
}
.video-figure .video-placeholder::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(rgba(20,32,22,0.55), rgba(10,20,10,0.75));
}
.video-figure .video-placeholder-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}
.video-figure .video-soon-badge {
  display: inline-block;
  background: var(--ochre);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
}
.video-figure .video-placeholder p {
  color: var(--paper);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  max-width: 36ch;
  margin: 0 auto;
}

/* ── Forms ─────────────────────────────────────────────────── */
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
}
.form-control {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  border: 1.5px solid var(--rule-strong);
  border-radius: var(--radius);
  outline: 0;
  transition: border-color var(--transition);
}
.form-control:focus { border-color: var(--ochre); }
textarea.form-control { min-height: 140px; resize: vertical; }

/* ── Donate section (sitewide block) ───────────────────────── */
.donate-section {
  background: var(--forest-dark);
  padding: clamp(80px, 9vw, 130px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.donate-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url('../images/Trees.JPG');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  filter: brightness(0.5);
}
.donate-section h2 { color: var(--paper); margin-bottom: 22px; max-width: 22ch; margin-left: auto; margin-right: auto; }
.donate-section p {
  color: rgba(255,255,255,0.85);
  max-width: 60ch;
  margin: 0 auto 40px;
  font-size: 1.08rem;
}

/* ── Donate modal (UK/US toggle on click) ──────────────────── */
.donate-modal {
  position: fixed;
  inset: 0;
  z-index: 2147483640;
  background: rgba(15,20,15,0.78);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.donate-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.donate-modal-inner {
  background: var(--paper);
  border-radius: var(--radius);
  max-width: 520px;
  width: 100%;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 48px 44px 40px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(.2,.7,.2,1);
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}
.donate-modal.open .donate-modal-inner { transform: translateY(0); }
.donate-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.2rem;
  color: var(--text-mid);
  background: transparent;
  transition: background var(--transition), color var(--transition);
}
.donate-modal-close:hover {
  background: var(--sage);
  color: var(--forest-dark);
}
.donate-modal .eyebrow { color: var(--ochre); margin-bottom: 8px; }
.donate-modal h3 {
  font-size: clamp(1.5rem, 2.4vw, 1.85rem);
  margin-bottom: 12px;
  color: var(--forest-dark);
}
.donate-modal > .donate-modal-inner > p {
  color: var(--text-mid);
  font-size: 0.98rem;
  margin-bottom: 28px;
  max-width: none;
}
.donate-modal-options {
  display: grid;
  gap: 14px;
  margin-bottom: 20px;
}
.donate-freq-heading {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ochre);
  margin: 6px 0 2px;
}
.donate-freq-heading:first-child { margin-top: 0; }
.donate-modal-option {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 22px;
  border: 1.5px solid var(--rule);
  border-radius: var(--radius);
  background: var(--white);
  text-align: left;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  color: inherit;
}
.donate-modal-option:hover {
  border-color: var(--ochre);
  background: var(--offwhite);
  transform: translateX(3px);
}
.donate-modal-option .flag {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
}
.donate-modal-option .opt-text { flex: 1; }
.donate-modal-option .opt-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--forest-dark);
  margin-bottom: 2px;
}
.donate-modal-option .opt-sub {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}
.donate-modal-option .opt-arrow {
  color: var(--ochre);
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.donate-modal-option:hover .opt-arrow { transform: translateX(4px); }
.donate-modal-foot {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-light);
  letter-spacing: 0.08em;
  margin-top: 8px;
}

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  background: #E3E7DB;
  color: rgba(26,46,26,0.78);
  padding: 80px 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.3fr;
  gap: 56px;
  margin-bottom: 56px;
}
.footer-brand .nav-logo { display: inline-flex; margin-bottom: 18px; }
.footer-logo-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.footer-logo-chip img { height: 104px; width: auto; display: block; }
.footer-brand p {
  font-size: 0.92rem;
  margin-bottom: 24px;
  max-width: 32ch;
  line-height: 1.65;
}
.footer-heading {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(26,46,26,0.5);
  margin-bottom: 20px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-size: 0.92rem;
  color: rgba(26,46,26,0.72);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--ochre); }
.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(26,46,26,0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(26,46,26,0.7);
  transition: all var(--transition);
}
.social-icon:hover {
  background: var(--ochre);
  border-color: var(--ochre);
  color: var(--white);
}
.social-icon svg { display: block; }
.footer-newsletter .form-control {
  background: rgba(26,46,26,0.06);
  border-color: rgba(26,46,26,0.2);
  color: var(--forest-dark);
  padding: 12px 14px;
}
.footer-newsletter .form-control::placeholder { color: rgba(26,46,26,0.4); }
.footer-newsletter .form-control:focus { border-color: var(--ochre); }
.footer-newsletter .btn {
  width: 100%;
  margin-top: 6px;
}
.footer-bottom {
  border-top: 1px solid rgba(26,46,26,0.15);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: rgba(26,46,26,0.5);
  letter-spacing: 0.06em;
}
.footer-bottom a { color: rgba(26,46,26,0.6); }
.footer-bottom a:hover { color: var(--ochre); }

/* ── Fade-up animation ─────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s ease, transform 0.85s cubic-bezier(.2,.7,.2,1);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }
@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
}

/* ── Image copyright protection (right-click + drag block) ──── */
img {
  -webkit-user-drag: none;
  user-drag: none;
}

/* ── Print styles ──────────────────────────────────────────── */
@media print {
  .donate-bar, .nav, .footer, .donate-modal, .cam-btn, .cam-tip { display: none !important; }
  body { background: white; color: black; }
}

/* ── Mobile responsiveness ─────────────────────────────────── */
@media (max-width: 1024px) {
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .approach-block { grid-template-columns: 1fr; gap: 40px; }
  .section-intro-2col { grid-template-columns: 1fr; gap: 36px; }
  .project-card-featured { grid-template-columns: 1fr; }
  .project-card-featured .project-card-img-wrap { min-height: 320px; }
}
@media (max-width: 768px) {
  .hero { min-height: auto; }
  .hero-page { min-height: 360px; }
  .hero-content { padding: 128px 22px 72px; }
  .hero-content h1 { white-space: normal !important; font-size: clamp(1.75rem, 7vw, 2.5rem); margin-bottom: 20px; }
  .hero-content h1 span[style], .hero-content h1 em[style] { white-space: normal !important; font-size: inherit !important; }
  .project-card-featured { grid-template-columns: 1fr; min-height: 0; }
  .project-card-featured .project-card-img-wrap { min-height: 200px; height: auto; aspect-ratio: 16/10; }
  .donate-hide-mobile { display: none !important; }
  .donate-show-mobile { display: block; }
  .project-card-featured .project-card-body { padding: 26px 22px 30px; }
  .project-card-featured .project-card-body p { font-size: 0.98rem; margin-bottom: 22px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr; }
  .stat-item { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 48px 24px; }
  .stat-item:last-child { border-bottom: 0; }
  .photo-grid-2, .photo-grid-3, .photo-grid-2-1 { grid-template-columns: 1fr; }
  .fact-box { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .donate-modal-inner { padding: 36px 28px 30px; }
}
@media (max-width: 480px) {
  .hero-content { padding: 120px 20px 64px; }
  .hero-content h1 { font-size: clamp(1.55rem, 8.4vw, 2.1rem); }
  .hero-content p { font-size: 1rem; margin-bottom: 26px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .project-card-featured .project-card-body > div { flex-direction: column; align-items: stretch; }
  .project-card-featured .project-card-body > div .btn { width: 100%; text-align: center; }
  .project-tabs .project-tab { flex: 1 1 auto; text-align: center; }
}
