.home-main { padding-bottom: var(--stack); }

.hero {
  position: relative;
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding-block: clamp(2rem, 5vw, 4rem);
}

/* The photography is portrait. Letting it keep that shape beside the wordmark
   reads as a lookbook; stretching it across a wide viewport turned it into an
   unrecognisable close-up of a waistband. */
.hero__media {
  aspect-ratio: 4 / 5;
  max-height: min(74vh, 640px);
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ground-2);
  justify-self: center;
  width: 100%;
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__content {
  display: grid;
  justify-items: start;
  padding-inline: var(--gutter);
  text-align: left;
}

.hero__wordmark { text-align: left; }

@media (min-width: 900px) {
  .hero { grid-template-columns: 1.05fr .95fr; }
  .hero--photo .hero__content { padding-left: clamp(var(--gutter), 4vw, 3.5rem); }
  /* Pull the photo toward the wordmark so the pair reads as one composition
     rather than two things at opposite ends of the screen. */
  .hero__media { max-width: 520px; justify-self: end; }
}

/* No photo yet: the wordmark carries the page on its own. */
.hero:not(.hero--photo) { min-height: min(70vh, 620px); place-content: center; }
.hero:not(.hero--photo) .hero__content { justify-items: center; text-align: center; }
.hero__motto { margin: 1.5rem 0 2rem; font-size: clamp(1rem, 2vw, 1.25rem); }

.home-section { padding-top: var(--stack); }
.about-block { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 6rem); align-items: start; }
.about-block p { margin: 0; font-size: clamp(1rem, 2vw, 1.25rem); }
.drop-list { max-width: 760px; margin-inline: auto; text-align: center; }
.drop-list > p { margin: .75rem auto 2rem; }
.signup-form { display: flex; align-items: flex-start; gap: .75rem; }
.signup-form .field { flex: 1; margin: 0; text-align: left; }
.form-status { min-height: 1.6em; margin-top: .75rem; }
.form-status[data-state="success"] { color: var(--sage); }
.form-status[data-state="error"] { color: var(--ink); }

@media (max-width: 720px) {
  .hero { min-height: 620px; }
  .hero__content { justify-items: start; text-align: left; padding-left: calc(var(--gutter) + 1.25rem); }
  .hero__wordmark { text-align: left; }
  .about-block { grid-template-columns: 1fr; padding-left: 1.25rem; }
  .signup-form { flex-direction: column; }
  .signup-form .field, .signup-form .btn { width: 100%; }
}
