:root {
  --paper: #f7f4ef;
  --paper-2: #eeeae2;
  --ink: #1d2825;
  --muted: #66716d;
  --green: #315c4d;
  --green-dark: #23443a;
  --sage: #dce6df;
  --line: rgba(29, 40, 37, .14);
  --white: #fffdf9;
  --shadow: 0 24px 60px rgba(32, 45, 40, .13);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

a { color: inherit; }

.site-header {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
}

.brand-mark {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid var(--green);
  border-radius: 50%;
  color: var(--green);
  font-size: 15px;
}

nav {
  display: flex;
  gap: 30px;
}

nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 13px;
}

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

.hero {
  width: min(1240px, calc(100% - 48px));
  min-height: 720px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  align-items: center;
  gap: 70px;
  padding: 74px 0 90px;
}

.hero-copy { padding-left: 30px; }

.eyebrow {
  margin: 0 0 22px;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .18em;
}

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

h1 {
  max-width: 650px;
  margin-bottom: 26px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 5.1vw, 78px);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.045em;
}

h1 em {
  color: var(--green);
  font-style: normal;
}

.lead {
  max-width: 580px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.button {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 14px 19px;
  color: var(--white);
  background: var(--green);
  border-radius: 3px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease;
}

.button:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

.hero-photo {
  position: relative;
  min-height: 590px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #e7e9e5;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  min-height: 590px;
  display: block;
  object-fit: cover;
  object-position: 67% center;
}

.photo-note {
  position: absolute;
  left: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  color: var(--ink);
  background: rgba(255, 253, 249, .9);
  backdrop-filter: blur(8px);
  font-size: 11px;
  font-weight: 700;
  border-radius: 2px;
}

.dot {
  width: 7px;
  height: 7px;
  display: inline-block;
  border-radius: 50%;
  background: #4c8c67;
}

.intro {
  padding: 120px max(24px, calc((100% - 1240px) / 2)) 100px;
  background: var(--green);
  color: var(--white);
}

.section-label {
  color: inherit;
  opacity: .62;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  margin-top: 60px;
}

.intro h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4.4vw, 62px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -.035em;
}

.intro-text {
  padding-top: 8px;
  color: rgba(255, 253, 249, .78);
  font-size: 16px;
}

.intro-text p + p { margin-top: 28px; }

.cards {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  padding: 90px 0 120px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  min-height: 350px;
  padding: 28px;
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
}

.card-accent {
  background: var(--sage);
  border-color: transparent;
}

.card-number {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .12em;
}

.icon {
  margin: 55px 0 24px;
  color: var(--green);
  font-family: Georgia, serif;
  font-size: 38px;
  line-height: 1;
}

.card h3 {
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.1;
}

.card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.quote {
  padding: 120px 24px 130px;
  text-align: center;
  background: var(--paper-2);
}

.quote-mark {
  margin-bottom: -18px;
  color: var(--green);
  font-family: Georgia, serif;
  font-size: 90px;
  line-height: 1;
}

blockquote {
  max-width: 850px;
  margin: 0 auto 26px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 55px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -.035em;
}

blockquote strong {
  color: var(--green);
  font-weight: 500;
}

.quote > p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--muted);
}

.facts {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  padding: 110px 0 120px;
}

.fact-list {
  margin-top: 55px;
  border-top: 1px solid var(--line);
}

.fact {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 20px;
  padding: 29px 0;
  border-bottom: 1px solid var(--line);
}

.fact > span {
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
}

.fact h3 {
  margin-bottom: 5px;
  font-size: 18px;
}

.fact p {
  max-width: 730px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.final {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto 70px;
  padding: 68px 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: var(--green-dark);
  color: var(--white);
}

.final .eyebrow { color: #b9d0c5; }

.final h2 {
  max-width: 850px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(31px, 3.3vw, 49px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.03em;
}

.circle-link {
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 50%;
  text-decoration: none;
  font-size: 20px;
  transition: background .2s ease, transform .2s ease;
}

.circle-link:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-2px);
}

.site-footer {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  padding: 35px 0 45px;
  display: flex;
  justify-content: space-between;
  gap: 60px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 11px;
}

.site-footer strong {
  color: var(--ink);
  font-size: 12px;
  letter-spacing: .08em;
}

.site-footer p {
  max-width: 430px;
  margin: 6px 0 0;
}

.sources {
  max-width: 430px;
  text-align: right;
}

.sources span { display: block; margin-bottom: 5px; }

.sources a {
  color: var(--green);
  font-weight: 700;
}

@media (max-width: 900px) {
  .site-header { width: min(100% - 32px, 1240px); }
  nav { display: none; }

  .hero {
    width: min(100% - 32px, 1240px);
    grid-template-columns: 1fr;
    gap: 45px;
    padding: 55px 0 70px;
  }

  .hero-copy { padding-left: 0; }
  .hero-photo, .hero-photo img { min-height: 470px; }

  .intro { padding: 85px 24px; }
  .intro-grid { grid-template-columns: 1fr; gap: 30px; margin-top: 40px; }

  .cards { grid-template-columns: 1fr; padding: 65px 0 80px; }
  .card { min-height: auto; }

  .facts { padding: 75px 0 80px; }

  .final {
    width: min(100% - 32px, 1240px);
    padding: 45px 30px;
  }

  .site-footer { flex-direction: column; gap: 25px; }
  .sources { text-align: left; }
}

@media (max-width: 560px) {
  .site-header { height: 68px; }
  h1 { font-size: 43px; }
  .lead { font-size: 15px; }

  .hero-photo, .hero-photo img { min-height: 390px; }
  .hero-photo img { object-position: 68% center; }

  .intro h2 { font-size: 38px; }
  .quote { padding: 85px 20px; }
  blockquote { font-size: 34px; }

  .fact { grid-template-columns: 48px 1fr; gap: 8px; }

  .final { align-items: flex-start; }
  .circle-link { margin-top: 4px; }
}
