:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #182423;
  background: #f8faf7;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
}

.page-shell {
  min-height: 100vh;
}

.hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  min-height: 76vh;
  background: #eef4ed;
}

.hero-media {
  display: grid;
  place-items: center;
  min-height: 360px;
  background:
    linear-gradient(145deg, rgba(37, 86, 78, 0.86), rgba(114, 143, 102, 0.78)),
    url("https://images.unsplash.com/photo-1506126613408-eca07ce68773?auto=format&fit=crop&w=1200&q=80");
  background-position: center;
  background-size: cover;
}

.mark {
  display: grid;
  grid-template-columns: repeat(2, 92px);
  grid-template-rows: repeat(2, 92px);
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
}

.mark span {
  display: block;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
}

.mark span:nth-child(2),
.mark span:nth-child(3) {
  background: rgba(232, 244, 214, 0.9);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 720px;
  padding: clamp(40px, 8vw, 96px);
}

.eyebrow {
  margin: 0 0 18px;
  color: #5e6b48;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  color: #123632;
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.lead {
  max-width: 620px;
  margin-bottom: 32px;
  color: #344641;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.65;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid #244b45;
  border-radius: 6px;
  font-weight: 750;
  text-decoration: none;
}

.primary {
  background: #244b45;
  color: #ffffff;
}

.secondary {
  background: transparent;
  color: #244b45;
}

.details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #d8e0d6;
}

.details article {
  min-height: 190px;
  padding: 34px;
  background: #ffffff;
}

.details h2 {
  margin-bottom: 12px;
  color: #244b45;
  font-size: 1.1rem;
}

.details p {
  margin-bottom: 0;
  color: #4c5a55;
  line-height: 1.55;
}

@media (max-width: 820px) {
  .hero,
  .details {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: 280px;
  }

  .hero-copy {
    padding: 34px 22px 48px;
  }

  .mark {
    grid-template-columns: repeat(2, 72px);
    grid-template-rows: repeat(2, 72px);
  }

  .details article {
    min-height: auto;
    padding: 28px 22px;
  }
}

