@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --ink: #0e1a2b;
  --ink-mid: #3a4a5c;
  --ink-light: #7a8a9a;
  --cream: #faf8f4;
  --paper: #f4f0e8;
  --white: #ffffff;
  --teal: #1a7a6e;
  --teal-dark: #0f5249;
  --teal-light: #e8f5f3;
  --teal-mid: #c0e8e3;
  --gold: #b8841a;
  --gold-light: #fdf4e3;
  --gold-mid: #f0d090;
  --red-soft: #c0392b;
  --red-light: #fdf0ee;
  --border: rgba(14,26,43,0.12);
  --border-mid: rgba(14,26,43,0.22);
  --shadow: 0 2px 24px rgba(14,26,43,0.08);
  --shadow-hover: 0 8px 40px rgba(14,26,43,0.14);
  --radius: 12px;
  --radius-sm: 8px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250,248,244,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 22px;
  color: var(--teal-dark);
  text-decoration: none;
  letter-spacing: -0.3px;
}
.nav-brand span { color: var(--gold); }
.nav-links { display: flex; gap: 8px; align-items: center; }
.nav-link {
  font-size: 14px; font-weight: 500; color: var(--ink-mid);
  text-decoration: none; padding: 8px 14px;
  border-radius: var(--radius-sm); border: none; background: none; cursor: pointer;
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover { color: var(--teal); background: var(--teal-light); }
.nav-cta {
  font-size: 14px; font-weight: 600; color: var(--white);
  background: var(--teal); border: none; padding: 10px 20px;
  border-radius: var(--radius-sm); cursor: pointer;
  transition: background 0.2s, transform 0.15s; text-decoration: none;
  display: inline-block;
}
.nav-cta:hover { background: var(--teal-dark); transform: translateY(-1px); }

/* ── PAGE WRAPPER ── */
.page-wrap { padding-top: 64px; min-height: 100vh; }

/* ── SECTIONS ── */
.section { padding: 100px 40px; max-width: 1100px; margin: 0 auto; }
.section-sm { padding: 60px 40px; max-width: 1100px; margin: 0 auto; }
.eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--teal); margin-bottom: 16px;
}

h1 { font-family: 'DM Serif Display', Georgia, serif; font-size: clamp(38px,6vw,64px); line-height: 1.1; letter-spacing: -1px; font-weight: 400; }
h2 { font-family: 'DM Serif Display', Georgia, serif; font-size: clamp(28px,4vw,44px); line-height: 1.15; letter-spacing: -0.5px; font-weight: 400; }
h3 { font-family: 'DM Serif Display', Georgia, serif; font-size: 22px; line-height: 1.25; font-weight: 400; }
h4 { font-size: 15px; font-weight: 600; color: var(--ink); }
p { color: var(--ink-mid); font-size: 17px; line-height: 1.7; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--teal); color: var(--white);
  font-family: 'DM Sans', sans-serif; font-size: 16px; font-weight: 600;
  padding: 16px 32px; border-radius: var(--radius-sm); border: none;
  cursor: pointer; text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(15,82,73,0.25); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--teal);
  font-family: 'DM Sans', sans-serif; font-size: 16px; font-weight: 600;
  padding: 15px 28px; border-radius: var(--radius-sm); border: 1.5px solid var(--teal);
  cursor: pointer; text-decoration: none; transition: all 0.2s;
}
.btn-secondary:hover { background: var(--teal); color: var(--white); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 6px;
  background: none; border: none; color: var(--teal);
  font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 600;
  cursor: pointer; padding: 0; text-decoration: underline; text-underline-offset: 3px;
}

/* ── PROOF BAR ── */
.proof-bar {
  background: var(--teal-dark); padding: 20px 40px;
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap;
}
.proof-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.85); font-size: 14px; font-weight: 500; }

/* ── CARDS ── */
.step-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px 32px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.step-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.step-number {
  width: 48px; height: 48px; background: var(--teal); color: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: 'DM Serif Display', serif; font-size: 20px; margin-bottom: 24px;
}
.deliverable {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 20px 24px;
  display: flex; gap: 14px; align-items: flex-start; transition: border-color 0.2s;
}
.deliverable:hover { border-color: var(--teal); }
.del-icon {
  width: 36px; height: 36px; background: var(--teal-light);
  border-radius: var(--radius-sm); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; font-size: 16px;
}
.del-title { font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 2px; }
.del-desc { font-size: 13px; color: var(--ink-light); line-height: 1.5; }

/* ── TESTIMONIALS ── */
.testimonial {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px; transition: box-shadow 0.2s;
}
.testimonial:hover { box-shadow: var(--shadow); }
.stars { color: var(--gold); font-size: 14px; margin-bottom: 14px; }
.testimonial blockquote {
  font-family: 'DM Serif Display', serif; font-size: 16px; line-height: 1.55;
  color: var(--ink); margin-bottom: 20px; font-style: italic;
}
.author-avatar {
  width: 36px; height: 36px; border-radius: 50%; background: var(--teal-light);
  color: var(--teal-dark); font-size: 13px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.author-name { font-size: 14px; font-weight: 600; color: var(--ink); }
.author-title { font-size: 12px; color: var(--ink-light); }

/* ── GIVING RIBBON ── */
.giving-ribbon {
  background: var(--teal); padding: 24px 40px;
  display: flex; align-items: center; justify-content: center; gap: 12px; text-align: center;
}
.giving-ribbon p { color: rgba(255,255,255,0.9); font-size: 15px; margin: 0; }
.giving-ribbon strong { color: var(--white); }
.giving-ribbon a { color: rgba(255,255,255,0.8); text-decoration: underline; }

/* ── FOOTER ── */
footer { background: var(--ink); padding: 60px 40px 32px; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 48px; }
.footer-brand-name { font-family: 'DM Serif Display', serif; font-size: 24px; color: var(--white); margin-bottom: 12px; text-decoration: none; display: block; }
.footer-brand-name span { color: #5ecfbf; }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.6; max-width: 260px; }
.footer-col-title { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; }
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.35); }
.footer-giving-note { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-giving-note span { color: #5ecfbf; }

/* ── UTILITIES ── */
.centered { text-align: center; }
.centered .section-subtitle { margin-left: auto; margin-right: auto; }
.section-subtitle { font-size: 18px; color: var(--ink-mid); max-width: 540px; margin-top: 12px; }
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; margin-top: 64px; }
.deliverables-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-top: 56px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 60px; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
.animate-in { animation: fadeUp 0.6s ease forwards; opacity: 0; }
.delay-1 { animation-delay: 0.1s; } .delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; } .delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; } .delay-6 { animation-delay: 0.6s; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .steps-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .deliverables-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  nav { padding: 0 20px; }
  .section, .section-sm { padding: 60px 24px; }
  .nav-links .nav-link { display: none; }
}
