/*
 * Landing-page styles for the logged-out multi-kitchen root
 * (rendered by landing/show.html.erb via LandingController).
 *
 * Adds section labels and spacing for the "Sign in" / "Join"
 * two-tier layout. Uses design tokens from base.css. Reuses the
 * uppercase label treatment from auth.css for visual consistency.
 *
 * Collaborators: LandingController, base.css (button + token system)
 */

.landing {
  text-align: center;
}

.landing header {
  margin-bottom: 2rem;
}

/* Hero wordmark — the cursive mirepoix as the page heading. The masked glyph
 * has no font-size, so the hero scale comes from width here (height derives
 * from --wordmark-aspect); it inherits --text from the <h1>. Widths track the
 * prior 3.8rem / 2.6rem display-serif h1 at the same 720px breakpoint. */
.landing .page-header .wordmark {
  width: 22rem;
}

@media (max-width: 720px) {
  .landing .page-header .wordmark {
    width: 15rem;
  }
}

.landing-cta {
  margin: 1.25rem 0;
}

.landing-cta-tertiary {
  margin-top: 2.5rem;
}

.landing-cta-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 0.5rem;
}

.landing-empty-state {
  max-width: 36rem;
  margin: 4rem auto;
  padding: 2rem;
  text-align: center;
}

.landing-empty-state h1 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.landing-empty-state p {
  margin-bottom: 1rem;
  line-height: var(--leading-relaxed);
}
