/* ============================================
   BASE — reset, typography, container, utilities.
   Loaded on every page after tokens.css.
   ============================================ */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ----- Subtle link styling for footer terms/privacy etc. ----- */
.footer-link {
  color: inherit;
  text-decoration: underline;
  opacity: 0.8;
}

/* ----- Utility: visibility toggle (JS-driven) ----- */
.is-hidden { display: none !important; }
