/* ==========================================
   BASE STYLES - FOUNDATIONS
   Resets and foundational styles
========================================== */

* {
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  margin: 0;
  background: #ffffff;
  color: #212529;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  letter-spacing: -0.01em;
}

/* New header design - overrides default.
   Desktop: small gap below the fixed header (~14px). */
body {
  padding-top: 74px;
}

/* index.html has an extra fixed info bar below the header,
   so its content needs a bit more top room (desktop only –
   mobile spacing is handled in responsive.css). */
@media (min-width: 769px) {
  body.page-home {
    padding-top: 86px;
  }
}

h1, h2, h3, h4, p {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
}
