.home-screen {
  display: grid;
  grid-template-rows: auto 1fr;
  width: min(100%, 1500px);
  height: 100svh;
  min-height: 560px;
  margin: 0 auto;
  padding: clamp(1.25rem, 3vw, 2.5rem);
}

.home-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.home-choice {
  display: grid;
  place-items: center;
  align-content: center;
  gap: clamp(2rem, 5vw, 4.5rem);
  padding-bottom: clamp(1rem, 6vh, 5rem);
}

.choice-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.interior-header {
  display: flex;
  justify-content: center;
  padding: clamp(1.25rem, 4vw, 2.5rem) var(--space-2) var(--space-3);
}

.page-shell {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  padding: clamp(2.25rem, 6vw, 5.5rem) 0 var(--space-6);
}

.page-hero {
  display: grid;
  gap: var(--space-3);
  padding-bottom: clamp(3rem, 8vw, 5.5rem);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3);
}

.wide-section {
  grid-column: 1 / -1;
}

@media (max-width: 720px) {
  .home-screen {
    min-height: 620px;
  }

  .choice-buttons {
    width: 100%;
  }

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