:root {
  --bg: #f7f8f5;
  --text: #1d2a1f;
  --muted: #4e6251;
  --panel: #ffffff;
  --line: #d7ded5;
  --accent: #2f6f4f;
  --accent-strong: #255b41;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}

.container {
  width: min(1000px, 92vw);
  margin: 0 auto;
}

.hero {
  padding: 3rem 0 2.25rem;
  background: linear-gradient(160deg, #e4efe8 0%, #d9e8ee 100%);
  border-bottom: 1px solid var(--line);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 1rem;
  align-items: start;
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
}

h2 {
  margin-top: 0;
  font-size: 1.6rem;
}

h3 {
  margin-top: 0;
  font-size: 1.15rem;
}

.lead {
  max-width: 65ch;
  margin: 1rem 0 1.5rem;
  color: var(--muted);
}

.button {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 0.65rem 1rem;
  border-radius: 10px;
}

.button:hover {
  background: var(--accent-strong);
}

.section {
  padding: 3.5rem 0;
}

.section.alt {
  background: #eef3ef;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.grid {
  display: grid;
  gap: 1rem;
}

.two-col {
  grid-template-columns: 2fr 1fr;
}

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

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem;
}

.hero-shots {
  position: relative;
  height: 280px;
}

.shot {
  position: absolute;
  margin: 0;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.35rem;
  width: 290px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.shot-back {
  right: 8px;
  top: 22px;
  transform: rotate(4deg);
}

.shot-front {
  right: 92px;
  top: 74px;
  transform: rotate(-3deg);
  z-index: 2;
}

.shot img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

ul {
  margin: 0;
  padding-left: 1.1rem;
}

footer {
  border-top: 1px solid var(--line);
  padding: 1.25rem 0;
  color: var(--muted);
}

@media (max-width: 840px) {
  .two-col,
  .three-col {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 2.25rem 0 1.75rem;
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-shots {
    height: auto;
    display: grid;
    gap: 0.75rem;
    margin-top: 0.5rem;
  }

  .shot {
    position: static;
    transform: none;
    width: 100%;
    max-width: 430px;
  }
}
