:root {
  --teal-deep: #1f3d43;
  --teal-mid: #2c5259;
  --teal-soft: #3d6a72;
  --teal-darker: #16292d;
  --cream: #e3ddd1;
  --cream-light: #ebe5d9;
  --cream-warm: #d4ccba;
  --paper: #f0eadd;
  --ink: #14272b;
  --muted: #6b7a7d;
  --gold: #b89968;
  --gold-soft: #c9ad7d;
  --line: rgba(31, 61, 67, 0.12);
  --line-dark: rgba(232, 224, 205, 0.15);
  --shadow-md: 0 12px 40px rgba(31, 61, 67, 0.12);
  --shadow-lg: 0 30px 80px rgba(31, 61, 67, 0.18);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: '';
  position: fixed; inset: 0; pointer-events: none; z-index: 1000;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}
h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--teal-deep);
}
em { font-style: italic; color: var(--gold); }
a { color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

/* ============ NAV ============ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0;
  background: var(--teal-deep);
  border-bottom: 1px solid rgba(232, 224, 205, 0.08);
  transition: padding 0.3s, box-shadow 0.3s;
}
nav.scrolled { padding: 12px 0; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15); }
.nav-inner { display: flex; justify-content: space-between; align-items: center; }
.nav-logo { height: 42px; transition: height 0.3s; }
nav.scrolled .nav-logo { height: 34px; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  text-decoration: none; color: var(--cream);
  font-size: 13px; font-weight: 500; letter-spacing: 0.04em;
  position: relative; transition: color 0.2s;
}
.nav-links a:not(.nav-cta):hover { color: var(--gold-soft); }
.nav-links a.active { color: var(--gold-soft); }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: -8px; left: 0; right: 0;
  height: 1px; background: var(--gold);
}
.nav-cta {
  background: var(--gold); color: var(--teal-darker) !important;
  padding: 10px 22px; border-radius: 2px;
  font-weight: 600 !important; transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--gold-soft); }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; flex-direction: column; gap: 5px; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--cream); transition: 0.3s; }

/* ============ HERO ============ */
.hero {
  min-height: 85vh;
  padding: 160px 0 80px;
  position: relative; overflow: hidden;
  display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(184, 153, 104, 0.14), transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(31, 61, 67, 0.07), transparent 50%),
    linear-gradient(180deg, var(--paper) 0%, var(--cream-light) 100%);
}
.hero-rays {
  position: absolute; top: -100px; right: -200px;
  width: 800px; height: 800px; z-index: 0;
  opacity: 0.08; transform: rotate(-15deg); pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 900px; }
.hero h1 {
  font-size: clamp(44px, 6.5vw, 80px);
  font-weight: 500; margin-bottom: 28px;
}
.hero-sub {
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--muted);
  max-width: 620px; margin-bottom: 44px;
}

.hero-compact { min-height: auto; padding: 160px 0 80px; }
.hero-compact h1 { font-size: clamp(40px, 5.5vw, 64px); }

/* ============ EYEBROW ============ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--teal-soft);
  margin-bottom: 28px;
}
.eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--teal-soft); }
.eyebrow.gold { color: var(--gold); }
.eyebrow.gold::before { background: var(--gold); }
.eyebrow.cream { color: var(--cream-warm); }
.eyebrow.cream::before { background: var(--cream-warm); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px;
  font-family: 'Inter', sans-serif; font-size: 13px;
  font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; text-decoration: none;
  border-radius: 2px; border: none; cursor: pointer;
  transition: all 0.2s;
}
.btn-primary { background: var(--teal-deep); color: var(--cream-light); }
.btn-primary:hover { background: var(--teal-mid); transform: translateY(-1px); }
.btn-gold { background: var(--gold); color: var(--teal-darker); }
.btn-gold:hover { background: var(--gold-soft); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--teal-deep); border: 1px solid var(--teal-deep); }
.btn-outline:hover { background: var(--teal-deep); color: var(--cream-light); }
.btn-cream-outline { background: transparent; color: var(--cream); border: 1px solid var(--cream-warm); }
.btn-cream-outline:hover { background: var(--cream); color: var(--teal-deep); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ============ SECTIONS ============ */
section { padding: 120px 0; position: relative; }
.section-title { font-size: clamp(36px, 5vw, 60px); margin-bottom: 24px; max-width: 800px; }
.section-intro { font-size: 18px; color: var(--muted); max-width: 640px; margin-bottom: 64px; }

