html {
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--clr-ink);
  background-color: var(--clr-bg);
  font-weight: 400;
}

/* Editorial headlines — heavy, uppercase, tight tracking */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.95;
  color: var(--clr-ink);
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 {
  font-size: var(--fs-h3);
  letter-spacing: 0;
  line-height: 1.15;
}

p {
  max-width: 60ch;
  line-height: 1.55;
  color: var(--clr-ink-soft);
}

strong, b { font-weight: 600; color: var(--clr-ink); }

a {
  color: var(--clr-ink);
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--clr-accent);
}

::selection {
  background-color: var(--clr-ink);
  color: var(--clr-bg);
}

/* Eyebrow label — small uppercase tag */
.eyebrow {
  display: inline-block;
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--clr-ink-soft);
}

/* Page transition */
body {
  opacity: 0;
  animation: pageEnter 0.4s ease forwards;
}

body.leaving {
  animation: pageLeave 0.2s ease forwards;
}

@keyframes pageEnter {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes pageLeave {
  from { opacity: 1; }
  to { opacity: 0; }
}
