:root {
  --bg: #F7F4EF;
  --bg-alt: #F0EBE1;
  --fg: #0D1B2A;
  --fg-light: #3D4F61;
  --accent: #D97706;
  --accent-light: #FEF3C7;
  --border: #E2D9C8;
  --white: #FFFFFF;
  --shadow: 0 1px 3px rgba(13,27,42,0.08), 0 4px 16px rgba(13,27,42,0.06);
  --shadow-lg: 0 4px 24px rgba(13,27,42,0.12);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Navigation */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247,244,239,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.3px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-light);
  font-weight: 300;
}

/* Hero */
.hero {
  padding: 80px 40px 60px;
  background: var(--bg);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.hero-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.label-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  line-height: 1.12;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 24px;
  letter-spacing: -1px;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 17px;
  color: var(--fg-light);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
}
.hero-stats {
  display: flex;
  gap: 32px;
}
.hero-stat {
  border-left: 2px solid var(--accent);
  padding-left: 16px;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 12px;
  color: var(--fg-light);
  line-height: 1.4;
}

/* Dashboard mockup */
.hero-right { position: relative; }
.hero-dashboard {
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.dash-header {
  background: var(--fg);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.dash-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.dash-dot.red { background: #FF5F57; }
.dash-dot.yellow { background: #FFBD2E; }
.dash-dot.green { background: #27C93F; }
.dash-title {
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  margin-left: 8px;
}
.dash-body { padding: 16px; }
.grant-card {
  background: var(--bg);
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 10px;
  border: 1px solid var(--border);
}
.grant-match {
  border-color: var(--accent);
  background: var(--accent-light);
}
.grant-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--accent);
  color: white;
  padding: 2px 8px;
  border-radius: 20px;
  margin-bottom: 8px;
}
.grant-badge.gray {
  background: var(--fg-light);
}
.grant-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 4px;
}
.grant-detail {
  font-size: 11px;
  color: var(--fg-light);
  margin-bottom: 4px;
}
.grant-amount {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
}
.grant-deadline {
  font-size: 11px;
  color: var(--fg-light);
  margin-top: 2px;
}
.dash-footer {
  font-size: 12px;
  color: var(--fg-light);
  text-align: center;
  padding-top: 8px;
  border-top: 1px solid var(--border);
  margin-top: 4px;
}

/* Proof section */
.proof {
  background: var(--fg);
  padding: 80px 40px;
}
.proof-inner { max-width: 1200px; margin: 0 auto; }
.proof-header { margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 16px;
}
.proof h2, .services h2, .outcomes h2, .closing h2 {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  line-height: 1.2;
  color: white;
  letter-spacing: -0.5px;
}
.proof h2 em, .outcomes h2 em {
  font-style: italic;
  color: var(--accent);
}
.proof-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.proof-stat { text-align: left; }
.proof-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
}
.proof-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

/* Services */
.services {
  padding: 80px 40px;
  background: var(--bg);
}
.services-inner { max-width: 1200px; margin: 0 auto; }
.services-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}
.services-header h2 {
  color: var(--fg);
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  margin-bottom: 16px;
}
.services-header p {
  font-size: 17px;
  color: var(--fg-light);
  line-height: 1.7;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--accent), var(--shadow-lg);
}
.service-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}
.service-icon { margin-bottom: 20px; }
.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 14px;
  color: var(--fg-light);
  line-height: 1.6;
  margin-bottom: 24px;
}
.service-price {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
}

/* Outcomes */
.outcomes {
  padding: 80px 40px;
  background: var(--bg-alt);
}
.outcomes-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.outcomes h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: var(--fg);
  margin-bottom: 20px;
}
.outcomes-right h2 em {
  font-style: italic;
  color: var(--accent);
}
.outcomes-left > p {
  font-size: 16px;
  color: var(--fg-light);
  line-height: 1.7;
  margin-bottom: 32px;
}
.outcome-list { display: flex; flex-direction: column; gap: 20px; }
.outcome-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: var(--fg);
  line-height: 1.6;
}
.outcome-check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.outcome-quote {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
}
.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  color: var(--accent);
  line-height: 0.5;
  margin-bottom: 20px;
  opacity: 0.4;
}
blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  line-height: 1.6;
  color: var(--fg);
  font-style: italic;
  margin-bottom: 20px;
}
.quote-attr {
  font-size: 13px;
  color: var(--fg-light);
}
.outcome-numbers { background: var(--fg); border-radius: 16px; padding: 32px; }
.on {
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
}
.ol {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

/* Closing */
.closing {
  padding: 100px 40px;
  background: var(--fg);
  text-align: center;
}
.closing-inner { max-width: 800px; margin: 0 auto; }
.closing h2 {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  color: white;
  line-height: 1.2;
  margin-bottom: 24px;
}
.closing h2 em { font-style: italic; color: var(--accent); }
.closing p {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 32px;
}
.closing-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
}
.dot-sep { color: var(--accent); }

/* Footer */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 60px 40px 32px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
}
.footer-brand p {
  font-size: 14px;
  color: var(--fg-light);
  line-height: 1.6;
}
.footer-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col strong {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-light);
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 14px;
  color: var(--fg);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  max-width: 1200px;
  margin: 24px auto 0;
  font-size: 13px;
  color: var(--fg-light);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { display: none; }
  .proof-stats { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .outcomes-inner { grid-template-columns: 1fr; }
  .closing h2, .proof h2, .services-header h2 { font-size: 32px; }
}
@media (max-width: 768px) {
  .hero { padding: 60px 24px 40px; }
  .hero-headline { font-size: 38px; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .proof { padding: 60px 24px; }
  .proof-stats { grid-template-columns: 1fr 1fr; gap: 24px; }
  .proof-num { font-size: 36px; }
  .services { padding: 60px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .outcomes { padding: 60px 24px; }
  .closing { padding: 80px 24px; }
  .closing h2 { font-size: 28px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-services { grid-template-columns: 1fr; }
  .nav { padding: 0 24px; }
  .nav-tagline { display: none; }
}