/* =====================================================================
   nav-minimal.css — Docokids landing navigation (.site-nav--minimal).

   Conversion landings follow Krug's ~1:1 attention ratio: the nav carries
   ONLY the logo + ONE primary CTA. No menu links, no login link — every
   non-CTA link is an exit.

   This is an ADDITIVE modifier on the shared .site-nav (components/nav.css):
   it reuses the bar chrome (sticky, paper bg, hairline, brand sizing) and
   only changes spacing for the logo↔CTA layout. The home keeps using the
   plain .site-nav and is untouched. Every value is a var(--token).
   ===================================================================== */
.site-nav--minimal .container {
  /* logo on the left, single CTA on the right — no middle nav-links group */
  justify-content: space-between;
}

/* The minimal nav has no menu links or login link, so the only action is the
   primary CTA. Keep the actions block tight on the right. */
.site-nav--minimal .nav-actions {
  margin-left: auto;
}
