:root {
  color-scheme: light;
  --soil: #342b22;
  --soil-soft: #6f5f4f;
  --leaf: #45643a;
  --leaf-dark: #263d27;
  --sprout: #8da95f;
  --sun: #f0b64b;
  --sky: #d9e7e8;
  --paper: #fbfaf6;
  --line: rgba(52, 43, 34, 0.2);
  --shadow: 0 24px 60px rgba(38, 61, 39, 0.18);
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--soil);
}

a {
  color: inherit;
}

.page-shell {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(217, 231, 232, 0.8) 0%, rgba(251, 250, 246, 0.96) 58%),
    var(--paper);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  align-items: center;
  gap: clamp(28px, 5vw, 76px);
  min-height: min(760px, 92vh);
  padding: clamp(28px, 5vw, 72px);
  padding-bottom: clamp(20px, 4vw, 48px);
}

.hero__content {
  max-width: 680px;
}

.family {
  margin: 0 0 22px;
  color: var(--leaf);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 10ch;
  margin-bottom: 26px;
  color: var(--leaf-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.4rem, 11vw, 8.9rem);
  line-height: 0.86;
  letter-spacing: 0;
}

.tagline {
  max-width: 54ch;
  margin-bottom: 34px;
  color: var(--soil-soft);
  font-size: clamp(1.15rem, 2.2vw, 1.48rem);
  line-height: 1.48;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--leaf-dark);
  border-radius: 8px;
  padding: 13px 18px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.button--primary {
  background: var(--leaf-dark);
  color: #fffdf8;
}

.button--secondary {
  background: rgba(255, 255, 255, 0.48);
  color: var(--leaf-dark);
}

.button:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 3px;
}

.hero__image {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(52, 43, 34, 0.14);
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: #dde7d5;
}

.hero__image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(280px, 1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
  padding: clamp(24px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: #fffdf8;
}

.intro h2 {
  margin-bottom: 14px;
  color: var(--leaf-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  letter-spacing: 0;
}

.intro p {
  max-width: 58ch;
  margin-bottom: 0;
  color: var(--soil-soft);
  font-size: 1.08rem;
  line-height: 1.58;
}

.signals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.signals li {
  min-height: 164px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: #fbfaf6;
  color: var(--soil-soft);
  line-height: 1.45;
}

.signals span {
  display: block;
  margin-bottom: 10px;
  color: var(--soil);
  font-weight: 900;
}

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

  .hero {
    min-height: auto;
  }

  .hero__content {
    max-width: 760px;
  }

  h1 {
    max-width: 8ch;
  }
}

@media (max-width: 680px) {
  .hero,
  .intro {
    padding: 24px;
  }

  h1 {
    font-size: clamp(3.75rem, 18vw, 5.2rem);
  }

  .actions,
  .button {
    width: 100%;
  }

  .signals {
    grid-template-columns: 1fr;
  }
}
