/* Still Their Dad: apex landing page. Plain static CSS, no build step.
   Warm plum palette to match the help site. No em dashes anywhere. */

:root {
  --plum: #8a3d63;
  --plum-deep: #5a2742;
  --paper: #fbf6f1;
  --ink: #2a2226;
  --muted: #6d6066;
  --line: #e8dcd4;
  --card: #ffffff;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
}

.wrap {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

h1, h2 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

a { color: var(--plum); }

/* Hero */
.hero {
  background: linear-gradient(135deg, #6f3050, var(--plum));
  color: #fdf6f1;
  text-align: center;
  padding: 5rem 0 4.5rem;
  border-top: 8px solid #c178a0;
}
.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.6rem, 7vw, 4.5rem);
  color: #fdf6f1;
}
.hero .tagline {
  margin: 0 auto 2rem;
  max-width: 38rem;
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  color: #f1dce7;
}

/* Buttons */
.cta {
  display: inline-block;
  background: #fdf6f1;
  color: var(--plum-deep);
  font-weight: 600;
  text-decoration: none;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}
.cta:hover { transform: translateY(-2px); box-shadow: 0 7px 20px rgba(0, 0, 0, 0.24); }
.cta-secondary {
  background: var(--plum);
  color: #fdf6f1;
  box-shadow: none;
}

/* Sections */
main { padding: 3.5rem 0; }
.intro p {
  font-size: 1.15rem;
  max-width: 44rem;
  margin: 0 auto 3rem;
  text-align: center;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.1rem;
  margin-bottom: 3.5rem;
}
.card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  padding: 1.4rem 1.5rem;
  transition: transform 0.12s ease, box-shadow 0.12s ease, border-color 0.12s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(90, 39, 66, 0.12);
  border-color: var(--plum);
}
.card h2 { margin: 0 0 0.5rem; font-size: 1.3rem; color: var(--plum-deep); }
.card p { margin: 0; color: var(--muted); }

.approach {
  text-align: center;
  background: #f5ece5;
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 2.5rem 1.75rem;
}
.approach h2 { margin-top: 0; font-size: 1.7rem; }
.approach p { max-width: 44rem; margin: 0 auto 1.75rem; }

/* Footer */
footer {
  border-top: 1px solid var(--line);
  padding: 2.5rem 0;
  margin-top: 1rem;
}
.disclaimer {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 44rem;
  margin: 0 auto 1rem;
  text-align: center;
}
.foot-links { text-align: center; margin: 0; }
.foot-links a { font-weight: 600; }
