@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:wght@300;400;500&display=swap');

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

:root {
  --g1: #04342C;
  --g2: #085041;
  --g3: #0F6E56;
  --g4: #1D9E75;
  --g5: #5DCAA5;
  --g6: #9FE1CB;
  --g7: #C8EFE2;
  --g8: #E1F5EE;
  --g9: #F2FBF7;
  --sage: #3B6D11;
  --sage-light: #EAF3DE;
  --white: #FFFFFF;
  --off-white: #F8FAF9;
  --text: #111C18;
  --text-mid: #3A4F45;
  --text-muted: #6B7F76;
  --border: rgba(15, 110, 86, 0.15);
  --border-mid: rgba(15, 110, 86, 0.25);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  font-size: 16px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: 'DM Serif Display', serif; font-weight: 400; line-height: 1.15; }
h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }
p { font-size: 1rem; line-height: 1.7; color: var(--text-mid); }
a { color: inherit; text-decoration: none; }
em { font-style: italic; }

/* ── LAYOUT ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.nav-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.nav-logo-mark { width: 42px; height: 42px; flex-shrink: 0; }
.nav-logo-words { display: flex; flex-direction: column; gap: 1px; line-height: 1; }
.nav-logo-project { font-family: 'DM Sans', sans-serif; font-size: 0.58rem; font-weight: 500; letter-spacing: 3.5px; text-transform: uppercase; color: var(--sage); }
.nav-logo-lift { font-family: 'DM Serif Display', serif; font-size: 1.75rem; color: var(--g2); letter-spacing: 2px; text-transform: uppercase; line-height: 1; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { font-size: 0.9rem; font-weight: 400; color: var(--text-muted); transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--g3); }
.nav-cta {
  background: var(--g3); color: #fff; border: none;
  padding: 0.6rem 1.25rem; border-radius: var(--radius-md);
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
  cursor: pointer; transition: background 0.2s;
}
.nav-cta:hover { background: var(--g2); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block; background: var(--g3); color: #fff;
  padding: 0.85rem 1.75rem; border-radius: var(--radius-md);
  font-size: 0.95rem; font-weight: 500; border: none; cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--g2); transform: translateY(-1px); }
.btn-outline {
  display: inline-block; background: transparent; color: var(--g3);
  padding: 0.85rem 1.75rem; border-radius: var(--radius-md);
  font-size: 0.95rem; font-weight: 500; border: 1.5px solid var(--g3);
  cursor: pointer; transition: all 0.2s;
}
.btn-outline:hover { background: var(--g8); }
.btn-white {
  display: inline-block; background: #fff; color: var(--g3);
  padding: 0.85rem 1.75rem; border-radius: var(--radius-md);
  font-size: 0.95rem; font-weight: 500; border: none; cursor: pointer;
  transition: all 0.2s;
}
.btn-white:hover { background: var(--g8); }
.btn-ghost-white {
  display: inline-block; background: transparent; color: #fff;
  padding: 0.85rem 1.75rem; border-radius: var(--radius-md);
  font-size: 0.95rem; font-weight: 500; border: 1.5px solid rgba(255,255,255,0.5);
  cursor: pointer; transition: all 0.2s;
}
.btn-ghost-white:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

/* ── BADGES ── */
.badge {
  display: inline-block; font-size: 0.72rem; font-weight: 500;
  padding: 0.3rem 0.75rem; border-radius: 100px; letter-spacing: 0.3px;
}
.badge-teal { background: var(--g8); color: var(--g2); }
.badge-sage { background: var(--sage-light); color: var(--sage); }
.badge-urgent { background: var(--g3); color: #fff; }
.badge-dark { background: var(--g2); color: var(--g7); }

/* ── EYEBROW ── */
.eyebrow {
  font-family: 'DM Sans', sans-serif; font-size: 0.78rem; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--sage);
  margin-bottom: 0.75rem; display: block;
}

/* ── CARDS ── */
.card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem;
  transition: border-color 0.2s, transform 0.2s;
}
.card:hover { border-color: var(--border-mid); transform: translateY(-2px); }
.card-featured { border: 2px solid var(--g3); }
.card-dark { background: var(--g2); border-color: var(--g2); }

/* ── ALERT BAR ── */
.alert-bar {
  background: var(--g1); padding: 1rem 0;
}
.alert-bar-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
}
.alert-bar p { font-size: 0.9rem; color: var(--g6); margin: 0; }
.alert-bar strong { color: #fff; font-weight: 500; }

/* ── STAT BAR ── */
.stat-bar { background: var(--off-white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stat-bar-inner {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat-bar-item {
  padding: 1.5rem 2rem; border-right: 1px solid var(--border);
}
.stat-bar-item:last-child { border-right: none; }
.stat-big { font-family: 'DM Serif Display', serif; font-size: 2rem; color: var(--g3); line-height: 1; margin-bottom: 0.3rem; }
.stat-label { font-size: 0.8rem; color: var(--text-muted); line-height: 1.4; }

/* ── FOOTER ── */
footer { background: var(--g1); color: var(--g7); padding: 4rem 0 0; }
.footer-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 3rem;
}
.footer-logo { font-family: 'DM Serif Display', serif; font-size: 1.5rem; color: var(--g6); margin-bottom: 0.75rem; }
.footer-logo span { color: var(--g5); }
footer p { font-size: 0.88rem; color: var(--g6); line-height: 1.7; }
footer h4 { font-family: 'DM Sans', sans-serif; font-size: 0.78rem; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; color: var(--g5); margin-bottom: 1.1rem; }
footer ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
footer ul li a { font-size: 0.88rem; color: var(--g6); transition: color 0.2s; }
footer ul li a:hover { color: #fff; }
.footer-bottom {
  max-width: 1160px; margin: 0 auto; padding: 1.5rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.08); margin-top: 3rem;
  font-size: 0.82rem; color: var(--g5); display: flex; justify-content: space-between; align-items: center;
}

/* ── URGENCY BANNER ── */
.urgency-band {
  background: var(--g3); padding: 1.25rem 0;
}
.urgency-band-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
}
.urgency-band h3 { font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 500; color: #fff; margin: 0; }
.urgency-band p { font-size: 0.88rem; color: var(--g7); margin: 0; }

/* ── CTA SECTION ── */
.cta-section { background: var(--g2); padding: 5rem 0; text-align: center; }
.cta-section h2 { color: #fff; margin-bottom: 1rem; }
.cta-section p { color: var(--g6); max-width: 520px; margin: 0 auto 2rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── UTILITY ── */
.text-center { text-align: center; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.6s ease forwards; }
.fade-up-2 { animation: fadeUp 0.6s 0.15s ease forwards; opacity: 0; }
.fade-up-3 { animation: fadeUp 0.6s 0.3s ease forwards; opacity: 0; }

/* ── DIVIDER LINE ── */
hr { border: none; border-top: 1px solid var(--border); margin: 0; }

/* ── HIGHLIGHT TEXT ── */
.text-green { color: var(--g3); }
.text-sage { color: var(--sage); }
.text-muted { color: var(--text-muted); }

/* ── PLIST ── */
.plist { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-top: 1rem; }
.plist li {
  font-size: 0.9rem; color: var(--text-mid); display: flex;
  align-items: flex-start; gap: 0.6rem; line-height: 1.5;
}
.plist li::before {
  content: ''; display: block; width: 6px; height: 6px;
  border-radius: 50%; background: var(--g4); flex-shrink: 0; margin-top: 6px;
}
.plist-white li { color: var(--g7); }
.plist-white li::before { background: var(--g5); }
