body.landing {
  max-width: none;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--mustard) 0%, var(--mustard-deep) 100%);
  color: var(--bg);
  padding: 4rem 1.5rem;
  text-align: center;
}

.hero-inner {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--bg);
  opacity: 0.75;
}

.wordmark {
  font-family: "Anton", "Inter", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  color: #fffaf0;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.15);
  font-size: clamp(3.5rem, 12vw, 7rem);
  line-height: 0.92;
  margin: 0;
  letter-spacing: 0.01em;
}

.wordmark-sub {
  display: block;
  font-size: 0.28em;
  letter-spacing: 0.5em;
  margin: 0.3em 0;
}

.tagline {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--bg);
  margin: 1.25rem 0 0.5rem;
}

.stats-line {
  color: var(--bg);
  opacity: 0.7;
  margin: 0 0 2.5rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  padding: 0.5rem 0.75rem 1rem;
}

.cta {
  flex: 1 1 200px;
  max-width: 240px;
  background: #fffaf0;
  color: #241a12;
  border-radius: 10px;
  padding: 1.25rem 1.25rem;
  text-decoration: none;
  border: 2px solid #241a12;
  box-shadow: 5px 5px 0 #241a12;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.cta:hover {
  transform: translate(3px, 3px);
  box-shadow: 2px 2px 0 #241a12;
}

.cta:active {
  transform: translate(5px, 5px);
  box-shadow: 0 0 0 #241a12;
}

.cta-icon {
  font-size: 1.8rem;
  line-height: 1;
  margin-bottom: 0.15rem;
}

.cta-title {
  font-family: "Anton", "Inter", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 1.15rem;
  color: #241a12;
}

.cta-sub {
  font-size: 0.8rem;
  color: #6b5a45;
}

.landing-footer {
  text-align: center;
  padding: 1.5rem;
  background: var(--bg);
}

@media (max-width: 480px) {
  .cta-row { flex-direction: column; align-items: stretch; }
  .cta { max-width: none; flex: none; }
}
