:root {
  --teal-950: #04342C;
  --teal-800: #085041;
  --teal-700: #0F6E56;
  --teal-400: #1D9E75;
  --teal-100: #E1F5EE;

  --coral-800: #712B13;
  --coral-700: #993C1D;
  --coral-600: #D85A30;
  --coral-300: #F0997B;
  --coral-100: #FAECE7;

  --cream: #F7F5EE;
  --white: #FFFFFF;
  --ink: #04342C;
  --ink-muted: #5F5E5A;
  --ink-faint: #888780;
  --border-light: #E7E5DC;
  --border-mid: #B4B2A9;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  line-height: 1.5;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---------- Navbar ---------- */
.navbar {
  padding: 0 2rem;
  border-bottom: 0.5px solid var(--border-light);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1160px;
  margin: 0 auto;
  padding: 1.15rem 0;
}

.logo {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  color: var(--teal-950);
}

.nav-links {
  display: flex;
  gap: 30px;
  font-size: 13.5px;
  color: var(--ink-muted);
}

.nav-links a:hover {
  color: var(--teal-950);
}

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 500;
  padding: 11px 22px;
  border-radius: 6px;
  cursor: pointer;
  border: none;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.btn-coral { background: var(--coral-600); color: var(--white); }
.btn-coral:hover { background: var(--coral-700); }

.btn-teal { background: var(--teal-700); color: var(--white); }
.btn-teal:hover { background: var(--teal-800); }

.btn-outline { background: transparent; color: var(--teal-950); border: 0.5px solid var(--border-mid); }
.btn-outline:hover { border-color: var(--teal-950); }

.btn-outline-light { background: transparent; color: var(--cream); border: 0.5px solid rgba(247,245,238,0.35); }
.btn-outline-light:hover { border-color: var(--cream); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 620px;
  overflow: hidden;
}

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    rgba(4, 52, 44, 0.94) 0%,
    rgba(4, 52, 44, 0.88) 25%,
    rgba(4, 52, 44, 0.55) 50%,
    rgba(4, 52, 44, 0.15) 72%,
    rgba(4, 52, 44, 0) 88%
  );
}

.hero-inner {
  position: relative;
  height: 100%;
  padding: 0 2rem;
  display: flex;
  align-items: center;
}

.hero-inner-content {
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
}

.hero-copy {
  max-width: 520px;
}

.hero .eyebrow {
  color: var(--coral-300);
}

.eyebrow {
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral-700);
  font-weight: 600;
  margin-bottom: 16px;
}

.hero-copy h1 {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--cream);
  max-width: 560px;
  margin-bottom: 20px;
}

.hero-copy .subhead {
  font-size: 15.5px;
  color: var(--teal-100);
  max-width: 440px;
  line-height: 1.65;
  margin-bottom: 12px;
}

.hero-copy .supporting {
  font-size: 13.5px;
  color: rgba(225, 245, 238, 0.75);
  font-style: italic;
  margin-bottom: 26px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ---------- Pillar strip ---------- */
.pillar-strip {
  position: relative;
  padding: 3.5rem 2rem 3rem;
  background: var(--white);
}

.pillar-path {
  position: absolute;
  top: 88px;
  left: 12%;
  right: 12%;
  height: 2px;
  border-top: 2px dashed var(--coral-300);
}

.pillar-row {
  position: relative;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 32px;
  max-width: 860px;
  margin: 0 auto;
}

.pillar {
  width: 150px;
  text-align: center;
}

.pillar-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  background: var(--white);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 1px var(--border-light);
}

.pillar-icon svg { width: 30px; height: 30px; }

.pillar.teal .pillar-icon { background: var(--teal-100); }
.pillar.teal .pillar-icon svg { stroke: var(--teal-700); }

.pillar.coral .pillar-icon { background: var(--coral-100); }
.pillar.coral .pillar-icon svg { stroke: var(--coral-700); }

.pillar-label {
  font-size: 15px;
  font-weight: 500;
  color: var(--teal-950);
}

