/* Shared Legacy Nonprofit Bridge styles */
:root {
  --forest: #1f3d2f;
  --forest-mid: #2a5240;
  --gold: #c9a84c;
  --gold-light: #e4c76b;
  --cream: #f8f6f0;
  --ink: #1a241f;
  --muted: #5f6f66;
  --white: #ffffff;
  --line: #e7e2d7;
  --danger: #9f2f2f;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--ink); background: var(--white); line-height: 1.6; }
nav { position: sticky; top: 0; z-index: 100; background: var(--forest); box-shadow: 0 2px 20px rgba(0,0,0,.2); }
.nav-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; min-height: 88px; gap: 16px; flex-wrap: wrap; }
.logo { text-decoration: none; color: var(--white); display: inline-flex; align-items: center; flex-shrink: 0; }
.logo-image {
  display: block;
  height: 76px;
  width: auto;
  background: var(--white);
  border-radius: 10px;
  padding: 4px 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}
.logo img:not(.logo-image) { width: 44px; height: 44px; flex-shrink: 0; }
.logo-title { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 600; line-height: 1.2; }
.logo-sub { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,.55); }
.nav-links { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.nav-link { color: rgba(255,255,255,.78); text-decoration: none; font-size: 0.88rem; font-weight: 500; }
.nav-link:hover { color: var(--gold-light); }
.nav-back { color: rgba(255,255,255,.78); text-decoration: none; font-size: 0.88rem; font-weight: 600; }
.nav-back:hover { color: var(--gold-light); }
.nav-cta { padding: 0.65rem 1.1rem; background: var(--gold); color: var(--forest); border-radius: 999px; font-size: 0.88rem; font-weight: 700; text-decoration: none; }
.hero { background: linear-gradient(135deg, var(--forest) 0%, var(--forest-mid) 100%); color: var(--white); padding: 5rem 1.5rem 4rem; }
.hero-inner { max-width: 820px; margin: 0 auto; text-align: center; }
.eyebrow { color: var(--gold-light); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 1rem; }
h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 5vw, 3.4rem); line-height: 1.12; margin-bottom: 1rem; font-weight: 600; }
.hero p { color: rgba(255,255,255,.82); font-size: 1.08rem; max-width: 680px; margin: 0 auto 1.75rem; }
.hero-actions { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 0.85rem 1.25rem; border-radius: 999px; font-weight: 700; text-decoration: none; font-size: 0.92rem; border: 0; cursor: pointer; font-family: inherit; }
.btn-primary { background: var(--gold); color: var(--forest); }
.btn-secondary { border: 1px solid rgba(255,255,255,.35); color: var(--white); background: transparent; }
.section { padding: 4rem 1.5rem; }
.section.cream { background: var(--cream); }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 0.75rem; color: var(--forest); }
.section-sub { color: var(--muted); max-width: 720px; margin-bottom: 2rem; }
.grid { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.card { background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 1.25rem; }
.card h3 { font-size: 1rem; margin-bottom: 0.5rem; color: var(--forest); }
.card p { color: var(--muted); font-size: 0.92rem; }
.chip-list { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.75rem; }
.chip { background: #ebe6da; border-radius: 999px; color: var(--forest); font-size: 0.78rem; font-weight: 700; padding: 0.35rem 0.7rem; }
.intake-banner { background: linear-gradient(135deg, #ebe6da 0%, #f8f6f0 100%); border: 1px solid #d9cdb0; border-radius: 18px; padding: 1.5rem; display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between; }
.demo-note { background: #fff; border-left: 4px solid var(--gold); border-radius: 12px; padding: 1rem 1.1rem; color: var(--muted); font-size: 0.92rem; margin-bottom: 1.5rem; }
footer { background: var(--forest); color: rgba(255,255,255,.7); padding: 2rem 1.5rem; text-align: center; font-size: 0.85rem; }
footer a { color: var(--gold-light); }
footer .footer-admin { position: fixed; bottom: 16px; left: 16px; z-index: 50; font-size: 0.78rem; }
table.pricing { width: 100%; border-collapse: collapse; background: var(--white); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
table.pricing th, table.pricing td { padding: 0.9rem 1rem; text-align: left; border-bottom: 1px solid var(--line); font-size: 0.92rem; }
table.pricing th { background: var(--forest); color: var(--white); font-weight: 600; }
table.pricing tr:last-child td { border-bottom: 0; }
.price { font-weight: 800; color: var(--forest); }
@media (max-width: 640px) {
  table.pricing thead { display: none; }
  table.pricing tr { display: block; margin-bottom: 1rem; border: 1px solid var(--line); border-radius: 12px; }
  table.pricing td { display: block; border: 0; padding: 0.5rem 1rem; }
  table.pricing td::before { content: attr(data-label); font-weight: 700; display: block; font-size: 0.72rem; text-transform: uppercase; color: var(--muted); }
}
