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

:root {
  --teal-900: #04342C;
  --teal-800: #085041;
  --teal-700: #0F6E56;
  --teal-500: #1D9E75;
  --teal-300: #5DCAA5;
  --teal-100: #9FE1CB;
  --teal-50:  #E1F5EE;
  --charcoal: #1C1C1C;
  --charcoal-soft: #2E2E2E;
  --charcoal-mid: #4A4A4A;
  --gray-light: #F5F4F0;
  --gray-mid: #E0DED8;
  --gray-muted: #9A9890;
  --cream: #FAFAF8;
  --white: #ffffff;
  --font-serif: 'DM Serif Display', Georgia, serif;
  --font-sans: 'DM Sans', sans-serif;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,250,248,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-mid);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--charcoal);
  text-decoration: none;
  letter-spacing: -0.3px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  color: var(--charcoal-mid);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s;
}

.nav-links a:hover, .nav-links a.active { color: var(--teal-700); }

.nav-cta {
  font-size: 13px;
  background: var(--teal-700);
  color: var(--white) !important;
  padding: 7px 18px;
  border-radius: var(--radius-sm);
  font-weight: 500 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--teal-800) !important; color: var(--white) !important; }

/* BUTTONS */
.btn-primary {
  display: inline-block;
  background: var(--teal-700);
  color: var(--white);
  padding: 12px 26px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  font-family: var(--font-sans);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--teal-800); transform: translateY(-1px); }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--charcoal);
  padding: 12px 26px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  font-family: var(--font-sans);
  border: 1px solid var(--gray-mid);
  cursor: pointer;
  transition: border-color 0.2s, transform 0.15s;
}
.btn-secondary:hover { border-color: var(--teal-500); transform: translateY(-1px); }

/* SECTIONS */
.section { padding: 5rem 2rem; max-width: 960px; margin: 0 auto; }
.section-label {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--teal-700);
  font-weight: 500;
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-serif);
  font-size: 34px;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--charcoal);
}

/* FOOTER */
footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.5);
  text-align: center;
  font-size: 13px;
  padding: 2rem;
}
footer a { color: var(--teal-300); text-decoration: none; }

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.6s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.55s; }

/* PILL TAGS */
.pill {
  display: inline-block;
  font-size: 11px;
  border: 1px solid var(--gray-mid);
  border-radius: 100px;
  padding: 3px 12px;
  margin: 3px 3px 3px 0;
  color: var(--charcoal-mid);
  background: var(--white);
}

.pill-teal {
  background: var(--teal-50);
  border-color: var(--teal-100);
  color: var(--teal-800);
}

/* DIVIDER */
.divider {
  border: none;
  border-top: 1px solid var(--gray-mid);
  margin: 0 2rem;
}

/* RESPONSIVE */
@media (max-width: 700px) {
  .nav-links { display: none; }
  .section { padding: 3rem 1.25rem; }
}
