:root {
  color-scheme: light;
  --ink: #17211f;
  --muted: #5d6a68;
  --paper: #f7f6f1;
  --surface: #ffffff;
  --line: #d9ddd5;
  --forest: #1f5b4f;
  --jade: #2c8b78;
  --gold: #aa762d;
  --clay: #a55743;
  --mist: #e9eee9;
  --shadow: 0 18px 45px rgba(23, 33, 31, 0.12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 16px clamp(18px, 4vw, 54px);
  background: rgba(247, 246, 241, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand,
.site-nav,
.hero-actions,
.section-actions,
.contact-band {
  display: flex;
  align-items: center;
}

.brand {
  flex: 0 0 auto;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  width: 52px;
  height: 40px;
  place-items: center;
  border-radius: 8px;
  background: var(--forest);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 850;
  letter-spacing: 0;
}

.brand-text {
  line-height: 1;
}

.site-nav {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: clamp(10px, 1.6vw, 22px);
  color: var(--muted);
  font-size: 0.91rem;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover,
.text-link:hover {
  color: var(--forest);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(300px, 0.72fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
  min-height: 78vh;
  padding: clamp(54px, 8vw, 108px) clamp(20px, 4vw, 56px);
  background:
    linear-gradient(120deg, rgba(31, 91, 79, 0.14), transparent 42%),
    linear-gradient(340deg, rgba(170, 118, 45, 0.14), transparent 34%),
    var(--paper);
}

.hero.subpage {
  min-height: auto;
  padding-top: clamp(48px, 7vw, 88px);
  padding-bottom: clamp(48px, 7vw, 82px);
}

.hero-content,
.section,
.site-footer {
  max-width: 1180px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 930px;
  margin-bottom: 24px;
  font-size: clamp(2.5rem, 5.8vw, 5.55rem);
  line-height: 0.99;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.95rem, 3.6vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.12rem;
}

p {
  color: var(--muted);
}

.hero-copy {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.12rem;
}

.positioning-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.positioning-strip span {
  padding: 10px 13px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--forest);
  font-weight: 760;
}

.hero-actions,
.section-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--forest);
  border-radius: 8px;
  font-weight: 750;
  text-decoration: none;
}

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

.button.secondary {
  background: transparent;
  color: var(--forest);
}

.text-link {
  color: var(--forest);
  font-weight: 780;
  text-decoration: none;
}

.hero-panel,
.note-box {
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-panel dl,
.hero-panel dd {
  margin: 0;
}

.hero-panel div + div {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.hero-panel dt,
.contact-list span,
.report-list span,
.stat-label {
  color: var(--clay);
  font-size: 0.77rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-panel dt {
  margin-bottom: 6px;
}

.section {
  margin: 0 auto;
  padding: clamp(56px, 8vw, 92px) clamp(20px, 4vw, 56px);
}

.section-heading {
  max-width: 790px;
  margin-bottom: 36px;
}

.band {
  max-width: none;
  background: var(--mist);
}

.band .section-heading,
.band .feature-grid,
.band .report-list,
.band .split,
.band .content-stack {
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
}

.card-grid,
.feature-grid,
.report-list,
.content-grid {
  display: grid;
  gap: 16px;
}

.card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card-grid.three,
.report-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.content-grid.two,
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
  gap: clamp(24px, 5vw, 68px);
  align-items: start;
}

.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.feature-link,
.report-list article,
.content-card {
  min-height: 210px;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.feature-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.feature-link span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--jade);
  font-weight: 850;
}

.feature-link:hover {
  border-color: rgba(31, 91, 79, 0.45);
}

.check-list,
.plain-list,
.contact-list,
.steps {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.plain-list li {
  padding: 16px 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font-weight: 690;
}

.steps li {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(31, 91, 79, 0.2);
}

.steps span {
  color: var(--jade);
  font-weight: 850;
}

.content-stack {
  display: grid;
  gap: 20px;
}

.report-list article {
  min-height: 220px;
}

.report-list span {
  display: inline-block;
  margin-bottom: 18px;
}

.contact-band {
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
}

.contact-band > div {
  max-width: 740px;
}

.contact-list {
  min-width: min(100%, 420px);
}

.contact-list li {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.contact-list a {
  overflow-wrap: anywhere;
}

.site-footer {
  margin: 0 auto;
  padding: 30px clamp(20px, 4vw, 56px) 44px;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}

.site-footer p {
  margin-bottom: 6px;
}

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

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

  .hero,
  .content-grid.two,
  .split {
    grid-template-columns: 1fr;
  }

  .card-grid.four,
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .card-grid.three,
  .report-list {
    grid-template-columns: 1fr;
  }

  .contact-band {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .card-grid.four,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .steps li,
  .contact-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
