:root {
  --green: #1e4d2b;
  --green-mid: #59a130;
  --kelly: #59a130;
  --sage: #b5d6a0;
  --leaf: #7fb069;
  --cream: #faf7f0;
  --ink: #1c1c1a;
  --muted: #5b5f58;
  --line: #e2ddd0;
  --amber: #c88a2e;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  background: var(--cream);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font: 16px/1.65 -apple-system, "Segoe UI", Inter, system-ui, sans-serif;
  text-rendering: optimizeLegibility;
}

a {
  color: var(--green-mid);
  text-underline-offset: 0.18em;
  text-decoration-thickness: 0.08em;
}

a:hover {
  color: var(--green);
}

:focus-visible {
  outline: 3px solid var(--kelly);
  outline-offset: 3px;
}

img,
svg {
  max-width: 100%;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button {
  cursor: pointer;
}

[hidden] {
  display: none !important;
}

.site-shell,
.header-inner,
.footer-inner,
.main-inner {
  width: min(100% - 56px, 1100px);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 50;
  top: 12px;
  left: 12px;
  padding: 9px 14px;
  color: #fff;
  background: var(--green);
  border-radius: 6px;
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

.utility-bar {
  color: #dbe8dc;
  background: var(--green);
  font-size: 13.5px;
}

.utility-bar .site-shell {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 6px 18px;
  padding-block: 5px;
}

.utility-bar a {
  color: #fff;
  font-weight: 700;
}

.site-header {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  min-height: 78px;
  align-items: center;
  gap: 18px;
  padding-block: 12px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.wordmark span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: var(--green);
  border-radius: 50% 50% 44% 44%;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.wordmark strong {
  font-size: 17px;
  font-weight: 800;
}

.site-nav {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  font-size: 14.5px;
  font-weight: 600;
}

.site-nav a {
  color: var(--ink);
  text-decoration: none;
}

.site-nav a[aria-current="page"],
.site-nav a:hover {
  color: var(--green);
  text-decoration: underline;
  text-decoration-color: var(--leaf);
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.header-cta {
  padding: 10px 17px;
  color: #fff;
  background: var(--green);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
  white-space: nowrap;
}

.header-cta:hover {
  color: #fff;
  background: #143b20;
}

.hero-band {
  overflow: hidden;
  background: var(--sage);
  line-height: 0;
}

.hero-band img {
  display: block;
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

.hero-band-empty {
  height: clamp(92px, 14vw, 170px);
}

main {
  min-height: 45vh;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.main-inner {
  max-width: 840px;
  padding-block: 0 58px;
}

.main-inner.main-wide {
  max-width: 1100px;
}

.breadcrumbs {
  padding-block: 18px 22px;
  color: var(--muted);
  font-size: 13px;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs li:not(:last-child)::after {
  margin-left: 9px;
  color: var(--leaf);
  content: "/";
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-family: -apple-system, "Segoe UI", Inter, system-ui, sans-serif;
  line-height: 1.15;
  text-wrap: balance;
}

h1 {
  margin: 0 0 20px;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

h2 {
  margin: 38px 0 12px;
  font-size: 26px;
  font-weight: 750;
  letter-spacing: -0.018em;
}

h3 {
  margin: 26px 0 8px;
  font-size: 19px;
  font-weight: 700;
}

p,
ul,
ol,
dl {
  margin-block: 0 16px;
}

main ul,
main ol {
  padding-left: 22px;
}

main li {
  margin-bottom: 6px;
}

main a {
  color: var(--green-mid);
}

main strong {
  font-weight: 700;
}

.prose {
  max-width: 100%;
}

.prose > :first-child,
.page-intro > :first-child,
.section-heading > :first-child {
  margin-top: 0;
}

.prose h2 {
  margin-top: 38px;
}

.prose h3 {
  margin-top: 26px;
}

.prose blockquote {
  margin: 0 0 18px;
  padding: 14px 18px;
  background: var(--cream);
  border-left: 3px solid var(--leaf);
  border-radius: 0 7px 7px 0;
}

.prose blockquote > :last-child {
  margin-bottom: 0;
}

.prose hr {
  margin: 32px 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.prose code {
  padding: 2px 5px;
  background: var(--cream);
  border-radius: 3px;
  font-size: 0.9em;
}

.eyebrow {
  margin-bottom: 7px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow a {
  color: inherit;
  text-decoration: none;
}

.lede,
.page-intro > p:not(.eyebrow),
.home-intro .prose > p {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
}

.home-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.65fr);
  gap: 28px;
  align-items: start;
  padding-block: 22px 8px;
}

.hero-note,
.category-card,
.listing-card,
.contact-panel,
.submission-form,
.empty-state,
.directory-filter {
  padding: 26px 28px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.hero-note {
  align-self: end;
  border-top: 4px solid var(--leaf);
}

.hero-note p:not(.eyebrow) {
  color: var(--muted);
}

.triad {
  padding: 52px 0;
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.triad .site-shell {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.triad figure {
  min-width: 0;
  margin: 0;
}

.triad figure > a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.triad img,
.triad-placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  margin-bottom: 15px;
  object-fit: cover;
  background: var(--sage);
  border-radius: 12px;
  box-shadow: 0 10px 26px -18px rgba(30, 77, 43, 0.65);
}

.triad figcaption {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.6;
}

.triad figcaption b {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 17.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.triad figcaption span {
  display: block;
}

.page-intro {
  max-width: 800px;
  padding-block: 20px 34px;
  border-bottom: 1px solid var(--line);
}

.page-intro h1,
.profile-header h1,
.editorial-page > .prose > h1 {
  max-width: 22ch;
}

.section-block,
.directory-section,
.pricing-section {
  padding-top: 46px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 20px;
}

.section-heading h2,
.filter-heading h2 {
  margin-top: 0;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.category-card h2 {
  margin-top: 0;
  font-size: 22px;
}

.category-card p:not(.eyebrow, .category-count) {
  color: var(--muted);
}

.category-count {
  margin-bottom: 0;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.city-link-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.city-link-list a {
  display: block;
  padding: 11px 14px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
}

.guide-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.guide-panel > div,
.basis-box,
.credential-panel,
.credential-note {
  padding: 26px 28px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.guide-panel h2 {
  margin-top: 0;
}

.guide-panel li + li,
.compact-list li + li {
  margin-top: 6px;
}

.empty-state {
  max-width: 760px;
  margin-top: 46px;
  border-left: 4px solid var(--leaf);
}

.empty-state h2 {
  margin-top: 0;
}

.directory-filter {
  margin-bottom: 22px;
}

.filter-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.filter-heading h2 {
  margin-bottom: 0;
}

.text-button {
  padding: 5px;
  color: var(--green);
  background: transparent;
  border: 0;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.search-field,
.submission-form label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-width: 0;
  padding: 11px 13px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 450;
}

textarea {
  resize: vertical;
}

.filter-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.filter-groups fieldset {
  min-width: 0;
  margin: 0;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.filter-groups legend {
  padding-inline: 5px;
  font-size: 13px;
  font-weight: 800;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 145px), 1fr));
  gap: 7px 12px;
  max-height: 192px;
  overflow: auto;
}

.check-list label {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 13px;
}

.check-list input {
  flex: 0 0 auto;
  width: 16px;
  margin-top: 5px;
}

.filter-status,
.muted {
  color: var(--muted);
}

.filter-status {
  margin: 14px 0 0;
  font-size: 13px;
  font-weight: 700;
}

.listing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.listing-card {
  position: relative;
  min-width: 0;
}

.listing-card.featured-card {
  border-left: 5px solid var(--green);
  box-shadow: 0 10px 26px -18px rgba(30, 77, 43, 0.65);
}

.listing-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 13px;
}

.listing-card h2 {
  margin: 0;
  font-size: 24px;
}

.listing-card h2 a {
  color: var(--ink);
  text-decoration: none;
}

.listing-card h2 a:hover {
  color: var(--green);
  text-decoration: underline;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 6px;
}

.badge {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 4px 9px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.badge-featured,
.badge-paid {
  color: var(--green);
  background: var(--cream);
  border-color: var(--green);
}

.badge-verified {
  color: var(--green);
  background: #edf5e8;
  border-color: var(--leaf);
}

.badge-caution {
  color: var(--muted);
  background: var(--cream);
  border-color: var(--line);
}

.claim-strip {
  margin-block: 14px;
  padding: 10px 12px;
  color: #765016;
  background: #fff4d6;
  border-left: 4px solid var(--amber);
  font-size: 13px;
  font-weight: 700;
}

.claim-strip a {
  color: inherit;
}

.claim-strip-large {
  margin-block: 24px 32px;
  padding: 14px 16px;
  font-size: 15px;
}

.organic-basis {
  display: -webkit-box;
  overflow: hidden;
  margin-block: 13px 18px;
  color: var(--muted);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.card-facts,
.contact-panel dl,
.credential-details {
  margin: 0;
}

.card-facts > div,
.contact-panel dl > div,
.credential-details > div {
  display: grid;
  grid-template-columns: minmax(96px, 0.36fr) 1fr;
  gap: 10px;
  padding-block: 9px;
  border-top: 1px solid var(--line);
}

dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

dd {
  min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  margin-top: 20px;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
}

.button-primary {
  color: #fff;
  background: var(--green);
}

.button-primary:hover {
  color: #fff;
  background: #143b20;
}

.button-secondary {
  color: var(--green);
  background: var(--cream);
  border-color: var(--green);
}

.button-secondary:hover {
  color: #fff;
  background: var(--green);
}

.text-link {
  font-weight: 800;
}

.business-profile,
.editorial-page {
  padding-top: 20px;
}

.profile-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.4fr);
  gap: 24px;
}

.profile-section {
  padding-block: 24px;
  border-top: 1px solid var(--line);
}

.basis-box {
  margin-block: 20px;
}

.basis-box h3 {
  margin-top: 0;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.basis-box p {
  margin: 0;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tag-list li {
  padding: 6px 10px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
}

.credential-panel {
  margin-block: 16px;
  border-color: var(--leaf);
}

.credential-panel h2 {
  margin-top: 0;
}

.source-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.source-list li {
  padding-block: 16px;
  border-top: 1px solid var(--line);
}

.source-list p {
  margin: 6px 0;
  color: var(--muted);
}

.contact-panel {
  position: sticky;
  top: 16px;
  align-self: start;
  min-width: 0;
  border-top: 4px solid var(--leaf);
  box-shadow: 0 10px 26px -18px rgba(30, 77, 43, 0.65);
}

.contact-panel h2 {
  margin-top: 0;
  font-size: 22px;
}

.contact-panel .button {
  width: 100%;
  margin-top: 16px;
}

.pricing-section {
  max-width: none;
}

.proposal-banner {
  display: grid;
  gap: 5px;
  margin-bottom: 24px;
  padding: 14px 16px;
  color: #765016;
  background: #fff4d6;
  border: 1px solid var(--amber);
  border-radius: 7px;
}

.proposal-banner strong {
  font-size: 12px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.proposal-banner span {
  color: var(--ink);
}

.table-scroll {
  max-width: 100%;
  margin-bottom: 18px;
  overflow-x: auto;
  border-radius: 10px;
}

table {
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
  background: #fff;
  font-size: 14.5px;
  text-align: left;
}

.pricing-section table {
  min-width: 832px;
}

th,
td {
  padding: 12px;
  border: 1px solid var(--line);
  vertical-align: top;
}

thead th {
  color: var(--muted);
  background: var(--cream);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

tbody th {
  min-width: 192px;
  background: var(--cream);
}

tbody th > span,
tbody td > strong,
tbody td > span {
  display: block;
}

tbody th > span {
  font-size: 19px;
  font-weight: 700;
}

tbody th small {
  display: inline-block;
  margin-block: 6px;
  padding: 3px 7px;
  color: var(--green);
  border: 1px solid var(--green);
  border-radius: 999px;
  text-transform: uppercase;
}

tbody th p,
.excludes {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 450;
}

td ul {
  margin: 0;
  padding-left: 18px;
}

td li + li {
  margin-top: 5px;
}

.recommended-tier {
  box-shadow: inset 4px 0 var(--leaf);
}

.credential-note {
  margin-top: 16px;
}

.credential-note h3,
.credential-note p {
  margin-bottom: 6px;
}

.launch-offer {
  margin-top: 16px;
}

.submission-form {
  position: relative;
  max-width: 800px;
  margin-top: 32px;
  box-shadow: 0 10px 26px -18px rgba(30, 77, 43, 0.65);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.submission-form > label,
.submission-form > button,
.submission-form > p {
  margin-top: 16px;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-note,
.noscript-note {
  color: var(--muted);
  font-size: 14px;
}

.form-result {
  min-height: 1.6em;
  font-weight: 700;
}

.form-success {
  color: var(--green);
}

.form-error {
  color: #8b2d2d;
}

.standalone-result {
  max-width: 720px;
  min-height: 100vh;
  padding-block: 12vh;
}

.final {
  padding: 52px 0;
  color: #fff;
  background: var(--green);
  text-align: center;
}

.final h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 29px;
  letter-spacing: -0.02em;
}

.final p {
  margin-bottom: 22px;
  color: #c3d8c6;
}

.final a {
  display: inline-block;
  padding: 14px 26px;
  color: #12331b;
  background: var(--leaf);
  border-radius: 7px;
  font-weight: 700;
  text-decoration: none;
}

.final a:hover {
  color: #12331b;
  background: var(--sage);
}

.site-footer {
  padding: 38px 0;
  color: #9fb5a3;
  background: #14301c;
  font-size: 13.5px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 24px;
}

.footer-inner p {
  max-width: 520px;
  margin-bottom: 5px;
  color: #9fb5a3;
}

.footer-name {
  color: #fff !important;
  font-size: 17px;
  font-weight: 700;
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 16px;
}

.footer-inner a {
  color: #9fb5a3;
}

@media (max-width: 900px) {
  .header-inner {
    grid-template-columns: auto auto;
  }

  .site-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
  }

  .header-cta {
    justify-self: end;
  }

  .listing-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-shell,
  .header-inner,
  .footer-inner,
  .main-inner {
    width: min(100% - 36px, 1100px);
  }

  .utility-bar .site-shell {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 8px;
  }

  .header-inner {
    min-height: 0;
    gap: 14px;
  }

  .wordmark strong {
    font-size: 15px;
  }

  .header-cta {
    padding: 9px 12px;
    font-size: 13px;
  }

  .site-nav {
    gap: 8px 14px;
    font-size: 14px;
  }

  .hero-band-empty {
    height: 88px;
  }

  h1 {
    font-size: 30px;
  }

  h2,
  .final h2 {
    font-size: 22px;
  }

  .main-inner {
    padding-bottom: 44px;
  }

  .home-intro,
  .guide-panel,
  .filter-groups,
  .form-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .triad {
    padding-block: 40px;
  }

  .triad .site-shell {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }

  .profile-layout {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    position: static;
  }

  .listing-card-head {
    flex-direction: column;
  }

  .badge-row {
    justify-content: flex-start;
  }

  .footer-inner nav {
    justify-content: flex-start;
  }
}

@media (max-width: 420px) {
  .site-shell,
  .header-inner,
  .footer-inner,
  .main-inner {
    width: min(100% - 28px, 1100px);
  }

  .wordmark span {
    width: 36px;
    height: 36px;
  }

  .hero-note,
  .category-card,
  .listing-card,
  .contact-panel,
  .submission-form,
  .empty-state,
  .directory-filter,
  .guide-panel > div,
  .basis-box,
  .credential-panel,
  .credential-note {
    padding: 20px;
  }

  .filter-heading,
  .card-facts > div,
  .contact-panel dl > div,
  .credential-details > div {
    grid-template-columns: 1fr;
  }

  .filter-heading {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
