:root {
  color-scheme: light;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: #18201d;
  background: #f4f5f0;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

a {
  color: #0f6b5d;
  font-weight: 800;
  text-decoration: none;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid #e5e9e2;
  background: rgba(244, 245, 240, 0.92);
  backdrop-filter: blur(8px);
}

.site-nav-inner,
.site-footer-inner,
.footer-legal {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
}

.site-nav-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  height: 60px;
}

.site-logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #18201d;
  font-weight: 900;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo img,
.footer-logo img {
  height: 30px;
  width: 30px;
  display: block;
}

.site-nav-links,
.site-nav-cta,
.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-nav-links {
  margin-left: auto;
}

.site-nav-links a,
.footer-links a,
.nav-signin {
  color: #4c5b53;
  font-size: 0.9rem;
}

.primary,
.ghost,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 6px;
  font-weight: 800;
}

.primary,
.button {
  padding: 0 18px;
  color: #ffffff;
  background: #0f6b5d;
}

.ghost {
  padding: 0 14px;
  color: #203129;
  background: #e7ece4;
}

.site-footer {
  margin-top: 20px;
  padding: 28px 0 20px;
  border-top: 1px solid #e5e9e2;
}

.site-footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.footer-brand {
  max-width: 360px;
}

.footer-logo img {
  height: 28px;
  width: 28px;
}

.footer-tagline {
  margin: 10px 0 0;
  font-size: 0.86rem;
}

.footer-links {
  flex-wrap: wrap;
  gap: 16px;
}

.footer-legal {
  margin-top: 18px;
  font-size: 0.8rem;
}

.muted {
  color: #66736b;
}

@media (max-width: 760px) {
  .site-nav-links,
  .nav-signin {
    display: none;
  }

  .site-nav-inner {
    gap: 10px;
    height: 54px;
  }

  .site-logo img {
    height: 26px;
  }
}
