/* Layered tweaks beyond Tailwind utilities. Keep this file small. */

html { scroll-behavior: smooth; }

body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Slightly tighter optical sizing for serif headings */
h1, h2, h3 {
  font-feature-settings: "kern", "liga", "calt";
  font-variation-settings: "opsz" 36;
}

/* Higher-contrast focus ring than Tailwind's default for keyboard users */
:focus-visible {
  outline: 2px solid #1a3a5c;
  outline-offset: 3px;
}

/* Print: hide nav/footer, leave readable body */
@media print {
  header, footer, nav { display: none; }
  body { color: #000; }
}
