:root {
  --bg: #F9F6F0;
  --fg: #1C1B18;
  --accent: #3A7D6B;
  --accent-light: #4E9B87;
  --accent-warm: #C47D3B;
  --muted: #6B6860;
  --surface: #EDEAE3;
  --border: #D8D3C8;
}

*, *::before, *::after { 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;
}

h1, h2, h3, h4 {
  font-family: 'DM Serif Display', Georgia, serif;
  line-height: 1.2;
}

/* Navigation */
.site-nav {
  padding: 24px 48px;
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.nav-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-family: 'DM Serif Display', serif; font-size: 20px; color: var(--fg); text-decoration: none; letter-spacing: -0.02em; }
.nav-links { display: flex; gap: 32px; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--fg); }
.nav-cta { background: var(--accent) !important; color: white !important; padding: 8px 18px !important; border-radius: 8px !important; }
.nav-cta:hover { background: var(--accent-light) !important; color: white !important; }

/* Hero */
.hero { padding: 80px 48px 64px; }
.hero-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 340px; gap: 64px; align-items: center; }
.hero-kicker { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent); margin-bottom: 20px; }
.hero-headline { font-size: clamp(32px, 4vw, 52px); color: var(--fg); margin-bottom: 24px; font-weight: 400; }
.hero-lede { font-size: 18px; color: var(--muted); line-height: 1.7; max-width: 520px; margin-bottom: 32px; }

/* Hero CTA */
.hero-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.btn-hero-primary { background: var(--accent); color: white; padding: 14px 28px; border-radius: 10px; font-size: 16px; font-weight: 600; text-decoration: none; display: inline-block; transition: background 0.2s, transform 0.15s; white-space: nowrap; }
.btn-hero-primary:hover { background: var(--accent-light); transform: translateY(-2px); }
.hero-time { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--muted); }

/* Hero score preview card */
.hero-visual { display: flex; align-items: center; justify-content: center; }
.hero-score-card { background: white; border: 1px solid var(--border); border-radius: 16px; padding: 24px; width: 100%; max-width: 300px; box-shadow: 0 8px 40px rgba(28,27,24,0.08); }
.hsc-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.hsc-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }
.hsc-badge { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; background: var(--surface); color: var(--muted); padding: 2px 8px; border-radius: 100px; }
.hsc-overall { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.hsc-ring-wrap { position: relative; flex-shrink: 0; }
.hsc-score-center { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); text-align: center; line-height: 1; }
.hsc-score-num { font-family: 'DM Serif Display', serif; font-size: 22px; color: var(--accent); }
.hsc-score-sub { font-size: 10px; color: var(--muted); display: block; }
.hsc-grade { font-size: 14px; font-family: 'DM Serif Display', serif; color: var(--fg); margin-bottom: 4px; }
.hsc-church-name { font-size: 12px; color: var(--muted); }
.hsc-dims { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.hsc-dim { display: flex; align-items: center; gap: 8px; }
.hsc-dim-name { font-size: 11px; color: var(--muted); width: 80px; flex-shrink: 0; }
.hsc-bar-track { flex: 1; height: 5px; background: var(--surface); border-radius: 3px; overflow: hidden; }
.hsc-bar-fill { height: 100%; border-radius: 3px; }
.hsc-dim-score { font-size: 11px; font-weight: 600; width: 24px; text-align: right; flex-shrink: 0; }
.hsc-rec { background: var(--surface); border-radius: 8px; padding: 12px; font-size: 12px; color: var(--muted); line-height: 1.5; }
.hsc-rec-chip { display: inline-block; background: #FEF3E8; color: var(--accent-warm); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 2px 7px; border-radius: 100px; margin-bottom: 6px; }

.hero-bottom-bar { max-width: 1100px; margin: 48px auto 0; padding-top: 32px; border-top: 1px solid var(--border); display: flex; align-items: baseline; gap: 16px; }
.bar-stat { font-family: 'DM Serif Display', serif; font-size: 28px; color: var(--accent); }
.bar-label { font-size: 14px; color: var(--muted); }

/* Manifesto */
.manifesto { padding: 96px 48px; background: var(--fg); color: white; }
.manifesto-inner { max-width: 800px; margin: 0 auto; }
.manifesto-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em; color: var(--accent-warm); margin-bottom: 32px; }
.manifesto-headline { font-size: clamp(28px, 3.5vw, 44px); font-style: italic; font-weight: 400; margin-bottom: 40px; line-height: 1.25; }
.manifesto-body p { font-size: 17px; color: rgba(255,255,255,0.72); line-height: 1.75; margin-bottom: 24px; }
.manifesto-body p:last-child { margin-bottom: 0; }

/* Services */
.services { padding: 96px 48px; }
.services-inner { max-width: 1100px; margin: 0 auto; }
.services-header { margin-bottom: 56px; }
.services-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em; color: var(--accent); margin-bottom: 16px; }
.services-headline { font-size: clamp(28px, 3vw, 40px); font-weight: 400; }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.service-card { background: white; border: 1px solid var(--border); border-radius: 12px; padding: 32px; transition: transform 0.2s, box-shadow 0.2s; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(28,27,24,0.08); }
.service-icon { color: var(--accent); margin-bottom: 20px; }
.service-title { font-size: 20px; margin-bottom: 12px; font-family: 'DM Serif Display', serif; font-weight: 400; }
.service-desc { font-size: 15px; color: var(--muted); line-height: 1.65; }

