:root {
  --ink: #1c1917;
  --ink-2: #1c1917;
  --muted: #1c1917;
  --hair: #ececec;
  --teal: #0b635c;
  --sage: #3f6656;
  --accent: #0b635c;
  --display: "Cormorant Garamond", Georgia, serif;
  --ui: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --page-white: #ffffff;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { background: var(--page-white); min-height: 100%; }
body {
  font-family: var(--ui);
  color: var(--ink);
  background: var(--page-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  position: relative;
  min-height: 100vh;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: var(--page-white);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,.55) 0%, rgba(255,255,255,0) 42%);
}
body > * { position: relative; z-index: 1; }
a { color: var(--teal); }
.top {
  position: fixed; top: 1rem; left: 0; right: 0; z-index: 50;
  display: flex; justify-content: center; padding: 0 1.25rem;
}
.top a, .top nav a {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .5rem 1.2rem; border-radius: 999px;
  background: #ffffff; border: 1px solid rgba(0,0,0,.06);
  font-size: .78rem; font-weight: 500; color: var(--ink); text-decoration: none;
}
.top nav { display: flex; gap: .5rem; flex-wrap: wrap; justify-content: center; }
.wrap { max-width: var(--w); margin: 0 auto; padding: 6rem 1.25rem 3rem; }
h1 {
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 2.85rem);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -.02em;
  line-height: 1.12;
  margin-bottom: 1rem;
}
.lead { font-size: 1.05rem; color: var(--muted); max-width: 40rem; margin-bottom: 2rem; }
h2 {
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--ink);
  margin: 2.25rem 0 .75rem;
}
p, li { font-size: .95rem; margin-bottom: .85rem; }
ul { padding-left: 1.25rem; margin-bottom: 1.25rem; }
.card {
  border: 1px solid rgba(28,25,23,.08);
  border-radius: 20px;
  padding: 1.35rem 1.5rem;
  background: #fff;
  margin-bottom: 1rem;
  box-shadow: 0 8px 28px -12px rgba(28,25,23,.08);
}
.card h3 { font-size: 1rem; font-weight: 600; color: var(--ink); margin-bottom: .4rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 44px; padding: 0 1.4rem; border-radius: 999px;
  font-size: .84rem; font-weight: 600; text-decoration: none;
  background: var(--teal); color: #fff; border: none;
}
.btn--light { background: #fff; color: var(--ink); border: 1px solid var(--hair); }
.actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }
footer {
  text-align: center; padding: 2rem 1.25rem;
  font-size: .78rem; color: var(--muted);
  border-top: 1px solid var(--hair);
}
