/* ============================================================
   Homepage — hero, collage, mission, newsletter
   ============================================================ */

.home-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 600px;
}

.hh-text {
  background: var(--forest-800);
  padding: 76px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hh-text h1 {
  color: var(--cream);
  font-size: clamp(2.6rem, 4.4vw, 4.1rem);
}

.hh-text p {
  color: oklch(1 0 0 / 0.84);
  font-size: 1.18rem;
  max-width: 460px;
  margin-top: 22px;
}

.hh-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  padding: 12px;
  background: var(--cream-2);
}

.hh-collage .ph {
  border-radius: 14px;
}

/* ─────────── Newsletter ─────────── */
.news-form {
  display: flex;
  gap: 10px;
}

.news-form input {
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid oklch(1 0 0 / 0.25);
  background: oklch(1 0 0 / 0.08);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 1rem;
  min-width: 260px;
}

.news-form input::placeholder {
  color: oklch(1 0 0 / 0.5);
}

.news-form input:focus {
  outline: none;
  border-color: var(--ochre-soft);
}

/* ─────────── Responsive ─────────── */
@media (max-width: 980px) {
  .home-hero {
    grid-template-columns: 1fr;
  }

  .hh-collage {
    min-height: 380px;
  }
}

@media (max-width: 760px) {
  .news-form {
    flex-direction: column;
  }

  .news-form input {
    min-width: 0;
  }
}
