/* Fairchild Grants and Consulting — warm & approachable brand system */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600&family=Nunito+Sans:wght@400;500;600;700&display=swap');

:root {
  --cream: #FBF6EE;
  --cream-deep: #F3E9D9;
  --teal: #2F6B5E;
  --teal-deep: #234F46;
  --teal-soft: #E4EFEA;
  --terracotta: #D98E5F;
  --terracotta-deep: #C4763F;
  --ink: #3A372F;
  --ink-soft: #6B6557;
  --white: #FFFFFF;
  --shadow: 0 10px 30px rgba(58, 55, 47, 0.10);
  --shadow-sm: 0 4px 14px rgba(58, 55, 47, 0.08);
  --radius: 18px;
  --radius-sm: 12px;
  --maxw: 1080px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito Sans', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-size: 17px;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--teal-deep);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.3rem; }

p { margin-bottom: 1rem; }
a { color: var(--terracotta-deep); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---- NAV ---- */
.nav {
  background: var(--cream);
  border-bottom: 1px solid var(--cream-deep);
  position: sticky; top: 0; z-index: 50;
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--teal); color: var(--cream);
  display: grid; place-items: center;
  font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.25rem;
  flex-shrink: 0;
}
.brand-name { font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.15rem; color: var(--teal-deep); line-height: 1.1; }
.brand-tag { font-size: 0.75rem; color: var(--ink-soft); letter-spacing: 0.04em; text-transform: uppercase; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { color: var(--ink); font-weight: 600; font-size: 0.97rem; }
.nav-links a:hover { color: var(--teal); text-decoration: none; }
.nav-links a.active { color: var(--teal); border-bottom: 2px solid var(--terracotta); padding-bottom: 2px; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-block; padding: 13px 26px; border-radius: 999px;
  font-weight: 700; font-size: 0.97rem; cursor: pointer; border: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-primary { background: var(--terracotta); color: var(--white); }
.btn-primary:hover { background: var(--terracotta-deep); color: var(--white); }
.btn-ghost { background: transparent; color: var(--teal-deep); border: 2px solid var(--teal); }
.btn-ghost:hover { background: var(--teal); color: var(--cream); }
.btn-light { background: var(--cream); color: var(--teal-deep); }

/* ---- HERO ---- */
.hero {
  background: linear-gradient(170deg, var(--teal-soft) 0%, var(--cream) 70%);
  padding: 80px 0 90px;
}
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 50px; align-items: center; }
.eyebrow {
  display: inline-block; background: var(--terracotta); color: var(--white);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px; margin-bottom: 18px;
}
.hero p.lead { font-size: 1.15rem; color: var(--ink-soft); margin: 18px 0 28px; max-width: 540px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-card {
  background: var(--white); border-radius: var(--radius); padding: 32px;
  box-shadow: var(--shadow); border: 1px solid var(--cream-deep);
}
.hero-card h3 { margin-bottom: 14px; }
.portrait {
  width: 100%; max-width: 230px; aspect-ratio: 1 / 1; object-fit: cover;
  border-radius: 16px; display: block; margin: 0 auto 20px;
  border: 4px solid var(--cream); box-shadow: var(--shadow-sm);
}
.hero-card ul { list-style: none; }
.hero-card li { padding: 9px 0 9px 30px; position: relative; border-bottom: 1px dashed var(--cream-deep); }
.hero-card li:last-child { border-bottom: none; }
.hero-card li::before {
  content: "✓"; position: absolute; left: 0; top: 9px;
  color: var(--teal); font-weight: 800;
}

/* ---- SECTIONS ---- */
section { padding: 70px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-head .eyebrow { background: var(--teal-soft); color: var(--teal-deep); }
.section-head p { color: var(--ink-soft); font-size: 1.08rem; }
.alt-bg { background: var(--cream-deep); }
.teal-bg { background: var(--teal-deep); }
.teal-bg h2, .teal-bg h3 { color: var(--cream); }
.teal-bg p { color: #D8E5E0; }

/* ---- CARDS ---- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 26px; }
.card {
  background: var(--white); border-radius: var(--radius); padding: 30px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--cream-deep);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-icon {
  width: 52px; height: 52px; border-radius: 14px; background: var(--teal-soft);
  display: grid; place-items: center; font-size: 1.5rem; margin-bottom: 16px;
}
.card h3 { margin-bottom: 10px; }
.card p { color: var(--ink-soft); font-size: 0.98rem; margin-bottom: 0; }

/* ---- STEPS ---- */
.steps { display: grid; gap: 22px; max-width: 760px; margin: 0 auto; }
.step {
  background: var(--white); border-radius: var(--radius); padding: 26px 30px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--cream-deep);
  display: flex; gap: 22px; align-items: flex-start;
}
.step-num {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%;
  background: var(--terracotta); color: var(--white);
  display: grid; place-items: center; font-family: 'Fraunces', serif;
  font-weight: 600; font-size: 1.3rem;
}
.step h3 { margin-bottom: 6px; }
.step p { margin-bottom: 0; color: var(--ink-soft); font-size: 0.98rem; }

/* ---- FEATURE ROWS ---- */
.feature-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center;
  margin-bottom: 56px;
}
.feature-row:last-child { margin-bottom: 0; }
.feature-row.flip .feature-text { order: 2; }
.feature-visual {
  background: var(--teal-soft); border-radius: var(--radius); padding: 40px;
  min-height: 240px; display: grid; place-items: center; text-align: center;
}
.feature-visual .big-emoji { font-size: 4rem; }
.feature-text ul { margin: 14px 0 0 20px; }
.feature-text li { margin-bottom: 8px; color: var(--ink-soft); }

/* ---- CTA BANNER ---- */
.cta-banner { text-align: center; }
.cta-banner h2 { color: var(--cream); margin-bottom: 14px; }
.cta-banner p { color: #D8E5E0; max-width: 520px; margin: 0 auto 26px; }
.cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---- CONTACT ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
.contact-card {
  background: var(--white); border-radius: var(--radius); padding: 34px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--cream-deep);
}
.contact-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 22px; }
.contact-item:last-child { margin-bottom: 0; }
.contact-ico {
  width: 46px; height: 46px; border-radius: 12px; background: var(--teal-soft);
  display: grid; place-items: center; font-size: 1.3rem; flex-shrink: 0;
}
.contact-item .label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--ink-soft); }
.contact-item .value { font-weight: 700; color: var(--teal-deep); font-size: 1.05rem; }

