/* ── Variables ── */
:root {
  --bg: #faf8f4;
  --bg-alt: #f0ece3;
  --bg-dark: #1a1f3a;
  --text: #1a1a2e;
  --text-muted: #6b6b7a;
  --accent: #c9a84c;
  --accent-dark: #a07c2a;
  --border: #e2ddd4;
  --ink-light: rgba(255,255,255,0.55);
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ── Site Header ── */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 1.5rem 0;
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2.5rem;
}
.header-logo { display: inline-block; }
.header-logo-img {
  height: 60px;
  width: auto;
  display: block;
}

/* ── Utility ── */
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.section-label.light { color: var(--accent); }
.section-inner { max-width: 1100px; margin: 0 auto; padding: 0 2.5rem; }
.section-heading {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.2;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.section-heading.light { color: #f5f0e6; }
.section-body {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.8;
  margin-bottom: 3rem;
}
.section-body.light { color: rgba(255,255,255,0.7); }

/* ── Hero ── */
.hero {
  background: var(--bg);
  padding: 7rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -120px;
  width: 600px; height: 600px;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  line-height: 1.15;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.hero-headline em { font-style: italic; color: var(--accent-dark); }
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 480px;
}
.hero-scripture {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--accent-dark);
  border-left: 3px solid var(--accent);
  padding-left: 1rem;
}
.hero-scripture span {
  display: block;
  font-size: 0.8rem;
  font-style: normal;
  color: var(--text-muted);
  margin-top: 0.5rem;
  letter-spacing: 0.05em;
}

/* Hero Visual */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-emblem { text-align: center; }
.emblem-ring {
  width: 180px;
  height: 180px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
  animation: ringPulse 4s ease-in-out infinite;
}
@keyframes ringPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.15); }
  50% { box-shadow: 0 0 0 20px rgba(201,168,76,0); }
}
.emblem-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}
.emblem-h { font-family: var(--serif); font-size: 2.8rem; font-weight: 700; color: var(--text); }
.emblem-fm { font-family: var(--sans); font-size: 0.75rem; letter-spacing: 0.25em; color: var(--accent); margin-top: 2px; }
.emblem-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-muted);
}
.founders-photo {
  width: 148px;
  height: 148px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

/* Particles */
.hero-particles { position: absolute; inset: 0; pointer-events: none; }
.particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.4;
}
.p1 { width: 8px; height: 8px; background: var(--accent); top: 15%; left: 8%; animation: float 6s ease-in-out infinite; }
.p2 { width: 5px; height: 5px; background: var(--accent-dark); top: 25%; right: 12%; animation: float 8s ease-in-out infinite reverse; }
.p3 { width: 6px; height: 6px; background: var(--accent); bottom: 30%; left: 15%; animation: float 7s ease-in-out infinite 1s; }
.p4 { width: 4px; height: 4px; background: var(--accent-dark); bottom: 20%; right: 20%; animation: float 9s ease-in-out infinite reverse 2s; }
.p5 { width: 7px; height: 7px; background: var(--accent); top: 55%; left: 5%; animation: float 5s ease-in-out infinite 0.5s; }
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* ── Different Section ── */
.different {
  background: var(--bg);
  padding: 6rem 0;
}
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}
.pillar {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem 2rem;
}
.pillar-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #f0ece3, #faf8f4);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-dark);
  margin-bottom: 1.5rem;
}
.pillar h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text);
}
.pillar p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Vetting Section ── */
.vetting {
  background: var(--bg-dark);
  padding: 6rem 0;
}
.vetting .section-label { color: var(--accent); }
.vetting-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2.5rem 0 2rem;
}
.vcard {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 2rem 1.75rem;
}
.vcard-number {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.4;
  margin-bottom: 1rem;
  line-height: 1;
}
.vcard h4 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: #f5f0e6;
  margin-bottom: 0.75rem;
}
.vcard p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}
.vetting-note {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--accent);
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}

/* ── How It Works ── */
.howitworks {
  background: var(--bg);
  padding: 6rem 0;
}
.hiw-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.hiw-col { display: flex; flex-direction: column; gap: 1.5rem; }
.hiw-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.hiw-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #f0ece3, #faf8f4);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-dark);
}
.hiw-content h4 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.hiw-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 0.75rem;
}
.hiw-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  background: var(--bg-dark);
  color: var(--accent);
}
.hiw-badge.free {
  background: linear-gradient(135deg, #e8f5e9, #f1f8e9);
  color: #2e7d32;
  border: 1px solid #c8e6c9;
}
.hiw-quote blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  border-left: 3px solid var(--accent);
}
.hiw-quote p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── Vision ── */
.vision {
  background: var(--bg-alt);
  padding: 6rem 0;
}
.vision .section-heading { margin-bottom: 2.5rem; }
.vision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.vg-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem 2rem;
}
.vg-card h4 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.vg-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Closing ── */
.closing {
  background: var(--bg-dark);
  padding: 7rem 0;
}
.closing .section-inner { text-align: center; }
.closing-headline {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.25;
  font-weight: 600;
  color: #f5f0e6;
  margin-bottom: 1.75rem;
}
.closing-body {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.85;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}
.closing-scripture {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--accent);
  line-height: 1.7;
}

/* ── Footer ── */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 3rem 0;
}
.footer-inner { max-width: 1100px; margin: 0 auto; padding: 0 2.5rem; text-align: center; }
.footer-brand { margin-bottom: 1rem; }
.footer-emblem {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
}
.footer-logo-img {
  height: 52px;
  width: auto;
  display: inline-block;
}
.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}
.footer-scripture {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--accent-dark);
  margin: 1.25rem 0;
}
.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-visual { order: -1; }
  .emblem-ring { width: 140px; height: 140px; }
  .pillars { grid-template-columns: 1fr; gap: 1.5rem; }
  .vetting-cards { grid-template-columns: 1fr; gap: 1.5rem; }
  .hiw-split { grid-template-columns: 1fr; gap: 3rem; }
  .vision-grid { grid-template-columns: 1fr; }
  .section-inner { padding: 0 1.5rem; }
  .hero-inner { padding: 0 1.5rem; }
}
@media (max-width: 480px) {
  .hero { padding: 5rem 0 4rem; }
  .vcard { padding: 1.5rem 1.25rem; }
  .hiw-card { padding: 1.25rem; }
}