/* Home only. The shared chrome stays in site.css. */

.home-body {
  background: var(--black);
}

.home-body .site-head,
.home-body .site-foot {
  position: relative;
  z-index: 2;
}

.home-body .home {
  position: relative;
  z-index: 1;
  min-height: calc(100svh - 52px);
}

.cover-hero {
  display: grid;
  align-content: center;
  gap: 1.5rem;
  width: min(100% - 2rem, 55rem);
  min-height: calc(100svh - 52px);
  margin-inline: auto;
  padding: 2rem 0;
}

.cover-copy {
  text-align: center;
}

.cover-copy h1 {
  max-width: 45rem;
  margin: 0 auto 0.75rem;
  color: #ffffff;
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  line-height: 1.07;
  letter-spacing: -0.03em;
}

.cover-copy p {
  max-width: 44rem;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.8);
  font-size: 17px;
  line-height: 1.47;
}

.cover-doors {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.door {
  display: flex;
  min-height: 7.75rem;
  flex-direction: column;
  justify-content: center;
  padding: 1.25rem 1.3rem;
  border-radius: var(--radius-lg);
  color: inherit;
  text-decoration: none;
}

.door:hover {
  text-decoration: none;
}

.door:active {
  transform: scale(0.98);
}

.door-title {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.door p {
  max-width: 26rem;
  margin: 0;
  font-size: 17px;
  line-height: 1.35;
}

.door-light {
  background: var(--canvas);
  color: var(--ink);
}

.door-light p {
  color: var(--ink-muted-80);
}

.door-dark {
  background: #272729;
  color: #ffffff;
  border: 1px solid #2a2a2c;
}

.door-dark p {
  color: #cccccc;
}

.door:focus-visible {
  outline: 2px solid var(--primary-focus);
  outline-offset: 3px;
}

@media (min-width: 735px) {
  .cover-doors {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
  .door {
    min-height: 9rem;
    padding: 1.5rem 1.6rem;
  }
}
