/* ==========================================================================
   Copper Sanctuary — v2
   Native Plant Seed Pack Program
   Palette: brand copper + desert (terracotta, sage, warm yellow, sandy beige)
   ========================================================================== */

:root {
  /* Brand */
  --copper: #b87333;
  --copper-light: #d4924a;
  --green: #4a7c59;

  /* Desert palette (brief) */
  --terracotta: #c1603c;
  --terracotta-deep: #9e4a2c;
  --sage: #8ca188;
  --sage-deep: #5f7a5e;
  --sun: #e9b44c;
  --sand: #f6efe3;
  --sand-deep: #ede1cc;

  /* Neutrals */
  --ink: #33291f;
  --ink-soft: #5e5142;
  --paper: #fffdf8;

  --radius: 40px;
  --radius-sm: 18px;
  --shadow: 0 18px 40px -18px rgba(51, 41, 31, 0.25);

  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--sand);
}

img, svg { display: block; max-width: 100%; }

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.12;
  margin: 0 0 0.5em;
  color: var(--ink);
}

h1 { font-size: clamp(2.4rem, 6vw, 4rem); font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 650; letter-spacing: -0.015em; }
h3 { font-size: 1.25rem; font-weight: 600; }

p { margin: 0 0 1em; }

a { color: var(--terracotta-deep); }

.wrap {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }

.kicker {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta-deep);
  background: rgba(193, 96, 60, 0.12);
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  margin-bottom: 1rem;
}

.section-head { max-width: 640px; margin-bottom: clamp(2rem, 5vw, 3.25rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--ink-soft); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 650;
  font-size: 1rem;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 0.9rem 1.8rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(135deg, var(--terracotta), var(--terracotta-deep));
  color: #fff;
  box-shadow: 0 12px 26px -10px rgba(158, 74, 44, 0.55);
}
.btn-primary:hover { box-shadow: 0 16px 30px -10px rgba(158, 74, 44, 0.65); }

.btn-secondary {
  background: var(--paper);
  color: var(--terracotta-deep);
  box-shadow: inset 0 0 0 2px rgba(193, 96, 60, 0.45);
}
.btn-secondary:hover { background: #fff; }

.btn-green {
  background: var(--sage-deep);
  color: #fff;
  box-shadow: 0 12px 26px -10px rgba(95, 122, 94, 0.55);
}

.btn-lg { font-size: 1.1rem; padding: 1.05rem 2.2rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 239, 227, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(51, 41, 31, 0.08);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.8rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}

.brand img { height: 38px; width: auto; display: block; }

@media (max-width: 480px) {
  .brand img { height: 30px; }
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(140deg, var(--copper-light), var(--copper));
  display: grid;
  place-items: center;
  color: #fff;
  flex-shrink: 0;
}

.site-nav { display: flex; align-items: center; gap: 1.5rem; }

.site-nav a {
  font-family: var(--font-display);
  font-weight: 550;
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--ink-soft);
}
.site-nav a:hover { color: var(--terracotta-deep); }

.site-nav a.active {
  color: var(--terracotta-deep);
  font-weight: 700;
}

.site-nav .btn { padding: 0.55rem 1.25rem; font-size: 0.92rem; }

.nav-toggle { display: none; }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 10vw, 8rem) 0 0;
  background:
    linear-gradient(180deg, #fdf3df 0%, #f9e3bd 38%, #f2c98f 68%, #e8b377 100%);
}

.hero .wrap {
  position: relative;
  z-index: 2;
  max-width: 760px;
  text-align: center;
  padding-bottom: clamp(11rem, 24vw, 16rem);
}

