/* ----------------------------------------
   Typography
---------------------------------------- */
html {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  line-height: 1.5;
  font-size: 1rem;
  background-color: var(--color-bg);
  color: var(--color-text);
}

h1 {
	font-family: var(--font-heading);
	font-weight: 800;
	line-height: 1.2;
	font-size: clamp(2.5rem, 5vw, 3.5rem);
	margin-bottom: var(--space-md);
}
h2 {
	font-family: var(--font-heading);
	font-weight: 800;
	line-height: 1.3;
	font-size: clamp(2rem, 4vw, 2.5rem);
	margin-bottom: var(--space-md);
}
h3 {
	font-family: var(--font-heading);
	font-weight: 800;
	line-height: 1.4;
	font-size: clamp(1.5rem, 3vw, 1.75rem);
	margin-bottom: var(--space-sm);
}
h4 {
	font-family: var(--font-heading);
	font-weight: 400;
	line-height: 1.4;
	font-size: clamp(1.5rem, 3vw, 1.75rem);
	margin-bottom: var(--space-sm);
}
h4, h5, h6 {
	font-family: var(--font-heading);
	font-weight: 700;
	line-height: 1.4;
	font-size: clamp(1rem, 2vw, 1.25rem);
	margin-bottom: var(--space-sm);
}
p, li, ul {
	font-weight: 300;
	line-height: 1.6;
	margin-bottom: var(--space-sm);
	color: var(--color-text);
}
strong {
	font-weight: 800;
}
a {
	text-decoration: none;
	color: var(--color-text);
	transition: color 0.3s ease;
}
a:hover, a:focus {
	color: var(--color-accent);
}