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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--tt-white);
	color: var(--tt-ink-900);
	font-family: var(--tt-font-body);
	font-size: 1.0625rem;
	line-height: 1.65;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

body.menu-open {
	overflow: hidden;
}

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

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

button,
a {
	-webkit-tap-highlight-color: transparent;
}

a {
	color: var(--tt-blue-600);
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.18em;
}

a:hover {
	color: var(--tt-navy-800);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 0.75em;
	color: var(--tt-navy-950);
	font-family: var(--tt-font-heading);
	font-weight: 700;
	letter-spacing: -0.015em;
	line-height: 1.08;
}

h1 {
	font-size: clamp(2.314rem, 5.34vw, 3.56rem);
}

h2 {
	font-size: clamp(1.953rem, 4.185vw, 2.558rem);
}

h3 {
	font-size: clamp(1.488rem, 2.88vw, 1.8rem);
}

h4 {
	font-size: 1.348rem;
}

p {
	margin: 0 0 1.25em;
}

ul,
ol {
	padding-left: 1.25rem;
}

::selection {
	background: var(--tt-gold-200);
	color: var(--tt-navy-950);
}

:focus-visible {
	outline: 3px solid var(--tt-gold-500);
	outline-offset: 4px;
}

.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;
}

.screen-reader-text:focus {
	position: fixed;
	z-index: 99999;
	top: 1rem;
	left: 1rem;
	width: auto;
	height: auto;
	padding: 0.75rem 1rem;
	margin: 0;
	clip: auto;
	background: var(--tt-white);
	color: var(--tt-navy-950);
	font-weight: 700;
	box-shadow: var(--tt-shadow-md);
}

.skip-link {
	border-radius: var(--tt-radius-sm);
}

.site {
	min-height: 100vh;
	overflow: clip;
}

.site-main {
	min-height: 50vh;
}

.entry-content > * {
	max-width: var(--tt-content);
	margin-left: auto;
	margin-right: auto;
}

.entry-content > .alignwide {
	max-width: var(--tt-container);
}

.entry-content > .alignfull {
	max-width: none;
}
