/* ================================
   Design tokens (variables)
   ================================ */
:root {
  --font-sans: "Museo Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;

  /* Colors */
  --color-text: #4d4d4f;
  --color-link: #00847B;
  --color-link-hover: #004856;

  /* Typography scale */
  --font-size-base: 1rem;
  --line-height-base: 1.5;
}

/* ================================
   Base / Reset
   ================================ */
html {
  font-size: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--color-text);
}

/* ================================
   Elements
   ================================ */
a {
  color: var(--color-link);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

a:hover,
a:focus-visible {
  color: var(--color-link-hover);
}

/* Headings */
h1 {
  font-weight: 900;
  font-size: 2rem;
  line-height: 2.25rem;
}

h2 {
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 2rem;
}

/* ================================
   Layout utilities
   ================================ */
.container {
  max-width: 800px;
  margin-inline: auto;
  padding: 1rem;
}
