/* landing.css — page-level layout for the coming-soon landing site.
 * Built only from tokens.css custom properties (no hard-coded colours/type).
 * BEM blocks here (.hero, .site-header, …) are candidates to promote into the
 * <ui-*> component library later if reused. */

/* ── Page shell ─────────────────────────────────────────────── */
html { scroll-behavior: smooth; }

/* Fill the viewport and vertically center the header + hero as a group,
   pinning the footer to the bottom. The two `auto` margins split the
   leftover space evenly above the header and below the hero. */
body {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}
.site-header { margin-top: auto; }
main { margin-bottom: auto; }

.container {
  max-width: 760px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
/* Wider shell for the single-column landing page */
.container--lg { max-width: 880px; }

.section { padding-block: clamp(2.5rem, 6vw, 4rem); }
.section--tight { padding-block: clamp(1.5rem, 4vw, 2.5rem); }

/* Shared section heading */
.section__eyebrow {
  font: var(--font-label-large);
  color: var(--color-brand-primary);
  margin-bottom: 0.5rem;
}
.section__title {
  font: var(--font-headline-medium);
  color: var(--color-text-primary);
}
.section__lead {
  font: var(--font-body-large);
  color: var(--color-text-secondary);
  margin-top: 0.75rem;
  max-width: 52ch;
}

/* ── Header ─────────────────────────────────────────────────── */
.site-header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: 1.25rem;
}
.wordmark {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--color-text-primary);
}
.wordmark__mark {
  display: inline-flex;
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 1.25rem;
  overflow: hidden;
}
.wordmark__mark img { width: 100%; height: 100%; object-fit: cover; }
.wordmark__text { font: var(--font-headline-small); }
.wordmark__service { font-weight: 500; }

/* ── Hero ───────────────────────────────────────────────────── */
.hero { text-align: center; padding-block: clamp(2.5rem, 7vw, 4.5rem) clamp(1.5rem, 4vw, 2.5rem); }

.hero__title {
  font-family: var(--font-family-base);
  font-size: 3.25rem; /* 52px */
  line-height: 1.1;
  letter-spacing: 0;
  max-width: 18ch;
  margin-inline: auto;
}
.hero__title-coming { font-weight: 600; color: var(--color-text-muted); }
.hero__title-soon { font-weight: 800; color: var(--color-brand-primary); }
.hero__lead {
  font: var(--font-title-medium);
  font-weight: 500;
  color: var(--color-text-secondary);
  max-width: 46ch;
  margin: 1rem auto 0;
}
.hero__actions { margin-top: 1.75rem; display: inline-flex; }

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--color-border-subtle);
  text-align: center;
  padding-block: 2.5rem;
}
.site-footer__brand { font: var(--font-title-small); color: var(--color-text-primary); }
.site-footer__text { font: var(--font-body-medium); color: var(--color-text-muted); margin-top: 0.5rem; }
.site-footer__text a { color: var(--color-brand-link); }