/* Dark sections */
.section-dark { background: var(--teal-deep); color: var(--cream-light); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--cream-light); }
.section-dark .section-intro { color: rgba(232, 224, 205, 0.7); }
.section-dark em { color: var(--gold); }

/* ============ PATH CARDS (Home) ============ */
.path-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.path-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 36px 32px;
  border-radius: 4px;
  text-decoration: none;
  color: inherit;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.path-card::before {
  content: ''; position: absolute; inset: 0;
  background: var(--teal-deep);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
}
.path-card:hover { transform: translateY(-4px); border-color: var(--teal-deep); box-shadow: var(--shadow-md); }
.path-card:hover::before { transform: translateY(0); }
.path-card:hover * { color: var(--cream-light) !important; }
.path-card > * { position: relative; z-index: 1; }
.path-tag {
  font-size: 11px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 16px; transition: color 0.3s;
}
.path-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 600;
  margin-bottom: 14px; color: var(--teal-deep);
  line-height: 1.2; transition: color 0.3s;
}
.path-desc {
  font-size: 14px; color: var(--muted);
  margin-bottom: 28px; transition: color 0.3s;
  flex-grow: 1;
}
.path-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-deep); transition: gap 0.3s, color 0.3s;
}
.path-card:hover .path-arrow { gap: 14px; }

/* ============ FEATURE GRID ============ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.feature {
  padding: 36px 32px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: all 0.3s;
}
.feature:hover { border-color: var(--teal-deep); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.feature-icon {
  width: 44px; height: 44px;
  margin-bottom: 24px;
  color: var(--teal-deep);
}
.feature h3 { font-size: 22px; margin-bottom: 12px; font-weight: 600; }
.feature p { font-size: 15px; color: var(--muted); }

/* ============ STATS ============ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
}
.stat {
  background: var(--paper);
  padding: 36px 28px;
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px; font-weight: 500;
  line-height: 1; color: var(--teal-deep);
  margin-bottom: 8px;
}
.stat-num .currency { font-size: 28px; vertical-align: top; color: var(--gold); }
.stat-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--muted);
}

/* ============ SPLIT (text + visual) ============ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split-reverse { direction: rtl; }
.split-reverse > * { direction: ltr; }
.split-text p { color: var(--muted); margin-bottom: 18px; }
.section-dark .split-text p { color: rgba(232, 224, 205, 0.78); }
.pull-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 32px; line-height: 1.3;
  color: var(--teal-deep);
  margin-bottom: 28px;
  padding-left: 24px;
  border-left: 2px solid var(--gold);
}
.section-dark .pull-quote { color: var(--cream-light); }

/* ============ STEPS / PROCESS ============ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step { padding-top: 32px; border-top: 1px solid var(--line-dark); }
.section-dark .step { border-top-color: var(--line-dark); }
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px; letter-spacing: 0.1em;
  color: var(--gold); margin-bottom: 18px;
}
.step h4 { font-size: 22px; margin-bottom: 14px; font-weight: 600; }
.section-dark .step h4 { color: var(--cream-light); }
.step p { font-size: 14px; color: rgba(232, 224, 205, 0.7); line-height: 1.7; }
section:not(.section-dark) .step p { color: var(--muted); }

/* ============ CTA BAND ============ */
.cta-band {
  background: var(--teal-deep);
  color: var(--cream-light);
  padding: 100px 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-band-rays {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  opacity: 0.05; pointer-events: none;
}
.cta-band h2 { color: var(--cream-light); font-size: clamp(36px, 5vw, 56px); margin-bottom: 24px; }
.cta-band p { color: rgba(232, 224, 205, 0.75); font-size: 18px; max-width: 580px; margin: 0 auto 40px; }
.cta-band .btn-row { justify-content: center; }

/* ============ OFFERS / DUAL CARD ============ */
.dual-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.offer-card {
  padding: 48px 40px;
  border-radius: 4px;
  position: relative; overflow: hidden;
}
.offer-card.dark { background: var(--teal-deep); color: var(--cream-light); }
.offer-card.dark h3 { color: var(--cream-light); }
.offer-card.light { background: var(--paper); border: 1px solid var(--line); }
.offer-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px; font-weight: 500; letter-spacing: 0.1em;
  margin-bottom: 16px; opacity: 0.7;
}
.offer-card h3 { font-size: 32px; margin-bottom: 18px; font-weight: 600; }
.offer-card > p { font-size: 15px; margin-bottom: 28px; opacity: 0.85; }
.offer-list { list-style: none; }
.offer-list li {
  padding: 14px 0;
  border-top: 1px solid;
  border-color: rgba(232, 224, 205, 0.15);
  font-size: 14px;
  display: flex; align-items: flex-start; gap: 12px;
}
.offer-card.light .offer-list li { border-color: var(--line); }
.offer-list li:first-child { border-top: 0; }
.offer-list li::before {
  content: ''; flex-shrink: 0;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%; margin-top: 7px;
}

