:root {
  color-scheme: light;
  --ink: #18201b;
  --muted: #5e685f;
  --page: #fbfcf8;
  --panel: #ffffff;
  --soft: #f0f3ea;
  --line: #d9dfd2;
  --green: #164b35;
  --green-light: #237550;
  --copper: #a95724;
  --gold: #c58a29;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(115deg, rgba(35, 117, 80, 0.055) 0 18%, transparent 18% 100%),
    linear-gradient(90deg, rgba(169, 87, 36, 0.05) 1px, transparent 1px),
    var(--page);
  background-size: auto, 86px 86px;
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px max(22px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(217, 223, 210, 0.9);
  background: rgba(251, 252, 248, 0.94);
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--green);
  font-weight: 800;
  text-decoration: none;
}

.mark {
  display: block;
  width: 46px;
  height: auto;
}

.nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

.nav a {
  text-decoration: none;
}

.nav a:hover {
  color: var(--green);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 58px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 88px 22px 70px;
}

.hero-copy {
  max-width: 690px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--copper);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  color: var(--green);
  font-size: clamp(42px, 7vw, 74px);
  line-height: 0.97;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  color: var(--green);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 21px;
}

.lead {
  max-width: 670px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  background: var(--green-light);
  color: #ffffff;
}

.button.primary:hover {
  background: var(--green);
}

.button.secondary {
  border-color: var(--line);
  background: #ffffff;
  color: var(--green);
}

.button.secondary:hover {
  border-color: var(--green);
}

.signal-panel {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 6px 34px 6px 34px;
  background:
    repeating-linear-gradient(98deg, rgba(22, 75, 53, 0.08) 0 1px, transparent 1px 18px),
    linear-gradient(140deg, rgba(22, 75, 53, 0.08), transparent 45%),
    linear-gradient(320deg, rgba(169, 87, 36, 0.13), transparent 54%),
    #ffffff;
  box-shadow: 0 24px 55px rgba(22, 42, 28, 0.12);
}

.signal-panel::before {
  content: "";
  position: absolute;
  right: 22px;
  bottom: 58px;
  width: 252px;
  height: 94px;
  background: url("pheasant-tail-mark.svg") center / contain no-repeat;
  opacity: 0.2;
  transform: rotate(-18deg);
}

.field-card {
  position: relative;
  max-width: 360px;
  padding: 24px;
  border: 1px solid rgba(22, 75, 53, 0.24);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 10px 10px 0 rgba(35, 117, 80, 0.09);
}

.field-label {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--copper);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field-card strong {
  display: block;
  color: var(--green);
  font-size: 27px;
  line-height: 1.08;
}

.field-card p {
  margin: 16px 0 0;
  color: var(--muted);
}

.panel-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 34px;
}

.panel-grid span {
  display: flex;
  align-items: center;
  min-height: 82px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 5px 18px 5px 18px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--green);
  font-size: 20px;
  font-weight: 800;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 64px 22px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.cards {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 18px;
  align-items: stretch;
}

article {
  position: relative;
  min-height: 245px;
  padding: 54px 24px 24px;
  border: 1px solid var(--line);
  border-radius: 6px 22px 6px 22px;
  background: var(--panel);
}

article:nth-child(2) {
  margin-top: 34px;
}

article:nth-child(3) {
  margin-top: 68px;
}

.card-kicker {
  position: absolute;
  top: 18px;
  left: 24px;
  color: rgba(169, 87, 36, 0.42);
  font-size: 25px;
  font-weight: 900;
}

article p,
.story-copy p,
.contact p {
  margin: 0;
  color: var(--muted);
}

article a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--green-light);
  font-weight: 800;
  text-decoration: none;
}

article a:hover {
  color: var(--green);
}

.story,
.contact {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1fr);
  gap: 52px;
  align-items: start;
}

.story {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.story-copy {
  display: grid;
  gap: 18px;
  font-size: 18px;
}

.contact {
  align-items: center;
}

.contact .button {
  justify-self: end;
}

.footer {
  display: flex;
  max-width: var(--max);
  margin: 0 auto;
  padding: 32px 22px 48px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 900px) {
  .hero,
  .story,
  .contact {
    grid-template-columns: 1fr;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  article:nth-child(2),
  article:nth-child(3) {
    margin-top: 0;
  }

  .contact .button {
    justify-self: start;
  }
}

@media (max-width: 620px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }

  .hero,
  .section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero {
    padding-top: 48px;
  }

  .signal-panel {
    min-height: 330px;
  }

  .panel-grid {
    grid-template-columns: 1fr;
    margin-top: 46px;
  }

  .footer {
    padding-left: 18px;
    padding-right: 18px;
  }
}
