/* =================================
   GLOBAL TYPOGRAPHY
================================= */

body {
  font-family: 'Inter', sans-serif;
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--color-text);
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: var(--color-primary);
  letter-spacing: 0.5px;
  line-height: 1.2;
}


/* Footer typography */
footer {
  color: #fff;
  font-size: var(--fs-small);
}

.footer-contacts p {
  margin: 5px 0;
}

.footer-contacts a {
  color: #fff;
  text-decoration: underline;
}

.footer-contacts a:hover {
  color: var(--color-primary);
}

html {
  -webkit-text-size-adjust: 100%;
}