/* ============ FORMS ============ */
form { display: grid; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field label {
  display: block; font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 8px;
}
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 14px 16px;
  border: 1px solid var(--line);
  background: var(--paper);
  font-family: 'Inter', sans-serif; font-size: 15px;
  color: var(--ink); border-radius: 2px;
  transition: border-color 0.2s, background 0.2s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--teal-deep);
  background: var(--cream-light);
}
.form-field textarea { resize: vertical; min-height: 100px; }
.form-submit {
  background: var(--teal-deep); color: var(--cream-light);
  border: none; padding: 18px 32px;
  font-family: 'Inter', sans-serif; font-size: 13px;
  font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; cursor: pointer;
  border-radius: 2px; transition: background 0.2s;
  justify-self: start;
}
.form-submit:hover { background: var(--teal-mid); }

/* ============ FAITH STRIP ============ */
.faith {
  background: var(--cream-light);
  padding: 80px 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.faith-rays {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  opacity: 0.06; pointer-events: none;
}
.faith-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.4; color: var(--teal-deep);
  max-width: 760px; margin: 0 auto 16px;
  position: relative;
}
.faith-attr {
  font-size: 12px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold);
  position: relative;
}

/* ============ CONTACT INFO ============ */
.contact-direct { border-top: 1px solid var(--line); padding-top: 24px; }
.contact-direct-row {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 0; text-decoration: none;
  color: var(--teal-deep);
  border-bottom: 1px solid var(--line);
  transition: padding 0.2s;
}
.contact-direct-row:hover { padding-left: 8px; }
.contact-direct-row:last-child { border-bottom: none; }
.contact-direct-icon { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; }
.contact-direct-row .label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted); width: 70px;
}
.contact-direct-row .value { font-size: 16px; font-weight: 500; }

/* ============ FOOTER ============ */
footer {
  background: var(--teal-deep);
  color: var(--cream-warm);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px; margin-bottom: 64px;
}
.footer-logo { height: 60px; margin-bottom: 24px; }
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 18px;
  color: var(--cream-warm);
  max-width: 320px; line-height: 1.5;
}
.footer-col h5 {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a {
  color: var(--cream-warm); text-decoration: none;
  font-size: 14px; opacity: 0.8;
  transition: opacity 0.2s;
}
.footer-col a:hover { opacity: 1; }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(232, 224, 205, 0.1);
  display: flex; justify-content: space-between;
  align-items: center; font-size: 12px;
  color: rgba(232, 224, 205, 0.6);
  flex-wrap: wrap; gap: 16px;
}

/* ============ REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
/* Fallback: if JS doesn't run or IntersectionObserver fails, show everything after 2s */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
/* Safety net: ensure content is visible even if observer fails */
.no-js .reveal { opacity: 1; transform: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  section { padding: 80px 0; }
  .container { padding: 0 24px; }
  .nav-links {
    display: none; position: fixed; top: 70px; left: 0; right: 0;
    background: var(--teal-deep); flex-direction: column;
    padding: 32px; gap: 24px; border-bottom: 1px solid var(--line-dark);
  }
  .nav-links.open { display: flex; }
  .menu-toggle { display: flex; }
  .hero { padding: 120px 0 64px; min-height: auto; }
  .path-cards { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 48px; }
  .split-reverse { direction: ltr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .dual-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 540px) {
  .steps { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .offer-card { padding: 32px 24px; }
}