/* ---- FOOTER ---- */
.footer { background: var(--teal-deep); color: #C9DAD4; padding: 46px 0 30px; }
.footer-grid { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; margin-bottom: 28px; }
.footer h4 { color: var(--cream); margin-bottom: 12px; font-size: 1rem; }
.footer a { color: #C9DAD4; display: block; margin-bottom: 6px; font-size: 0.95rem; }
.footer a:hover { color: var(--terracotta); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 20px; font-size: 0.85rem; color: #9FB5AE; text-align: center; }

/* ---- MISC ---- */
.center { text-align: center; }
.mt-32 { margin-top: 32px; }
.pill-list { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
.pill { background: var(--cream); border: 1px solid var(--cream-deep); padding: 7px 16px; border-radius: 999px; font-size: 0.9rem; font-weight: 600; color: var(--teal-deep); }

@media (max-width: 820px) {
  .hero-grid, .feature-row, .feature-row.flip .feature-text, .contact-grid { grid-template-columns: 1fr; }
  .feature-row.flip .feature-text { order: 0; }
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 0.88rem; }
  .brand-tag { display: none; }
  section { padding: 50px 0; }
}

/* ===== CONVERSION COMPONENTS ===== */

/* Stats band */
.stats-band { background: var(--teal-deep); padding: 44px 0; }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat .num { font-family: 'Fraunces', serif; font-size: 2.5rem; font-weight: 600; color: var(--terracotta); line-height: 1; }
.stat .lbl { color: #D8E5E0; font-size: 0.92rem; margin-top: 8px; }

/* Credibility strip */
.cred-strip { display: flex; align-items: center; gap: 24px; background: var(--white);
  border: 1px solid var(--cream-deep); border-radius: var(--radius); padding: 24px 28px; box-shadow: var(--shadow-sm); }
.cred-strip img { width: 84px; height: 84px; border-radius: 50%; object-fit: cover; flex-shrink: 0;
  border: 3px solid var(--teal-soft); }
.cred-strip .cred-text { font-size: 1rem; color: var(--ink-soft); }
.cred-strip .cred-text strong { color: var(--teal-deep); font-family: 'Fraunces', serif; }

/* "Fit check" — you might need us if */
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 36px; max-width: 860px; margin: 0 auto; }
.fit-item { display: flex; gap: 14px; align-items: flex-start; }
.fit-item .check { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  background: var(--teal-soft); color: var(--teal-deep); display: grid; place-items: center; font-weight: 800; }
.fit-item p { margin: 0; color: var(--ink-soft); font-size: 0.98rem; }

/* Testimonials */
.quote-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.quote-card { background: var(--white); border: 1px solid var(--cream-deep); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.quote-card .mark { font-family: 'Fraunces', serif; font-size: 3rem; color: var(--terracotta); line-height: 0.6; height: 28px; }
.quote-card blockquote { margin: 0 0 18px; font-size: 1rem; color: var(--ink); line-height: 1.6; flex: 1; }
.quote-card .who { font-weight: 700; color: var(--teal-deep); font-size: 0.95rem; }
.quote-card .who span { display: block; font-weight: 400; color: var(--ink-soft); font-size: 0.86rem; }
.placeholder-note { text-align: center; font-size: 0.9rem; color: var(--ink-soft); font-style: italic; margin-top: 22px; }

/* Lead magnet CTA */
.lead-magnet { background: var(--cream-deep); border-radius: var(--radius); padding: 40px;
  display: flex; align-items: center; gap: 32px; }
.lead-magnet .lm-icon { width: 84px; height: 84px; border-radius: 18px; background: var(--teal);
  display: grid; place-items: center; flex-shrink: 0; }
.lead-magnet .lm-icon svg { width: 40px; height: 40px; stroke: var(--cream); }
.lead-magnet h3 { margin-bottom: 6px; }
.lead-magnet p { margin-bottom: 14px; color: var(--ink-soft); font-size: 0.97rem; }

/* FAQ accordion */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { background: var(--white); border: 1px solid var(--cream-deep); border-radius: var(--radius-sm);
  margin-bottom: 14px; overflow: hidden; }
.faq-item summary { padding: 20px 26px; font-family: 'Fraunces', serif; font-size: 1.08rem;
  color: var(--teal-deep); cursor: pointer; list-style: none; display: flex; justify-content: space-between;
  align-items: center; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.5rem; color: var(--terracotta); flex-shrink: 0; }
.faq-item[open] summary::after { content: "\2013"; }
.faq-item .faq-body { padding: 0 26px 22px; color: var(--ink-soft); font-size: 0.97rem; line-height: 1.65; }

@media (max-width: 820px) {
  .stats-row { grid-template-columns: 1fr 1fr; gap: 30px; }
  .fit-grid { grid-template-columns: 1fr; }
  .cred-strip, .lead-magnet { flex-direction: column; text-align: center; }
}

/* ===== SVG ICON SIZING (replaces emoji) ===== */
.card-i