/* Shared chrome across every page: tokens, resets, nav, kicker, footer.
   Page-specific layout (hero, sections, forms) stays in each page's own
   <style> block. Keeping this in one file is what stops the two pages'
   nav/footer from drifting apart the way they already had once. */

:root {
  --void: #06090B;
  --paper: #F1F0EE;
  --forest: #13492B;
  --bone: #E8E4D8;
  --nucleus: #36E067;
  --font-display: 'Fraunces', ui-serif, Georgia, serif;
  --font-body: 'Schibsted Grotesk', ui-sans-serif, system-ui, -apple-system, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body {
  margin: 0;
  background: var(--paper);
  color: var(--void);
  font-family: var(--font-body);
}
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }

/* nav is the fixed+transform positioning shell; .nav-pill carries the
   background/shape. */
nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
}
.nav-pill {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 8px 8px 8px 18px;
  background: var(--void);
  border-radius: 999px;
}
nav .brand img { height: 34px; width: auto; display: block; }
nav .nav-link {
  color: color-mix(in srgb, var(--paper) 85%, transparent);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
nav a.cta-pill {
  font-family: var(--font-body);
  color: var(--void);
  background: var(--nucleus);
  font-size: 0.9375rem;
  font-weight: 700;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 999px;
  white-space: nowrap;
}

.kicker {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--forest);
  margin: 0 0 14px;
}

footer.site-footer {
  background: var(--bone);
  padding: 40px 6vw 32px;
}
footer.site-footer .footer-row {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
footer.site-footer .footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
footer.site-footer .footer-brand img { height: 26px; width: auto; display: block; }
footer.site-footer .footer-links { display: flex; gap: 24px; }
footer.site-footer .footer-links a {
  color: color-mix(in srgb, var(--void) 70%, transparent);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
}
footer.site-footer .footer-contact {
  color: var(--paper);
  background: var(--void);
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 999px;
}
footer.site-footer .footer-copyright {
  max-width: 1000px;
  margin: 24px auto 0;
  font-size: 0.75rem;
  color: color-mix(in srgb, var(--void) 45%, transparent);
}

@media (max-width: 640px) {
  nav { gap: 14px; }
  nav .nav-link { display: none; }
}
