/* Reset and shared design tokens extracted from the static website. */
*,
*::before,
*::after {
	box-sizing: border-box;
}

:root {
	--cream: #f8f6f1;
	--cream2: #efe8d6;
	--stone: #d9d6cf;
	--dark: #1a1a18;
	--navy: #0f1820;
	--navy2: #1c2b3a;
	--navy3: #243447;
	--mid: #5a5752;
	--muted: #8a8580;
	--wood: #c9b28c;
	--blue: #4f7296;
	--blue2: #3a5877;
	--blue3: #6b94b8;
	--serif: "Cormorant Garamond", Georgia, serif;
	--sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--ease: cubic-bezier(0.4, 0, 0.2, 1);
	--ease-out: cubic-bezier(0, 0, 0.2, 1);
	--announce-height: 42px;
	--safe-bottom: env(safe-area-inset-bottom, 0px);
	--safe-top: env(safe-area-inset-top, 0px);
}

html {
	font-size: 16px;
	scroll-behavior: smooth;
	-webkit-font-smoothing: antialiased;
}

body {
	margin: 0;
	background: var(--cream);
	color: var(--dark);
	font-family: var(--sans);
	font-weight: 300;
	overflow-x: hidden;
}

body.site-menu-open {
	overflow: hidden;
}

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

a {
	color: inherit;
}

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

button {
	cursor: pointer;
}

.site-main {
	min-height: 60vh;
	padding: calc(var(--announce-height) + 128px) 24px 64px;
}

.site-container {
	width: min(1120px, 100%);
	margin-inline: auto;
}

.entry {
	padding: clamp(28px, 6vw, 64px);
	background: rgba(255, 255, 255, 0.56);
	border: 1px solid rgba(138, 115, 75, 0.14);
}

.entry-title {
	margin: 0 0 24px;
	font-family: var(--serif);
	font-size: clamp(42px, 7vw, 76px);
	font-weight: 300;
	line-height: 1;
}

.entry-content {
	font-size: 17px;
	line-height: 1.75;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.screen-reader-text:focus {
	z-index: 100000;
	top: 12px;
	left: 12px;
	width: auto;
	height: auto;
	padding: 12px 16px;
	clip: auto;
	background: #fff;
	color: #111;
	font-weight: 500;
	text-decoration: none;
}

@media (max-width: 767px) {
	.site-main {
		padding: calc(var(--announce-height) + 108px) 16px 48px;
	}
}
