/* =========================================
   BASE / RESET
========================================= */

:root {
	--cream: #f4ead9;
	--cream-soft: #fbf4e8;
	--cream-deep: #d9c7ab;
	--ink: #151514;
	--ink-soft: #2b2925;
	--muted: #6f6659;
	--line: rgba(21, 21, 20, 0.16);
	--accent: #ff6b57;
	--accent-2: #27c7d4;
	--section-pad: clamp(24px, 5vw, 82px);
	--app-height: 100svh;
	--ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
	box-sizing: border-box;
}

html,
body {
	width: 100%;
	height: 100%;
	margin: 0;
	background: var(--cream);
	color: var(--ink);
	font-family: "Arial Narrow", "Helvetica Neue Condensed", "Liberation Sans Narrow", "Nimbus Sans Narrow", Arial, Helvetica, sans-serif;
	overflow: hidden;
	overscroll-behavior: none;
}

body {
	position: fixed;
	inset: 0;
	text-rendering: geometricPrecision;
	-webkit-font-smoothing: antialiased;
}

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

button {
	cursor: pointer;
}

h1,
h2,
p {
	margin: 0;
}

::selection {
	background: var(--ink);
	color: var(--cream);
}
