:root {
  /* Font families */

  --font-heading: "Safira March", Georgia, serif;
  --font-subheader: "Playfair Display", Georgia, serif;
  --font-body:
    "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, Arial,
    sans-serif;

  /* Sizes */

  --fs-body: 16px;
  --fs-h1: clamp(40px, 4vw, 80px);
  --fs-h2: clamp(28px, 3vw, 56px);
  --fs-h3: clamp(28px, 2.5vw, 56px);
}

/* ===============================
   BODY
================================ */

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 150%;
  font-weight: 300;
}

/* ===============================
   HEADINGS (Safira March)
================================ */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
}

h1 {
  font-size: var(--fs-h1);
}

h2 {
  font-size: var(--fs-h2);
}

h3 {
  font-size: var(--fs-h3);
}

/* ===============================
   SUBHEADERS
================================ */

.subheader,
.section-label,
.kicker {
  font-family: var(--font-subheader);
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ===============================
   TEXT
================================ */

p {
  margin-bottom: 1.2em;
}

strong {
  font-weight: 600;
}
