@font-face {
  font-family: Outfit;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/fonts/outfit-500.woff2") format("woff2");
}
@font-face {
  font-family: Outfit;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/fonts/outfit-600.woff2") format("woff2");
}
@font-face {
  font-family: Outfit;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/outfit-700.woff2") format("woff2");
}
@font-face {
  font-family: Syne;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/syne-700.woff2") format("woff2");
}
@font-face {
  font-family: Syne;
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("/fonts/syne-800.woff2") format("woff2");
}

:root {
  --ink: #122018;
  --paper: #f7f4ec;
  --leaf: #1f6b3a;
  --leaf-deep: #0d3d22;
  --sun: #ff6b1a;
  --sun-ink: #1a0d06;
  --muted: #3d5346;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: Outfit, system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.45;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a { color: inherit; text-decoration: none; }

.site-header {
  position: relative;
  z-index: 10;
  color: var(--paper);
  background: var(--leaf-deep);
}

.site-header-inner {
  width: min(100%, 72rem);
  margin: 0 auto;
  padding: 1rem clamp(1.75rem, 5vw, 3.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: Syne, Outfit, sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
  color: var(--paper);
}

.logo img {
  width: 2.35rem;
  height: 2.35rem;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
}

.logo:hover { opacity: 0.92; }

.logo-mark {
  display: block;
  width: clamp(5.5rem, 14vw, 7.5rem);
  height: auto;
  margin-bottom: 0.85rem;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.35));
}

.footer-logo {
  width: 3.25rem;
  height: 3.25rem;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  margin-bottom: 0.75rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 3vw, 1.75rem);
  font-weight: 600;
  font-size: 0.95rem;
}

.nav a {
  opacity: 0.9;
  transition: opacity 0.15s ease;
}

.nav a:hover { opacity: 1; }

.nav-cta {
  background: var(--sun);
  color: var(--sun-ink);
  padding: 0.55rem 0.95rem;
  border-radius: 0.35rem;
  opacity: 1 !important;
  font-weight: 700;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.nav-cta:focus-visible {
  outline: 2px solid var(--paper);
  outline-offset: 3px;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  background: var(--sun);
  color: var(--sun-ink);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 0.95rem 1.5rem;
  border-radius: 0.4rem;
  transition: transform 0.2s ease, filter 0.2s ease;
  border: none;
  cursor: pointer;
}

.cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.cta:focus-visible {
  outline: 2px solid var(--leaf);
  outline-offset: 3px;
}

.cta-secondary {
  background: transparent;
  color: var(--leaf-deep);
  box-shadow: inset 0 0 0 2px var(--leaf);
}

.page {
  flex: 1;
  width: min(100%, 46rem);
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1.75rem, 5vw, 3.5rem);
}

.page-wide {
  width: min(100%, 56rem);
}

.page-kicker {
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--leaf);
  margin-bottom: 0.65rem;
}

.page h1 {
  font-family: Syne, Outfit, sans-serif;
  font-weight: 800;
  font-size: clamp(1.85rem, 4.5vw, 2.6rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--leaf-deep);
  margin-bottom: 0.75rem;
}

.page-lead {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 40rem;
  margin-bottom: 2rem;
}

.prose h2 {
  font-family: Syne, Outfit, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  margin: 1.75rem 0 0.6rem;
  color: var(--ink);
}

.prose p,
.prose li {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.prose ul {
  padding-left: 1.2rem;
  margin-bottom: 1rem;
}

.prose a {
  color: var(--leaf);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.jobs {
  display: grid;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.job {
  padding: 1.35rem 0;
  border-top: 1px solid rgba(18, 32, 24, 0.12);
}

.job:last-child {
  border-bottom: 1px solid rgba(18, 32, 24, 0.12);
}

.job h2 {
  font-family: Syne, Outfit, sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  margin: 0 0 0.35rem;
  color: var(--leaf-deep);
}

.job-meta {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--leaf);
  margin-bottom: 0.75rem;
}

.job p {
  color: var(--muted);
  margin-bottom: 0.65rem;
  line-height: 1.55;
}

.job ul {
  padding-left: 1.15rem;
  margin: 0.5rem 0 1.1rem;
  color: var(--muted);
}

.job li { margin-bottom: 0.35rem; }

.job-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.site-footer {
  background: #08160f;
  color: rgba(247, 244, 236, 0.78);
  padding: clamp(2.5rem, 6vw, 3.5rem) clamp(1.75rem, 5vw, 3.5rem) 2rem;
  margin-top: auto;
}

.site-footer-inner {
  width: min(100%, 72rem);
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

@media (min-width: 720px) {
  .site-footer-inner {
    grid-template-columns: 1.4fr 1fr 1fr;
    align-items: start;
    gap: 2.5rem;
  }
}

.footer-brand {
  font-family: Syne, Outfit, sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  color: var(--paper);
  margin-bottom: 0.55rem;
}

.footer-blurb {
  font-size: 0.95rem;
  max-width: 28rem;
  line-height: 1.5;
}

.footer-heading {
  font-family: Syne, Outfit, sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(247, 244, 236, 0.55);
  margin-bottom: 0.75rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.footer-nav a {
  color: var(--paper);
  width: fit-content;
  opacity: 0.9;
}

.footer-nav a:hover { opacity: 1; }

.footer-meta {
  width: min(100%, 72rem);
  margin: 2rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(247, 244, 236, 0.12);
  font-size: 0.85rem;
  opacity: 0.65;
}

.footer-nap {
  font-size: 0.9rem;
  line-height: 1.55;
  margin-top: 0.75rem;
  opacity: 0.9;
}

.footer-nap a {
  color: var(--paper);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* SEO content blocks (home + intent) */
.seo-block {
  padding: clamp(3rem, 8vw, 5rem) clamp(1.75rem, 5vw, 3.5rem);
  background: var(--paper);
}

.seo-block.alt {
  background:
    radial-gradient(ellipse 80% 60% at 0% 0%, rgba(31, 107, 58, 0.1), transparent 55%),
    #eef3ef;
}

.seo-inner {
  width: min(100%, 72rem);
  margin: 0 auto;
}

.seo-block h2 {
  font-family: Syne, Outfit, sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  letter-spacing: -0.03em;
  color: var(--leaf-deep);
  margin-bottom: 0.65rem;
}

.seo-block .intro {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 40rem;
  margin-bottom: 1.5rem;
  line-height: 1.55;
}

.seo-grid {
  display: grid;
  gap: 1.5rem 2.5rem;
}

@media (min-width: 720px) {
  .seo-grid.two {
    grid-template-columns: 1fr 1fr;
  }
}

.seo-grid h3 {
  font-family: Syne, Outfit, sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
  color: var(--ink);
}

.seo-grid p,
.seo-block p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0.85rem;
}

.seo-grid a,
.seo-block a:not(.cta) {
  color: var(--leaf);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq-list {
  display: grid;
  gap: 1rem;
  max-width: 46rem;
}

.faq-list details {
  border-top: 1px solid rgba(18, 32, 24, 0.12);
  padding: 0.85rem 0;
}

.faq-list details:last-child {
  border-bottom: 1px solid rgba(18, 32, 24, 0.12);
}

.faq-list summary {
  font-family: Syne, Outfit, sans-serif;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  color: var(--ink);
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list details p {
  margin: 0.65rem 0 0.25rem;
}

.crumb {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.crumb a {
  color: var(--leaf);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.intent-cta {
  margin-top: 1.75rem;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
