/* Fire n Grind base styles */

:root {
	--fng-bg: #0F0D09;
	--fng-gold: #C4993D;
	--fng-cream: #F2EDE4;
	--fng-body: #D4C5A9;
	--fng-muted: #9A8E7A;
	--fng-brown: #6B5A3E;
	--fng-divider: rgba(196, 153, 61, 0.08);
	--fng-divider-strong: rgba(196, 153, 61, 0.18);

	--fng-font-heading: 'Playfair Display', Georgia, serif;
	--fng-font-body: 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--fng-font-label: 'Helvetica Neue', Helvetica, Arial, sans-serif;

	--fng-radius: 4px;
	--fng-tap: 44px;
}

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

html {
	-webkit-text-size-adjust: 100%;
	background-color: var(--fng-bg);
}

body {
	margin: 0;
	background-color: var(--fng-bg);
	color: var(--fng-body);
	font-family: var(--fng-font-body);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--fng-font-heading);
	color: var(--fng-cream);
	font-weight: 400;
	margin: 0 0 0.5em;
	line-height: 1.2;
}

p {
	margin: 0 0 1em;
}

a {
	color: var(--fng-gold);
	text-decoration: none;
	transition: color 150ms ease;
}

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

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

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

::selection {
	background: var(--fng-gold);
	color: var(--fng-bg);
}

.fng-default__inner {
	max-width: 760px;
	margin: 0 auto;
	padding: 80px 24px;
}

.fng-default h1 {
	font-size: clamp(32px, 5vw, 48px);
	margin-bottom: 24px;
}

.fng-label {
	font-family: var(--fng-font-label);
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	font-size: 12px;
	color: var(--fng-muted);
}
