/* CSS Reset */
*, *::before, *::after {
	box-sizing: border-box;
}

body, h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd {
	margin: 0;
}

ul[role="list"], ol[role="list"] {
	list-style: none;
	padding: 0;
	margin: 0;
}

html:focus-within {
	scroll-behavior: smooth;
}

body {
	min-height: 100vh;
	text-rendering: optimizeSpeed;
	font-size: 1.0625rem; /* 17px – Figma spec */
	line-height: 1.8; /* 30.6px / 17px – Figma spec */
	font-family: var(--font-body);
	color: var(--color-primary);
	background-color: var(--color-surface-white);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

a:not([class]) {
	text-decoration-skip-ink: auto;
}

img, picture {
	max-width: 100%;
	display: block;
	height: auto;
}

input, button, textarea, select {
	font: inherit;
}

/* Global Typography */
h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-heading);
	color: var(--color-primary-dark-1);
	line-height: 1.2;
	font-weight: 700;
}

h1 { font-size: var(--font-size-h1); font-weight: 800; line-height: 1; } /* Figma: 72px/72px */
h2 { font-size: var(--font-size-h2); font-weight: 800; } /* Figma: ExtraBold */
h3 { font-size: var(--font-size-h3); }
h4 { font-size: var(--font-size-h4); font-weight: 600; }
h5 { font-size: var(--font-size-h5); font-weight: 600; }
h6 { font-size: var(--font-size-h6); font-weight: 500; }

p {
	margin-bottom: var(--spacing-4);
	color: var(--color-primary-dark-2);
}

a {
	color: var(--color-primary-light-1);
	text-decoration: none;
	transition: color var(--transition-fast);
}

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

/* Utility Classes */
.text-center { text-align: center; }
.text-primary { color: var(--color-primary); }
.text-accent { color: var(--color-accent); }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }

/* Accessibility: Reduced Motion */
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}
