@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;600;700&family=Inter:wght@400;500&display=swap');

:root {
  --font-display: 'Archivo', system-ui, sans-serif;
  --font-body:    'Inter',   system-ui, sans-serif;

  --fs-xs:      clamp(.75rem,   1.5vw, .875rem);
  --fs-sm:      clamp(.875rem,  1.8vw, 1rem);
  --fs-base:    clamp(1rem,     2vw,   1.125rem);
  --fs-lg:      clamp(1.125rem, 2.2vw, 1.375rem);
  --fs-xl:      clamp(1.375rem, 3vw,   1.75rem);
  --fs-2xl:     clamp(1.75rem,  4vw,   2.5rem);
  --fs-display: clamp(2.5rem,   6vw,   4rem);

  --lh-tight: 1.2;
  --lh-base:  1.6;
  --lh-loose: 1.8;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: var(--lh-base);
  color: var(--bk);
  background-color: var(--w);
}

h1, h2, h3, h4, h5, h6,
.display, .heading {
  font-family: var(--font-display);
  line-height: var(--lh-tight);
  font-weight: 700;
  margin: 0;
}

h1, .h1 { font-size: var(--fs-display); }
h2, .h2 { font-size: var(--fs-2xl); }

h1, h2 { text-wrap: balance; }
h3, .h3 { font-size: var(--fs-xl); }
h4, .h4 { font-size: var(--fs-lg); }

p { margin: 0 0 var(--space-md); }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--roxo);
}

a {
  color: var(--roxo);
  text-decoration: none;
}

a:hover { text-decoration: underline; }
