:root {
  --forest: #1f3d20;
  --forest-deep: #142817;
  --moss: #5b8c5a;
  --sage: #a4c3a2;
  --cream: #f5f1e8;
  --paper: #fffdf8;
  --ink: #1a1a1a;
  --slate: #4a5159;
  --gold: #c9a227;
  --line: rgba(31, 61, 32, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

button,
input,
select {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

.eyebrow {
  color: var(--moss);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 18px 42px;
  background: var(--forest-deep);
  color: var(--cream);
}

.site-nav .brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 700;
}

.site-nav div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 22px;
}

.site-nav a:not(.brand) {
  font-size: 13px;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: calc(100svh - 72px);
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(20, 40, 23, 0.9) 0%, rgba(20, 40, 23, 0.72) 40%, rgba(20, 40, 23, 0.18) 100%),
    url("assets/evergreen-hero.png") center / cover no-repeat;
  color: var(--cream);
}

.accent-rail {
  position: absolute;
  inset: 0 auto 0 0;
  width: 12px;
  background: var(--gold);
}

.hero-copy {
  width: min(650px, calc(100% - 56px));
  margin-left: 56px;
  padding: 72px 0;
}

.hero-copy h1 {
  margin: 10px 0 16px;
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.95;
}

.hero-copy p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(245, 241, 232, 0.88);
  font-size: 20px;
}

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

.button,
form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 11px 16px;
  font-weight: 800;
  cursor: pointer;
}

.button.primary,
form button {
  background: var(--gold);
  color: #18140a;
}

.button.secondary {
  border-color: rgba(245, 241, 232, 0.42);
  color: var(--cream);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.stats div {
  min-height: 128px;
  padding: 28px 20px;
  border-right: 1px solid var(--line);
  text-align: center;
}

.stats div:last-child {
  border-right: 0;
}

.stats strong {
  display: block;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1;
}

.stats span {
  display: block;
  margin-top: 10px;
  color: var(--moss);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section,
.inquiry {
  padding: 64px 56px;
}

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

.section-heading h2,
.inquiry h2 {
  color: var(--forest);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}

.three-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.three-columns article {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

.three-columns h3 {
  margin-bottom: 10px;
  color: var(--forest);
  font-size: 23px;
}

.three-columns p {
  margin-bottom: 0;
  color: var(--slate);
}

.focus-band {
  background: var(--forest);
  color: var(--cream);
}

.focus-band .eyebrow {
  color: var(--sage);
}

.focus-band h2 {
  color: var(--cream);
}

.split-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.split-list li {
  border-top: 3px solid var(--gold);
  background: rgba(245, 241, 232, 0.08);
  padding: 18px;
}

.process-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.process-row li {
  border-left: 4px solid var(--gold);
  background: var(--paper);
  padding: 18px;
  color: var(--forest-deep);
  font-weight: 800;
}

.process-row span {
  display: block;
  color: var(--moss);
  font-size: 12px;
}

.inquiry {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.inquiry p:not(.eyebrow) {
  color: var(--slate);
}

form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--forest-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

input,
select {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(31, 61, 32, 0.22);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  padding: 10px 12px;
  text-transform: none;
  letter-spacing: 0;
}

input:focus,
select:focus,
a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(201, 162, 39, 0.5);
  outline-offset: 3px;
}

.turnstile-field {
  min-height: 65px;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 56px;
  background: var(--forest-deep);
  color: rgba(245, 241, 232, 0.78);
}

.site-footer p {
  margin: 0;
}

.site-footer p:first-child {
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.simple-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(90deg, rgba(20, 40, 23, 0.92), rgba(20, 40, 23, 0.72)),
    url("assets/evergreen-hero.png") center / cover no-repeat;
}

.simple-panel {
  width: min(620px, 100%);
  background: var(--paper);
  border-top: 8px solid var(--gold);
  padding: 42px;
}

.simple-panel h1 {
  color: var(--forest);
  font-size: clamp(42px, 7vw, 72px);
  line-height: 1;
}

.simple-panel p:not(.eyebrow) {
  color: var(--slate);
}

@media (max-width: 860px) {
  .site-nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 24px;
  }

  .site-nav div {
    justify-content: flex-start;
  }

  .hero-copy {
    width: min(620px, calc(100% - 36px));
    margin-left: 36px;
  }

  .stats,
  .three-columns,
  .split-list,
  .process-row,
  .inquiry {
    grid-template-columns: 1fr;
  }

  .stats div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section,
  .inquiry,
  .site-footer {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 520px) {
  .hero {
    min-height: 620px;
  }

  .hero-copy {
    padding: 54px 0;
  }

  .hero-copy h1 {
    max-width: 10.5ch;
    font-size: 42px;
    line-height: 1.03;
  }

  .hero-copy p:not(.eyebrow) {
    max-width: 310px;
    font-size: 18px;
  }

  .section,
  .inquiry {
    padding-left: 20px;
    padding-right: 20px;
  }
}
