/**
 * Paripoorn Reset
 * Minimal, modern reset. Not a full normalize — just enough to get a
 * consistent, predictable box model across browsers before typography/
 * layout rules apply.
 */

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

html {
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
}

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

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

body {
	min-height: 100vh;
	line-height: 1.5;
}

img,
picture,
svg,
video {
	max-width: 100%;
	display: block;
}

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

button {
	background: none;
	border: 0;
	padding: 0;
	cursor: pointer;
}

a {
	text-decoration: none;
	color: inherit;
}

table {
	border-collapse: collapse;
	width: 100%;
}

fieldset {
	border: 0;
	padding: 0;
	margin: 0;
}

:where(input, textarea, select, button) {
	appearance: none;
}