.hero h1 { color: #4b3320; }
.hero h1 em { font-style: normal; color: var(--terracotta-deep); }

.hero-sub {
  font-size: clamp(1.1rem, 2.2vw, 1.3rem);
  color: #6b4f33;
  max-width: 560px;
  margin: 0 auto 2rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.4rem;
  justify-content: center;
  margin-top: 1.6rem;
  font-size: 0.9rem;
  font-weight: 550;
  color: #6b4f33;
}

.hero-badges span { display: inline-flex; align-items: center; gap: 0.4rem; }

.hero-scene {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  width: 100%;
  height: auto;
  pointer-events: none;
}

/* ---------- Mission ---------- */

.mission { background: var(--paper); }

.mission-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.mission-copy p { font-size: 1.1rem; color: var(--ink-soft); }
.mission-copy strong { color: var(--ink); }

.mission-card {
  background: linear-gradient(150deg, #eef3ea, #dde8d8);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.mission-card h3 { color: var(--sage-deep); display: flex; align-items: center; gap: 0.5rem; }

.mission-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.mission-card li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.98rem;
  color: var(--ink-soft);
}

.mission-card li::before {
  content: "";
  flex-shrink: 0;
  width: 9px;
  height: 9px;
  margin-top: 0.5em;
  border-radius: 50%;
  background: var(--sage-deep);
}

.tax-note {
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px dashed rgba(95, 122, 94, 0.4);
  font-size: 0.88rem;
  color: var(--sage-deep);
  font-weight: 550;
}

/* ---------- Plants ---------- */

.plants { background: var(--sand); }

.plant-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.4rem;
}

@media (min-width: 1080px) {
  .plant-grid { grid-template-columns: repeat(5, 1fr); gap: 1.1rem; }
  .plant-body { padding: 1rem 1.1rem 1.25rem; }
}

.plant-card {
  background: var(--paper);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease;
}

.plant-card:hover { transform: translateY(-5px); }

.plant-art {
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
}

.plant-art svg { width: 72%; height: 72%; }

.plant-body { padding: 1.1rem 1.25rem 1.4rem; }

.plant-body h3 { margin-bottom: 0.1rem; font-size: 1.12rem; }

.plant-sci {
  font-style: italic;
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 0.6rem;
}

.plant-body p { font-size: 0.92rem; color: var(--ink-soft); margin: 0; }

.plant-tag {
  display: inline-block;
  margin-top: 0.8rem;
  font-size: 0.74rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
}

.tag-easy { background: rgba(95, 122, 94, 0.14); color: var(--sage-deep); }
.tag-pollinator { background: rgba(233, 180, 76, 0.22); color: #8a6314; }
.tag-hummingbird { background: rgba(193, 96, 60, 0.14); color: var(--terracotta-deep); }

/* ---------- How it works ---------- */

.how { background: linear-gradient(165deg, #50443a, #3b322a); color: #f3ead9; }
.how h2, .how h3 { color: #fdf6e8; }
.how .kicker { background: rgba(233, 180, 76, 0.18); color: var(--sun); }
.how .section-head p { color: #cfc2ac; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  counter-reset: step;
}

.step {
  position: relative;
  background: rgba(255, 253, 248, 0.06);
  border: 1px solid rgba(255, 253, 248, 0.12);
  border-radius: var(--radius-sm);
  padding: 2.4rem 1.5rem 1.6rem;
}

.step-num {
  position: absolute;
  top: -1.1rem;
  left: 1.5rem;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  background: var(--sun);
  color: #4b3320;
}

.step-icon { margin-bottom: 0.9rem; }
.step p { color: #cfc2ac; font-size: 0.96rem; margin: 0; }

/* ---------- Tiers ---------- */

.tiers { background: var(--paper); }

.tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.4rem;
  align-items: stretch;
}

.tier {
  display: flex;
  flex-direction: column;
  background: var(--sand);
  border-radius: var(--radius-sm);
  padding: 1.8rem 1.5rem;
  text-align: center;
  border: 2px solid transparent;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.tier:hover { transform: translateY(-5px); border-color: rgba(193, 96, 60, 0.35); }

.tier.featured {
  background: linear-gradient(160deg, #fbf0da, #f6e3bd);
  border-color: var(--sun);
  position: relative;
}

.tier-flag {
  position: absolute;
  top: -0.85rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sun);
  color: #4b3320;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  white-space: nowrap;
}

.tier-amount {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--terracotta-deep);
}

.tier-name {
  font-family: var(--font-display);
  font-weight: 650;
  font-size: 1.05rem;
  margin: 0.2rem 0 0.4rem;
}

.tier-tagline {
  font-size: 0.92rem;
  color: var(--ink-soft);
  flex-grow: 1;
  margin-bottom: 1.4rem;
}

.tiers-note {
  text-align: center;
  margin-top: 1.8rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* ---------- Footer CTA ---------- */

.request {
  background:
    radial-gradient(120% 140% at 85% 0%, rgba(233, 180, 76, 0.25), transparent 55%),
    linear-gradient(160deg, #5f7a5e, #46604a);
  color: #eef3ea;
}

.request h2, .request h3 { color: #fdfaf2; }
.request .kicker { background: rgba(253, 250, 242, 0.15); color: #f6e3bd; }
.request .section-head p { color: #d4dfd0; }

.request-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.request-form {
  background: var(--paper);
  border-radius: var(--radius-sm);
  padding: 2rem;
  box-shadow: var(--shadow);
  color: var(--ink);
}

.request-form h3 { margin-bottom: 1.2rem; }

.field { margin-bottom: 1.1rem; }

.field label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 0.35rem;
}

.field input, .field textarea {
  width: 100%;
  font: inherit;
  font-size: 0.98rem;
  padding: 0.75rem 0.9rem;
  border: 1.5px solid var(--sand-deep);
  border-radius: 12px;
  background: var(--paper);
  color: var(--ink);
}

.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--sage-deep);
  box-shadow: 0 0 0 3px rgba(95, 122, 94, 0.18);
}

.form-note { font-size: 0.82rem; color: var(--ink-soft); margin: 0.9rem 0 0; }

.form-success {
  display: none;
  margin-top: 1rem;
  padding: 0.9rem 1.1rem;
  border-radius: 12px;
  background: rgba(95, 122, 94, 0.12);
  color: var(--sage-deep);
  font-weight: 550;
  font-size: 0.95rem;
}
.form-success.show { display: block; }

.form-error {
  display: none;
  margin-top: 1rem;
  padding: 0.9rem 1.1rem;
  border-radius: 12px;
  background: rgba(176, 74, 44, 0.10);
  color: var(--terracotta);
  font-weight: 550;
  font-size: 0.95rem;
}
.form-error.show { display: block; }

.hp-field { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

.ac-wrap { position: relative; }
.ac-list {
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  z-index: 200;
  margin: 0;
  padding: 0;
  list-style: none;
  background: #fff;
  border: 1.5px solid var(--copper);
  border-top: none;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.10);
  max-height: 220px;
  overflow-y: auto;
}
.ac-item {
  padding: 0.55rem 0.9rem;
  font-size: 0.87rem;
  cursor: pointer;
  color: var(--ink);
  line-height: 1.35;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.ac-item:last-of-type { border-bottom: none; }
.ac-item:hover,
.ac-item[aria-selected="true"] { background: rgba(184,115,51,0.09); color: var(--copper); }
.ac-attr {
  padding: 0.25rem 0.9rem;
  font-size: 0.7rem;
  color: var(--ink-soft);
  text-align: right;
}

.request-aside .btn { margin-top: 0.4rem; }

.request-aside ul {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 2rem;
  display: grid;
  gap: 0.8rem;
}

.request-aside li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  color: #d4dfd0;
  font-size: 0.98rem;
}

.request-aside li::before {
  content: "✓";
  color: var(--sun);
  font-weight: 700;
}

/* ---------- Footer ---------- */

.site-footer {
  background: #2c241d;
  color: #b5a892;
  padding: 3rem 0 2rem;
  font-size: 0.92rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.2rem;
}

.site-footer h4 {
  font-family: var(--font-display);
  color: #f3ead9;
  font-size: 0.95rem;
  margin: 0 0 0.8rem;
}

.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.45rem; }
.site-footer a { color: #b5a892; text-decoration: none; }
.site-footer a:hover { color: var(--copper-light); }

.footer-brand { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.9rem; color: #f3ead9; font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; }

/* Brand rule: copper glow on dark backgrounds */
.footer-brand img { height: 40px; width: auto; display: block; filter: drop-shadow(0 0 12px rgba(212, 146, 74, 0.5)); }

.footer-legal {
  border-top: 1px solid rgba(243, 234, 217, 0.12);
  padding-top: 1.4rem;
  font-size: 0.82rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  justify-content: space-between;
}

/* ---------- Responsive ---------- */

@media (max-width: 880px) {
  .mission-grid, .request-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid rgba(51, 41, 31, 0.1);
    box-shadow: var(--shadow);
    display: none;
    padding: 0.6rem 1.25rem 1.1rem;
  }

  .site-nav.open { display: flex; }
  .site-nav a { padding: 0.7rem 0; font-size: 1.05rem; }
  .site-nav .btn { margin-top: 0.6rem; justify-content: center; }

  .nav-toggle {
    display: grid;
    place-items: center;
    background: none;
    border: 0;
    padding: 0.4rem;
    cursor: pointer;
    color: var(--ink);
  }
}

@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-cta .btn { width: 100%; }
}

/* ==========================================================================
   Homepage
   ========================================================================== */

.hero-home .wrap { max-width: 820px; }

/* Featured program banner */

.feature { background: var(--paper); }

.feature-banner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  background: linear-gradient(150deg, #fdf3df, #f6e3bd);
  border: 2px solid rgba(233, 180, 76, 0.6);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 4vw, 3.2rem);
  box-shadow: var(--shadow);
}

.feature-flag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4b3320;
  background: var(--sun);
  border-radius: 999px;
  padding: 0.35rem 0.95rem;
  margin-bottom: 1rem;
}

.feature-copy p { color: var(--ink-soft); }

.feature-cta { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.4rem; }

.feature-art {
  background: var(--paper);
  border-radius: var(--radius-sm);
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.feature-art svg { width: 100%; height: auto; }

/* Programs grid */

.programs { background: var(--sand); }

.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.4rem;
}

.program-card {
  background: var(--paper);
  border-radius: var(--radius-sm);
  padding: 1.7rem 1.5rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease;
}

a.program-card:hover { transform: translateY(-5px); }

.program-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}

.pi-copper { background: rgba(184, 115, 51, 0.14); color: var(--copper); }
.pi-green { background: rgba(95, 122, 94, 0.14); color: var(--sage-deep); }
.pi-sun { background: rgba(233, 180, 76, 0.2); color: #8a6314; }
.pi-terra { background: rgba(193, 96, 60, 0.13); color: var(--terracotta-deep); }

.program-card h3 { margin-bottom: 0.4rem; }
.program-card p { font-size: 0.94rem; color: var(--ink-soft); flex-grow: 1; margin-bottom: 1.1rem; }

.status {
  align-self: flex-start;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.28rem 0.75rem;
  border-radius: 999px;
}

.status-live { background: rgba(95, 122, 94, 0.15); color: var(--sage-deep); }
.status-flagship { background: var(--sun); color: #4b3320; }
.status-dev { background: rgba(184, 115, 51, 0.13); color: var(--copper); }
.status-soon { background: rgba(51, 41, 31, 0.08); color: var(--ink-soft); }

/* Trust strip */

.trust { background: linear-gradient(165deg, #50443a, #3b322a); color: #f3ead9; padding-block: clamp(2.5rem, 6vw, 4rem); }

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--sun);
  margin-bottom: 0.25rem;
}

.trust-item span { font-size: 0.92rem; color: #cfc2ac; }

/* Home donate CTA */

.home-donate {
  background:
    radial-gradient(120% 140% at 15% 0%, rgba(233, 180, 76, 0.25), transparent 55%),
    linear-gradient(160deg, #5f7a5e, #46604a);
  color: #eef3ea;
  text-align: center;
}

.home-donate h2 { color: #fdfaf2; }
.home-donate p { color: #d4dfd0; max-width: 560px; margin-inline: auto; }
.home-donate .hero-cta { margin-top: 1.8rem; }

/* ==========================================================================
   Transparency page
   ========================================================================== */

.hero-compact .wrap { padding-bottom: clamp(8rem, 16vw, 11rem); }

/* Document cards */

.documents { background: var(--paper); }

.doc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.4rem;
}

.doc-card {
  background: var(--sand);
  border-radius: var(--radius-sm);
  padding: 1.7rem 1.5rem;
  display: flex;
  flex-direction: column;
}

.doc-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  background: rgba(184, 115, 51, 0.14);
  color: var(--copper);
}

.doc-card h3 { margin-bottom: 0.3rem; }

.doc-card p { font-size: 0.93rem; color: var(--ink-soft); flex-grow: 1; margin-bottom: 1.2rem; }

.doc-card .btn { align-self: flex-start; padding: 0.6rem 1.3rem; font-size: 0.92rem; }

.doc-note {
  margin-top: 1.6rem;
  background: rgba(233, 180, 76, 0.14);
  border-left: 4px solid var(--sun);
  border-radius: 0 12px 12px 0;
  padding: 1rem 1.3rem;
  font-size: 0.93rem;
  color: var(--ink-soft);
}

/* Donation breakdown */

.breakdown { background: var(--sand); }

.breakdown-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 4vw, 2.6rem);
  box-shadow: var(--shadow);
  max-width: 720px;
  margin-inline: auto;
}

.breakdown-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.95rem 0;
}

.breakdown-row + .breakdown-row { border-top: 1px dashed var(--sand-deep); }

.breakdown-emoji { font-size: 1.5rem; flex-shrink: 0; }

.breakdown-row h3 { font-size: 1.02rem; margin: 0; }
.breakdown-row p { font-size: 0.9rem; color: var(--ink-soft); margin: 0; }

/* Program status board */

.statusboard { background: var(--paper); }

.statusboard-list {
  display: grid;
  gap: 0.8rem;
  max-width: 760px;
  margin-inline: auto;
}

.statusboard-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  background: var(--sand);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.5rem;
}

.statusboard-row h3 { margin: 0; font-size: 1.05rem; }
.statusboard-row p { margin: 0; font-size: 0.88rem; color: var(--ink-soft); flex-basis: 100%; }
.statusboard-row .status { align-self: center; }

/* Verify independently */

.verify { background: linear-gradient(165deg, #50443a, #3b322a); color: #f3ead9; }
.verify h2 { color: #fdf6e8; }
.verify .kicker { background: rgba(233, 180, 76, 0.18); color: var(--sun); }
.verify .section-head p { color: #cfc2ac; }

.verify-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
}

.verify-card {
  display: block;
  text-decoration: none;
  background: rgba(255, 253, 248, 0.06);
  border: 1px solid rgba(255, 253, 248, 0.12);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  color: #f3ead9;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.verify-card:hover { transform: translateY(-4px); border-color: rgba(233, 180, 76, 0.5); }

.verify-card h3 { color: #fdf6e8; font-size: 1.05rem; margin-bottom: 0.35rem; }
.verify-card p { color: #cfc2ac; font-size: 0.9rem; margin: 0; }

.verify-card .verify-go {
  display: inline-block;
  margin-top: 0.9rem;
  font-family: var(--font-display);
  font-weight: 650;
  font-size: 0.88rem;
  color: var(--sun);
}

/* ==========================================================================
   About / Donate / Privacy / Branding pages
   ========================================================================== */

/* Prose pages (privacy) */

.prose-section { background: var(--paper); }

.prose {
  max-width: 720px;
  margin-inline: auto;
}

.prose h2 { font-size: 1.45rem; margin-top: 2.2rem; }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { color: var(--ink-soft); }
.prose ul { padding-left: 1.3rem; }
.prose .policy-meta { font-size: 0.88rem; color: var(--ink-soft); font-style: italic; }

/* Pillars (about) */

.pillars { background: var(--sand); }

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.4rem;
}

/* Donate page */

.give { background: var(--paper); }
.give + .give { padding-top: 0; }

.give-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-top: 1.6rem;
}

.ways { background: var(--sand); }

.ways-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}

.way-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  box-shadow: var(--shadow);
}

.way-card h3 { display: flex; align-items: center; gap: 0.6rem; font-size: 1.3rem; }
.way-card p { color: var(--ink-soft); font-size: 0.97rem; }

/* Branding page */

.swatch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.4rem;
}

.swatch {
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.swatch-color { height: 96px; }

.swatch-body { padding: 0.9rem 1.1rem 1.1rem; }

.swatch-body strong { display: block; font-family: var(--font-display); font-size: 0.95rem; }

.swatch-body code {
  font-family: "JetBrains Mono", Consolas, monospace;
  font-size: 0.8rem;
  color: var(--ink-soft);
}

.type-specimen {
  background: var(--paper);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 1.6rem 1.8rem;
  margin-bottom: 1.2rem;
}

.type-specimen .spec-label {
  font-family: "JetBrains Mono", Consolas, monospace;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: block;
  margin-bottom: 0.5rem;
}

.logo-rules { background: var(--sand); }

.logo-tile {
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  padding: 2.5rem;
  margin-bottom: 1rem;
}

.logo-tile img { width: 120px; height: auto; }

/* ==========================================================================
   Blog
   ========================================================================== */

.blog-list { background: var(--paper); }

.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.4rem;
  max-width: 980px;
  margin-inline: auto;
}

.post-card {
  display: flex;
  flex-direction: column;
  background: var(--sand);
  border-radius: var(--radius-sm);
  padding: 1.7rem 1.6rem;
  text-decoration: none;
  color: inherit;
  border: 2px solid transparent;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.post-card:hover { transform: translateY(-5px); border-color: rgba(193, 96, 60, 0.35); }

.post-date {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terracotta-deep);
  margin-bottom: 0.5rem;
}

.post-card h2 { font-size: 1.3rem; margin-bottom: 0.4rem; }
.post-card p { font-size: 0.95rem; color: var(--ink-soft); flex-grow: 1; margin: 0; }

.post-card .read-more {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-weight: 650;
  font-size: 0.9rem;
  color: var(--terracotta-deep);
}

/* Single post */

.post-body { background: var(--paper); }

.post-body .prose h2 { color: var(--terracotta-deep); }
.post-body .prose img { border-radius: var(--radius-sm); }
.post-body .prose blockquote {
  margin: 1.5rem 0;
  padding: 0.4rem 1.3rem;
  border-left: 4px solid var(--sun);
  background: rgba(233, 180, 76, 0.1);
  border-radius: 0 12px 12px 0;
  font-style: italic;
}
.post-body .prose pre {
  background: #2c241d;
  color: #f3ead9;
  padding: 1rem 1.2rem;
  border-radius: 12px;
  overflow-x: auto;
  font-size: 0.9rem;
}
.post-body .prose code { font-family: "JetBrains Mono", Consolas, monospace; font-size: 0.92em; }

.post-footer-cta {
  max-width: 720px;
  margin: 3rem auto 0;
  background: linear-gradient(150deg, #fdf3df, #f6e3bd);
  border: 2px solid rgba(233, 180, 76, 0.6);
  border-radius: var(--radius-sm);
  padding: 1.6rem 1.8rem;
  text-align: center;
}

.post-footer-cta p { margin-bottom: 1rem; color: var(--ink-soft); }

.back-link {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 650;
  font-size: 0.92rem;
  text-decoration: none;
  color: var(--terracotta-deep);
  margin-bottom: 1.4rem;
}

@media (max-width: 880px) {
  .feature-banner { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; gap: 1.4rem; }
  .ways-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .plant-card, .tier, .program-card { transition: none; }
}
