:root {
  --green-dark: #18352f;
  --green: #2f5d50;
  --earth: #b9825f;
  --cream: #f6f1e8;
  --stone: #e4ded3;
  --text: #1f2925;
  --muted: #66736d;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6vw;
  background: var(--cream);
}

.logo {
  font-weight: 700;
  text-decoration: none;
  color: var(--green-dark);
}

.site-nav a {
  margin-left: 28px;
  text-decoration: none;
  color: var(--green-dark);
  font-size: 0.95rem;
}

.hero {
  min-height: 78vh;
  display: flex;
  align-items: center;
  padding: 8vw 6vw;

  background: linear-gradient(
    135deg,
    #18352f 0%,
    #23483f 45%,
    #2f5d50 100%
  );

  color: var(--white);
}

.hero-content {
  max-width: 920px;
}

.eyebrow {
  letter-spacing: 0.03em;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--earth);
  margin-bottom: 12px;
}

.hero .eyebrow {
  color: var(--stone);
}

h1,
h2,
h3 {
  line-height: 1.15;
  margin-top: 0;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  max-width: 920px;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  color: var(--green-dark);
  margin-bottom: 24px;
}

h3 {
  font-size: 1.35rem;
  color: var(--green-dark);
}

.hero-text {
  font-size: 1.3rem;
  max-width: 640px;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.button {
  display: inline-block;
  padding: 13px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

.button.primary {
  background: var(--earth);
  color: var(--white);
}

.button.secondary {
  border: 1px solid var(--white);
  color: var(--white);
}

.section {
  padding: 90px 6vw;
  max-width: 1240px;
  margin: 0 auto;
}

.section-intro {
  max-width: 720px;
  font-size: 1.15rem;
  color: var(--muted);
}

.muted {
  background: var(--stone);
  max-width: none;
}

.muted > .eyebrow,
.muted > h2,
.muted > .steps {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}

.card-grid,
.steps,
.insight-list {
  display: grid;
  gap: 24px;
}

.card-grid {
  grid-template-columns: repeat(3, 1fr);
}

.card,
.insight-card {
  background: var(--white);
  padding: 32px;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(24, 53, 47, 0.08);
}

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

.steps {
  grid-template-columns: repeat(4, 1fr);
  max-width: 1240px;
  margin: 0 auto;
}

.steps div {
  border-left: 2px solid var(--earth);
  padding-left: 20px;
}

.about-preview .section-intro {
  margin-bottom: 24px;
}

.about-preview p:not(.eyebrow):not(.section-intro) {
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 22px;
}

.about-preview .text-link {
  display: inline-block;
  margin-top: 12px;
}

.about-preview {
  padding-bottom: 30px;
}

.insight-list {
  grid-template-columns: repeat(3, 1fr);
  margin: 36px 0 28px;
}

.insight-card {
  text-decoration: none;
  color: var(--text);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.insight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(24, 53, 47, 0.14);
}

.insight-card span {
  color: var(--earth);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.text-link {
  color: var(--green-dark);
  font-weight: 700;
  text-decoration: none;
}

.cta {
  margin: 40px 6vw 80px;
  padding: 70px;
  background: var(--green-dark);
  color: var(--white);
  border-radius: 28px;
  text-align: center;
}

.cta h2 {
  color: var(--white);
}

.cta p {
  max-width: 720px;
  margin: 0 auto 28px;
  font-size: 1.15rem;
}

.site-footer {
  padding: 32px 6vw;
  background: var(--green-dark);
  color: var(--stone);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.site-footer p {
  margin: 0;
}

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

  .site-nav a {
    margin-left: 0;
    margin-right: 18px;
    display: inline-block;
    margin-bottom: 8px;
  }

  .card-grid,
  .steps,
  .insight-list,
  .split {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 6vw;
  }

  .cta {
    padding: 44px 28px;
  }
}
