:root {
  --field-pine: #153f35;
  --field-pine-dark: #0d2923;
  --field-clay: #c65f3a;
  --field-clay-dark: #8f3e26;
  --field-paper: #f3eee4;
  --field-paper-deep: #e6dccb;
  --field-ink: #1d2622;
  --field-muted: #5d675f;
  --field-line: #c9c1b4;
  --field-white: #fffdf8;
  --field-shadow: 0 18px 50px rgba(25, 37, 31, .12);
}

body {
  background: var(--field-paper);
  color: var(--field-ink);
  font-family: "Avenir Next", Avenir, "Trebuchet MS", Arial, sans-serif;
  line-height: 1.68;
}

h1,
h2,
h3 {
  font-family: "Arial Narrow", "Avenir Next Condensed", "Roboto Condensed", Arial, sans-serif;
  font-weight: 850;
  letter-spacing: -.045em;
  line-height: 1.02;
}

h1 { font-size: clamp(3rem, 7vw, 6.5rem); }
h2 { font-size: clamp(2.15rem, 4.5vw, 4.2rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); }

.shell { width: min(1240px, calc(100% - 56px)); }
.section { padding: 104px 0; }

.eyebrow {
  color: var(--field-clay-dark);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .2em;
}

.eyebrow.light,
.eyebrow.gold { color: #f1c5ab; }

.button {
  min-height: 52px;
  border: 2px solid var(--field-pine);
  border-radius: 3px;
  background: var(--field-pine);
  color: var(--field-white);
  padding: 12px 23px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem;
  box-shadow: 5px 5px 0 var(--field-clay);
}

.button:hover {
  background: var(--field-clay);
  border-color: var(--field-clay);
  box-shadow: 5px 5px 0 var(--field-pine-dark);
  transform: translate(-2px, -2px);
}

.button-gold {
  background: var(--field-clay);
  border-color: var(--field-clay);
  color: var(--field-white);
  box-shadow: 5px 5px 0 #7b301f;
}

.button-light,
.button-ghost,
.button-outline {
  background: transparent;
  color: var(--field-pine);
  border-color: var(--field-pine);
  box-shadow: none;
}

.page-hero .button-light { color: var(--field-white); border-color: #f3eee4; }

.site-header {
  position: relative;
  background: var(--field-paper);
  box-shadow: none;
  border-top: 7px solid var(--field-clay);
  border-bottom: 1px solid var(--field-line);
}

.utility-bar {
  background: var(--field-pine-dark);
  color: #e8eee9;
}

.utility-inner { min-height: 39px; }
.utility-links a:hover { color: #f1b99e; }
.nav-wrap { min-height: 98px; gap: 36px; }
.brand img { width: 278px; }

.nav-wrap nav a {
  color: var(--field-pine-dark);
  border: 0;
  padding: 13px 0;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .72rem;
  font-weight: 900;
}

.nav-wrap nav a:hover { color: var(--field-clay-dark); border: 0; }

.hero {
  min-height: 710px;
  background: var(--field-paper);
  color: var(--field-ink);
  border-bottom: 12px solid var(--field-clay);
}

.hero-image {
  inset: 0 0 0 48%;
  width: 52%;
  height: 100%;
  object-position: center;
  filter: saturate(.86) contrast(.98);
}

.hero-shade {
  background:
    linear-gradient(90deg, var(--field-paper) 0 44%, rgba(243, 238, 228, .93) 48%, rgba(243, 238, 228, .12) 68%, transparent 100%),
    linear-gradient(0deg, rgba(13, 41, 35, .25), transparent 42%);
}

.hero-content {
  width: 50%;
  min-height: 710px;
  padding-top: 72px;
  padding-bottom: 72px;
}

.hero-content:before {
  content: "PROSPER / BUYER SIDE";
  color: var(--field-clay-dark);
  margin-bottom: 25px;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .22em;
}

.hero-content h1,
.hero-content .eyebrow { color: var(--field-pine-dark); }
.hero-content h1 { max-width: 650px; font-size: clamp(3.25rem, 6vw, 6.2rem); }
.hero-lead { color: #33453d; max-width: 600px; font-size: 1.14rem; }
.hero-question { color: var(--field-clay-dark); font-family: inherit; font-weight: 800; font-style: normal; }
.hero-proof { gap: 8px; margin-top: 34px; }
.hero-proof span {
  border: 1px solid var(--field-line);
  border-radius: 2px;
  background: rgba(255,255,255,.48);
  color: var(--field-pine-dark);
  backdrop-filter: none;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .7rem;
}

.intro-section { background: var(--field-white); }
.split-copy { grid-template-columns: 1.05fr .95fr; gap: 105px; }
.split-copy h2 { color: var(--field-pine-dark); }
.prose { color: #47534d; }

.warm-section,
.sage-section,
.faq-section { background: var(--field-paper-deep); }

.navy-section {
  background: var(--field-pine-dark);
  color: #edf2ee;
  border-top: 9px solid var(--field-clay);
  border-bottom: 9px solid var(--field-clay);
}

.feature-grid { gap: 18px; }
.feature-card {
  grid-template-columns: 47% 53%;
  min-height: 350px;
  border: 1px solid var(--field-line);
  border-radius: 0;
  background: var(--field-white);
  box-shadow: none;
}

.feature-card:nth-child(4n+2),
.feature-card:nth-child(4n+3) { grid-template-columns: 53% 47%; }
.feature-card:nth-child(4n+2) img,
.feature-card:nth-child(4n+3) img { order: 2; }
.feature-body { padding: 34px; }
.feature-body h2 { color: var(--field-pine-dark); }
.feature-body a { color: var(--field-clay-dark); }

.service-group,
.info-card,
.process-grid article,
.related-grid a,
.directory-grid > a,
.community-directory > a {
  border-radius: 0;
  border-color: var(--field-line);
  background: rgba(255,253,248,.74);
}

.service-group:nth-child(odd),
.process-grid article:nth-child(even) { border-top: 6px solid var(--field-clay); }
.service-group h2,
.info-card h2,
.process-grid h3,
.related-grid span,
.directory-grid h2,
.community-directory h2 { color: var(--field-pine-dark); }

.community-list { gap: 0; border-top: 1px solid var(--field-line); }
.community-list a {
  min-height: 86px;
  border: 0;
  border-radius: 0;
  border-right: 1px solid var(--field-line);
  border-bottom: 1px solid var(--field-line);
  background: transparent;
}

.local-note,
.comparison-card,
.dark-card {
  border-radius: 0;
  background: var(--field-pine-dark);
  box-shadow: 10px 10px 0 var(--field-clay);
}

.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--field-pine-dark);
  padding: 68px 0 90px;
  border-bottom: 10px solid var(--field-clay);
}

.page-hero:after {
  content: "";
  position: absolute;
  width: 440px;
  height: 440px;
  right: -140px;
  bottom: -280px;
  border: 55px solid rgba(198, 95, 58, .33);
  border-radius: 50%;
}

.page-hero h1 { max-width: 900px; font-size: clamp(3.2rem, 6vw, 5.8rem); }
.page-lead { max-width: 760px; }
.breadcrumbs { margin-bottom: 38px; text-transform: uppercase; letter-spacing: .08em; }
.hero-side-note { border-radius: 0; border-left: 7px solid var(--field-clay); background: rgba(255,255,255,.07); }

.article-layout { grid-template-columns: minmax(0,1fr) 320px; gap: 90px; }
.article-prose h2 { color: var(--field-pine-dark); }
.article-prose .lede { font-family: inherit; font-size: 1.2rem; font-weight: 700; }
.sticky-card {
  border-radius: 0;
  border: 0;
  border-top: 7px solid var(--field-clay);
  background: var(--field-white);
  box-shadow: var(--field-shadow);
}

.step-stack article { grid-template-columns: 120px 1fr; border-color: var(--field-line); }
.step-stack span { color: var(--field-clay-dark); font-size: 1rem; }
.inline-links a { border-radius: 2px; }

.faq-layout { grid-template-columns: .9fr 1.1fr; }
.faq-list details { border-radius: 0; border-color: var(--field-line); background: var(--field-white); }
.faq-list summary { color: var(--field-pine-dark); font-family: inherit; font-size: 1.04rem; }
.faq-list summary:after { border-radius: 0; background: var(--field-clay); color: #fff; }

.contact-section { background: var(--field-pine); }
.contact-panel {
  border-radius: 0;
  background: var(--field-white);
  box-shadow: 12px 12px 0 var(--field-clay-dark);
}
.contact-panel h2 { color: var(--field-pine-dark); }
.contact-panel:after { content: "P"; color: rgba(21,63,53,.045); font-family: inherit; font-weight: 900; }

.field-guide-section,
.decision-board { background: var(--field-white); }

.field-guide-heading,
.decision-heading {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 48px;
}

.field-guide-heading h2,
.decision-heading h2 { color: var(--field-pine-dark); }
.field-guide-heading > div > p:last-child,
.decision-heading > div > p:last-child { color: var(--field-muted); max-width: 720px; margin: 18px 0 0; }

.field-grid,
.decision-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  border-top: 1px solid var(--field-line);
  border-left: 1px solid var(--field-line);
}

.field-grid article,
.decision-grid article {
  min-height: 265px;
  padding: 34px;
  border-right: 1px solid var(--field-line);
  border-bottom: 1px solid var(--field-line);
  background: var(--field-paper);
}

.field-grid article:nth-child(2),
.decision-grid article:nth-child(2) { background: var(--field-pine); color: #eef3ef; }
.field-grid article:nth-child(2) h3,
.decision-grid article:nth-child(2) h3 { color: #fff; }
.field-grid span,
.decision-grid span {
  display: block;
  color: var(--field-clay-dark);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .18em;
  margin-bottom: 45px;
}
.field-grid article:nth-child(2) span,
.decision-grid article:nth-child(2) span { color: #f1b99e; }
.field-grid h3,
.decision-grid h3 { color: var(--field-pine-dark); }
.field-grid p,
.decision-grid p { color: inherit; opacity: .8; margin: 16px 0 0; font-size: .94rem; }
.field-source { margin-top: 25px; color: var(--field-muted); font-size: .78rem; }
.field-source a { color: var(--field-clay-dark); text-decoration: underline; text-underline-offset: 3px; font-weight: 800; }

.service-blueprint { background: var(--field-paper); }
.service-blueprint .article-prose { max-width: 800px; }
.service-blueprint .large-check-list li { border-color: var(--field-line); }
.local-context-section { background: var(--field-paper-deep); }
.local-context-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
.local-context-grid h2 { color: var(--field-pine-dark); }
.local-context-grid .context-note { border-left: 8px solid var(--field-clay); padding: 6px 0 6px 28px; color: var(--field-muted); }

.community-field-note { background: var(--field-white); }
.community-note-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: start; }
.community-note-grid h2 { color: var(--field-pine-dark); }
.community-note-list { display: grid; gap: 0; border-top: 1px solid var(--field-line); }
.community-note-list article { display: grid; grid-template-columns: 70px 1fr; gap: 18px; padding: 24px 0; border-bottom: 1px solid var(--field-line); }
.community-note-list span { color: var(--field-clay-dark); font-weight: 900; letter-spacing: .12em; }
.community-note-list p { margin: 8px 0 0; color: var(--field-muted); }

.site-footer {
  background: #0a241e;
  border-top: 10px solid var(--field-clay);
  color: #bdcdc6;
}
.footer-brand img { background: var(--field-paper); border-radius: 0; padding: 8px; }
.footer-grid h2 { color: #f4eee5; }
.footer-grid li a:hover { color: #f1b99e; }

@media (max-width: 980px) {
  .hero-content { width: 58%; }
  .hero-image { left: 52%; right: 0; width: 48%; }
  .field-guide-heading,
  .decision-heading,
  .community-note-grid { grid-template-columns: 1fr; gap: 28px; }
  .field-grid,
  .decision-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 800px) {
  .shell { width: min(100% - 36px, 1240px); }
  .hero,
  .hero-content { min-height: 720px; }
  .hero-content { width: 100%; }
  .hero-image { inset: 0; width: 100%; }
  .hero-shade { background: linear-gradient(90deg, rgba(13,41,35,.95), rgba(13,41,35,.73)); }
  .hero-content:before,
  .hero-content h1,
  .hero-content .eyebrow,
  .hero-lead,
  .hero-question { color: #fff; }
  .hero-proof span { color: #fff; border-color: rgba(255,255,255,.4); background: rgba(0,0,0,.18); }
  .hero-actions .button-light { color: #fff; border-color: #fff; }
  .field-grid,
  .decision-grid,
  .local-context-grid { grid-template-columns: 1fr; }
  .field-grid article,
  .decision-grid article { min-height: 220px; }
}

@media (max-width: 590px) {
  .shell { width: min(100% - 28px, 1240px); }
  .section { padding: 70px 0; }
  .nav-wrap { min-height: 82px; }
  .brand img { width: 238px; }
  .hero-content h1 { font-size: 3.25rem; }
  .page-hero h1 { font-size: 3.15rem; }
  .feature-card,
  .feature-card:nth-child(4n+2),
  .feature-card:nth-child(4n+3) { grid-template-columns: 1fr; }
  .feature-card:nth-child(4n+2) img,
  .feature-card:nth-child(4n+3) img { order: 0; }
  .community-note-list article { grid-template-columns: 45px 1fr; }
  .contact-panel { box-shadow: 7px 7px 0 var(--field-clay-dark); }
}
