/* First Blessings — marketing site. Shared brand styles. */

:root {
  --navy:        #192240;
  --navy-deep:   #0d1628;
  --navy-soft:   #243060;
  --gold:        #9E6D1A;
  --gold-light:  #E4BC5F;
  --cream:       #FDFAF2;
  --parchment:   #F3EDD8;
  --text:        #192240;
  --text-soft:   #5b6280;
  --text-faint:  #8a8fa3;
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Lato", -apple-system, system-ui, sans-serif;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3 { font-family: "Fraunces", Georgia, serif; font-weight: 700; letter-spacing: -0.5px; margin: 0; }
a { color: var(--gold); }
a:hover { color: var(--gold-light); }

/* ── Page chrome ───────────────────────────────────────────────────────── */
.nav {
  background: var(--navy);
  color: var(--cream);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(228, 188, 95, 0.18);
}
.nav-brand {
  display: flex; align-items: center; gap: 12px;
  color: var(--gold-light);
  text-decoration: none;
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.3px;
}
.nav-brand img { width: 36px; height: 36px; border-radius: 10px; }
.nav-links { display: flex; gap: 22px; }
.nav-links a {
  color: rgba(253, 250, 242, 0.78);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--gold-light); }

.footer {
  background: var(--navy);
  color: rgba(253, 250, 242, 0.55);
  padding: 36px 24px;
  text-align: center;
  font-size: 13px;
  border-top: 1px solid rgba(228, 188, 95, 0.12);
}
.footer a { color: var(--gold-light); margin: 0 12px; text-decoration: none; font-weight: 700; }
.footer-tagline { color: var(--gold-light); font-family: "Fraunces", serif; font-style: italic; font-size: 15px; margin-bottom: 10px; }
.footer-bottom { margin-top: 14px; opacity: 0.5; font-size: 11px; letter-spacing: 0.5px; }

/* ── Hero ──────────────────────────────────────────────────────────────── */
.hero {
  background: radial-gradient(at 50% 30%, var(--navy-soft), var(--navy) 55%, var(--navy-deep));
  color: var(--cream);
  padding: 72px 24px 88px;
  text-align: center;
}
.hero-icon {
  width: 156px;
  height: 156px;
  border-radius: 36px;
  margin: 0 auto 24px;
  overflow: hidden;
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.45), 0 0 0 6px rgba(228, 188, 95, 0.14);
  background: #fff;
}
.hero-ornament { color: var(--gold-light); letter-spacing: 8px; opacity: 0.6; font-size: 16px; margin-bottom: 10px; }
.hero h1 { color: var(--gold-light); font-size: 52px; line-height: 1.05; margin-bottom: 16px; }
.hero-sub {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 19px;
  line-height: 1.55;
  color: rgba(253, 250, 242, 0.82);
  max-width: 540px;
  margin: 0 auto 30px;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #1a0d00;
  padding: 16px 30px;
  border-radius: 22px;
  font-family: "Fraunces", serif;
  font-weight: 900;
  font-size: 16px;
  text-decoration: none;
  letter-spacing: 0.3px;
  box-shadow: 0 12px 36px rgba(158, 109, 26, 0.55);
  transition: transform 0.15s, box-shadow 0.15s;
}
.hero-cta:hover { transform: translateY(-1px); box-shadow: 0 14px 42px rgba(158, 109, 26, 0.65); color: #1a0d00; }
.hero-cta-note { display: block; color: rgba(253, 250, 242, 0.45); font-size: 12px; margin-top: 14px; letter-spacing: 0.4px; }

/* ── Sections ──────────────────────────────────────────────────────────── */
.section { padding: 72px 24px; max-width: 1080px; margin: 0 auto; }
.section-tight { padding: 56px 24px; }

.section-eyebrow {
  text-align: center;
  font-size: 11px;
  letter-spacing: 3.5px;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 12px;
}
.section-heading {
  text-align: center;
  font-size: 36px;
  line-height: 1.15;
  margin-bottom: 22px;
  color: var(--text);
}
.section-lead {
  text-align: center;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-soft);
  max-width: 580px;
  margin: 0 auto 48px;
}

/* ── Features grid ─────────────────────────────────────────────────────── */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 14px;
}
.feature {
  background: white;
  border-radius: 22px;
  padding: 28px 24px;
  border: 1px solid rgba(158, 109, 26, 0.14);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  text-align: center;
}
.feature-icon {
  width: 86px; height: 86px; border-radius: 22px;
  background: #fff;
  margin: 0 auto 16px;
  overflow: hidden;
  box-shadow: 0 6px 22px rgba(158, 109, 26, 0.25);
}
.feature h3 { color: var(--text); font-size: 21px; margin-bottom: 10px; }
.feature p { color: var(--text-soft); font-size: 14.5px; line-height: 1.6; margin: 0; }

/* ── Promise band ──────────────────────────────────────────────────────── */
.promise {
  background: linear-gradient(150deg, var(--navy), var(--navy-deep));
  color: var(--cream);
  padding: 72px 24px;
  text-align: center;
}
.promise h2 { color: var(--gold-light); font-size: 32px; margin-bottom: 30px; line-height: 1.2; }
.promise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  max-width: 820px;
  margin: 0 auto;
}
.promise-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(228, 188, 95, 0.18);
  border-radius: 18px;
  padding: 22px 16px;
}
.promise-item-num {
  font-family: "Fraunces", serif;
  font-size: 32px;
  color: var(--gold-light);
  font-weight: 700;
  margin-bottom: 6px;
}
.promise-item-label {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(253, 250, 242, 0.65);
}

/* ── Article (privacy + support) ───────────────────────────────────────── */
.article {
  max-width: 720px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}
.article h1 {
  font-size: 40px;
  color: var(--text);
  margin-bottom: 8px;
}
.article-meta {
  color: var(--text-faint);
  font-size: 13px;
  margin-bottom: 30px;
  letter-spacing: 0.4px;
}
.article-intro {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-soft);
  border-left: 3px solid var(--gold);
  padding: 4px 0 4px 18px;
  margin-bottom: 32px;
}
.article h2 {
  font-size: 24px;
  color: var(--text);
  margin: 38px 0 12px;
}
.article p { color: var(--text-soft); font-size: 16px; line-height: 1.75; margin: 0 0 14px; }
.article ul { color: var(--text-soft); font-size: 16px; line-height: 1.85; padding-left: 22px; margin: 0 0 14px; }
.article li { margin-bottom: 5px; }
.article strong { color: var(--text); font-weight: 700; }
.article a { color: var(--gold); font-weight: 700; }

.callout {
  background: var(--parchment);
  border-left: 3px solid var(--gold);
  border-radius: 14px;
  padding: 18px 22px;
  margin: 24px 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
}

/* ── Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 640px) {
  .hero { padding: 56px 20px 64px; }
  .hero h1 { font-size: 40px; }
  .hero-sub { font-size: 16.5px; }
  .hero-icon { width: 124px; height: 124px; border-radius: 28px; }
  .nav { padding: 12px 18px; }
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 13px; }
  .section { padding: 56px 20px; }
  .section-heading { font-size: 28px; }
  .promise h2 { font-size: 26px; }
  .article { padding: 40px 20px 64px; }
  .article h1 { font-size: 32px; }
  .article h2 { font-size: 20px; }
}