/* Who */
.who { padding: 96px 48px; background: var(--surface); }
.who-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.who-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em; color: var(--accent); margin-bottom: 20px; }
.who-headline { font-size: clamp(24px, 2.5vw, 34px); font-weight: 400; line-height: 1.3; }
.who-profile { background: white; border-radius: 12px; padding: 32px; margin-bottom: 32px; position: relative; border: 1px solid var(--border); }
.profile-accent { position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--accent); border-radius: 12px 0 0 12px; }
.profile-text p { font-size: 16px; line-height: 1.7; color: var(--fg); }
.profile-text p:first-child { margin-bottom: 16px; }
.profile-attr { color: var(--muted) !important; font-size: 13px !important; }
.signals-label { font-size: 14px; font-weight: 600; color: var(--muted); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.06em; }
.signals-list { list-style: none; }
.signals-list li { font-size: 15px; color: var(--fg); padding: 10px 0; border-bottom: 1px solid var(--border); }
.signals-list li:last-child { border-bottom: none; }

/* Closing */
.closing { padding: 96px 48px; background: var(--accent); color: white; text-align: center; }
.closing-inner { max-width: 680px; margin: 0 auto; }
.closing-headline { font-size: clamp(26px, 3vw, 38px); font-weight: 400; font-style: italic; margin-bottom: 28px; line-height: 1.3; }
.closing-body { font-size: 17px; color: rgba(255,255,255,0.82); line-height: 1.75; margin-bottom: 20px; }
.closing-body:last-child { margin-bottom: 0; }

/* Footer */
.site-footer { padding: 40px 48px; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.footer-logo { font-family: 'DM Serif Display', serif; font-size: 18px; display: block; margin-bottom: 6px; }
.footer-tagline { font-size: 13px; color: var(--muted); }
.footer-meta { font-size: 13px; color: var(--muted); }

/* Responsive */
@media (max-width: 768px) {
  .site-nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .hero { padding: 56px 24px 48px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .hero-score-card { max-width: 100%; }
  .hero-bottom-bar { flex-direction: column; gap: 8px; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 12px; }
  .manifesto, .services, .who, .closing { padding: 64px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .who-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { flex-direction: column; gap: 16px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 28px; }
  .manifesto-headline { font-size: 24px; }
  .closing-headline { font-size: 22px; }
}