@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap");

/* ==========================================
   DESIGN TOKENS
========================================== */

:root {
	--color-navy: #101720;
	--color-navy-deep: #0b111a;
	--color-navy-soft: #171f2b;

	--color-gold: #e69d00;
	--color-gold-soft: #f2b640;

	--color-white: #ffffff;
	--color-text: #1d2430;
	--color-muted: #6d7480;
	--color-border: #e4e5e8;

	--color-section-light: #f4f2ef;
	--color-section-cool: #f5f7fa;

	--font-heading: "Playfair Display", Georgia, serif;
	--font-body: "Inter", Arial, sans-serif;

	--container-width: 1180px;
	--container-narrow: 960px;

	--shadow-card:
		0 8px 24px rgba(15, 23, 42, 0.08);

	--transition-base:
		180ms ease;
}

/* ==========================================
   RESET
========================================== */

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	padding: 0;

	background: var(--color-white);
	color: var(--color-text);

	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.7;

	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

button,
input,
textarea,
select {
	font: inherit;
}

a {
	color: inherit;
}

p {
	margin-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin-top: 0;
	font-family: var(--font-heading);
}

/* ==========================================
   GLOBAL LAYOUT
========================================== */

.container {
	width: min(100% - 48px, var(--container-width));
	margin-inline: auto;
}

.container-narrow {
	width: min(100% - 48px, var(--container-narrow));
	margin-inline: auto;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

@media (max-width: 768px) {

	.container,
	.container-narrow {
		width: min(100% - 32px, var(--container-width));
	}
}