:root {
  color-scheme: light;
  font-family: Arial, Helvetica, sans-serif;
  color: #202b25;
  background: #f7f8f3;
  line-height: 1.6;
}

* { box-sizing: border-box; }
body { margin: 0; }
a { color: inherit; }
a:focus-visible { outline: 3px solid #547b42; outline-offset: 5px; }
header, main, footer { width: min(1100px, 90%); margin-inline: auto; }

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 28px;
  border-bottom: 1px solid #dce1d7;
}
.brand { font-size: 21px; font-weight: 700; text-decoration: none; }
.brand span { display: block; color: #59665d; font-size: 12px; font-weight: 400; }
nav { display: flex; gap: 24px; }
nav a { font-size: 14px; text-decoration: none; }
nav a:hover { text-decoration: underline; text-underline-offset: 5px; }

.hero { max-width: 780px; padding-block: 90px; }
.eyebrow { color: #526747; font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; }
h1 { margin: 20px 0; font-size: clamp(44px, 7vw, 80px); line-height: 1.05; letter-spacing: -3px; }
.hero > p:not(.eyebrow) { max-width: 520px; color: #59665d; font-size: 18px; }
.button { display: inline-flex; gap: 28px; margin-top: 18px; padding: 13px 22px; border-radius: 8px; background: #263f30; color: white; text-decoration: none; }
.button:hover { background: #395840; }

section { scroll-margin-top: 24px; }
.section-heading { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 20px; }
h2 { margin: 0; font-size: 26px; letter-spacing: -0.7px; }
.section-heading p, .card-content > p:last-child, .about p { color: #59665d; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card { overflow: hidden; border: 1px solid #dce1d7; border-radius: 14px; background: #fff; }
.card-cover { display: block; width: 100%; height: auto; aspect-ratio: 2 / 3; object-fit: contain; background: #202b25; }
.card-content { padding: 24px; }
.card-content .eyebrow { margin-top: 0; font-size: 10px; }
h3 { margin: 12px 0; font-size: 21px; line-height: 1.3; }
.card-content > p:last-child { margin-bottom: 0; font-size: 14px; }
.about { max-width: 670px; padding-block: 72px; }
footer { padding-block: 24px; border-top: 1px solid #dce1d7; color: #59665d; font-size: 13px; }

@media (max-width: 700px) {
  .site-header { align-items: flex-start; flex-direction: column; gap: 16px; }
  .hero { padding-block: 56px; }
  .section-heading { align-items: flex-start; flex-direction: column; gap: 0; }
  .review-grid { grid-template-columns: 1fr; }
  .about { padding-block: 48px; }
}