/* ---------- Dark section ---------- */
.dark-section {
  background: var(--teal-950);
  color: var(--cream);
  padding: 3.75rem 2rem;
}

.dark-section .eyebrow {
  color: var(--teal-400);
}

.dark-section h2 {
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 30px;
  max-width: 480px;
}

.dark-section-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1160px;
  margin: 0 auto;
}

.dark-section-copy {
  flex: 1.1;
  min-width: 0;
}

.dark-section-image {
  flex: 0.9;
  min-width: 0;
  width: 100%;
  height: auto;
  border-radius: 14px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 620px;
}

.step-number {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--coral-600);
  margin-bottom: 8px;
}

.step-title {
  font-size: 14.5px;
  font-weight: 500;
  margin-bottom: 6px;
}

.step-desc {
  font-size: 13px;
  color: var(--teal-100);
  line-height: 1.55;
}

/* ---------- Tiers ---------- */
.tiers {
  padding: 4rem 2rem;
}

.tiers-label {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 28px;
}

.tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  align-items: start;
  gap: 18px;
  max-width: 960px;
  margin: 0 auto;
}

.tier-card {
  background: var(--cream);
  border-radius: 14px;
  padding: 1.75rem;
}

.tier-card.featured {
  border: 1.5px solid var(--coral-600);
  background: var(--white);
  box-shadow: 0 6px 20px rgba(4, 52, 44, 0.06);
}

.tier-icon-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 14px;
  border-radius: 10px;
}

.tier-eyebrow {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 6px;
}

.tier-card:not(.featured) .tier-eyebrow { color: var(--teal-700); }
.tier-card.featured .tier-eyebrow { color: var(--coral-700); }

.tier-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--teal-950);
}

.tier-list {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
}

.tier-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13.5px;
  color: var(--ink-muted);
  line-height: 1.5;
  margin-bottom: 9px;
}

.tier-list li svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
}

.tier-card:not(.featured) .tier-list li svg { color: var(--teal-700); }
.tier-card.featured .tier-list li svg { color: var(--coral-700); }

.tier-closing {
  font-size: 12.5px;
  color: var(--ink-faint);
  font-style: italic;
  padding-top: 14px;
  border-top: 0.5px solid var(--border-light);
}

/* ---------- Trust strip ---------- */
.trust-strip {
  padding: 1.5rem 2rem 3rem;
  text-align: center;
}

.trust-strip p {
  font-size: 12.5px;
  color: var(--ink-faint);
  max-width: 600px;
  margin: 0 auto;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--teal-950);
  color: var(--teal-100);
  padding: 3.5rem 2rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 32px;
  max-width: 1160px;
  margin: 0 auto 2.5rem;
}

.footer-brand .logo {
  color: var(--cream);
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--teal-100);
  line-height: 1.6;
  max-width: 260px;
}

.footer-col h4 {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.footer-col a, .footer-col p {
  display: block;
  font-size: 13px;
  color: var(--teal-100);
  margin-bottom: 10px;
  line-height: 1.5;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 0.5px solid rgba(247,245,238,0.15);
  padding-top: 1.5rem;
  max-width: 1160px;
  margin: 0 auto;
  font-size: 12px;
  color: var(--teal-100);
  text-align: center;
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .hero { height: 480px; }
  .hero-overlay {
    background: linear-gradient(180deg, rgba(4,52,44,0.55) 0%, rgba(4,52,44,0.88) 55%, rgba(4,52,44,0.94) 100%);
  }
  .hero-copy { max-width: 100%; }
  .dark-section-inner { flex-direction: column; }
  .steps-grid { grid-template-columns: 1fr; max-width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .navbar { flex-direction: column; gap: 12px; }
  .nav-links { gap: 16px; flex-wrap: wrap; justify-content: center; }
  .hero-copy h1 { font-size: 28px; }
  .pillar-row { gap: 16px; }
  .pillar { width: 45%; }
  .pillar-path { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
}
