/* * General Header or Site Header */

/* * General footer or site footer styles */

footer {
	/* https://css-tricks.com/a-clever-sticky-footer-technique/ */
	position: sticky;
	top: 100vh;
}

.site-footer {
	background: var(--color-gold);
	color: var(--color-footer-text);
	padding-block: 2.5rem 1rem;
	@media screen and (min-width: 1025px) {
		padding-block: 3.5rem 1.875rem;
	}
}

.site-footer__inner {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
	width: 100%;
}

.site-footer__main {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	align-items: start;
	padding-inline: max(1.5rem, 50vw - var(--layout-max-width) / 2);

	& a {
		color: var(--color-footer-text);
		text-decoration: underline;
		&:hover,
		&:focus {
			text-decoration: none;
		}
		&:visited {
			color: var(--color-footer-text);
		}
	}

	@media screen and (min-width: 1025px) {
		grid-template-columns: auto minmax(10rem, 14rem) auto 1fr;
		gap: 1.5rem 3em;
		align-items: start;
	}
}

.site-footer__brand {
	line-height: 0;
}

.site-footer__logo {
	display: block;
	width: 122px;
	color: inherit;

	& svg {
		display: block;
		width: 100%;
		height: auto;
	}

	@media screen and (min-width: 1025px) {
		width: 165px;
	}
}

.site-footer__description {
	margin: 0;
	max-width: 14rem;
	color: var(--color-footer-text);
	font-family: var(--font-sans);
	font-size: 13.6px;
	font-weight: 400;
	line-height: 21px;
}

.site-footer__heading {
	margin: 0;
	color: var(--color-navy);
	font-family: var(--font-display);
	font-size: 15.2px;
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: 0;
	text-transform: uppercase;
}

.footer-navigation {
	display: flex;
	flex-direction: column;
	gap: 14px;

	& .menu-footer-menu-container > ul,
	& .menu > ul,
	& ul {
		list-style: none;
		margin: 0;
		padding: 0;
		display: flex;
		flex-direction: column;
		gap: 8px;
		align-items: flex-start;
	}

	& li {
		margin: 0;
	}

	& a {
		color: var(--color-navy);
		font-family: var(--font-sans);
		font-size: 1rem;
		font-weight: 600;
		line-height: 1.55;
		text-decoration: none;

		&:visited {
			color: var(--color-navy);
		}

		&:hover,
		&:focus {
			text-decoration: underline;
		}
	}
	@media screen and (min-width: 1025px) {
		padding-inline-end: 3em;
	}
}

.site-footer__contact {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.site-footer__contact-details {
	display: flex;
	flex-direction: column;
	gap: 0;
	color: var(--color-footer-text);
	font-family: var(--font-sans);
	font-size: 14.4px;
	font-weight: 400;
	line-height: 22.32px;

	& a,
	& p {
		margin: 0;
		color: inherit;
		font: inherit;
		line-height: inherit;
		text-decoration: none;
	}

	& a:hover,
	& a:focus {
		text-decoration: underline;
	}
}

.site-footer__bottom {
	border-top: 1px solid rgba(22, 40, 74, 0.25);
	padding-block-start: 1.3125rem;
	&.desktop {
		display: none;
	}
	@media screen and (min-width: 1025px) {
		&.mobile {
			display: none;
		}
		&.desktop {
			display: block;
			grid-column: 2 / -1;
		}
	}
}

.site-footer__copyright {
	margin: 0;
	padding-inline: max(1.5rem, 50vw - var(--layout-max-width) / 2);
	color: var(--color-footer-text);
	font-family: var(--font-sans);
	font-size: 12.8px;
	font-weight: 400;
	line-height: 19.84px;
	@media screen and (min-width: 1025px) {
		padding-inline: 0;
	}
}

/* * Navigation styles */

nav {
	& > ul {
		list-style: none;
		display: flex;

		& > li {
			margin-right: 1em;
		}
	}
}

/* * forms and form input styling */

input,
textarea,
select {
	display: block;
	box-sizing: border-box;
	width: 100%;
	max-width: 100%;
	border: 1px solid var(--color-border);
	box-shadow: none;
	border-radius: 0;
	padding: 0.6em 1.4em 0.5em 0.8em;
	margin: 0;
	font-size: 1rem;
	line-height: 1.3;
	color: var(--color-ink);
	font-family: var(--font-sans);
	font-weight: 700;
}

input,
textarea {
	field-sizing: fixed;
}

input[type='text'],
input[type='email'],
input[type='tel'],
textarea {
	&:user-invalid {
		border-color: var(--color-error);
	}

	&:focus-visible {
		outline: 2px solid var(--color-navy);
		outline-offset: 2px;
	}
}

/* select styling */
/* https://codepen.io/bdnorris/pen/BMorpx */
/* https://www.filamentgroup.com/lab/select-css.html */

select {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-color: var(--color-white);
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2213px%22%20height%3D%227px%22%20viewBox%3D%220%200%2013%207%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%0A%20%20%20%20%3Cg%20id%3D%22Page-1%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%20%20%20%20%3Cpolygon%20id%3D%22Triangle%22%20fill%3D%22%234A4A4A%22%20transform%3D%22translate(6.500000%2C%203.250000)%20rotate(-180.000000)%20translate(-6.500000%2C%20-3.250000)%20%22%20points%3D%226.5%201.13686838e-13%2013%206.5%200%206.5%22%3E%3C%2Fpolygon%3E%0A%20%20%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E"),
		linear-gradient(to bottom, #ffffff 0%, #ffffff 100%);
	background-repeat: no-repeat, repeat;
	background-position: right 0.7em top 50%, 0 0;
	background-size: 13px auto, 100%;
}

select::-ms-expand {
	display: none;
}

select:hover {
	border-color: var(--color-muted);
}

select:focus-visible {
	border-color: var(--color-navy);
	outline: 2px solid var(--color-navy);
	outline-offset: 2px;
	color: var(--color-ink);
}

select option {
	font-weight: normal;
}

/* BUTTONS */

/* Button reset */
.button, .menu-toggle {
	all: unset;
}

.button,
.contains-button > a,
input[type="submit"].gform_button.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--color-gold) !important; /* gravity forms override */
	color: var(--color-navy);
	font-weight: 700;
	font-size: 13.6px;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	padding: 12px 24px;
	border: none;
	border-radius: 3px;
	cursor: pointer;
	transition: filter 0.2s ease, transform 0.2s ease;
	--gf-local-bg-color: var(--color-gold);
	&:hover,
	&:active {
		filter: brightness(1.05);
	}

	&:focus-visible, &:focus, &:hover {
		outline: 2px solid var(--color-navy);
		outline-offset: 3px;
		filter: brightness(1.05);
		background: var(--color-gold);
		color: white;
	}

	&:visited {
		color: var(--color-navy);
	}
	&:active {
		transform: translateY(1px);
	}
}

.button.button--secondary {
	background-color: var(--color-terracotta);
	color: var(--color-white);
	border-color: var(--color-terracotta);
	&:hover {
		background-color: var(--color-white);
		color: var(--color-terracotta);
		border-color: var(--color-terracotta);
	}
	&:focus-visible {
		outline: 2px solid var(--color-gold);
		outline-offset: 3px;
		background-color: var(--color-white);
		color: var(--color-terracotta);
		border-color: var(--color-terracotta);
	}
}
a.button.button--secondary {
	&:visited {
		color: var(--color-white) !important;
	}
}

.button--lg {
	min-height: 48px;
	padding: 16px 34px;
}

/* Header */

header.site-header {
	background: var(--color-navy);
	padding-inline: max(1.5rem, 50vw - var(--layout-max-width) / 2);
	position: fixed;
	inset: 0 0 auto 0;
	z-index: 100;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: var(--header-height);
	border-bottom: 5px solid var(--color-gold);
}

.site-branding {
	padding-block: 1rem;
	& a {
		display: block;
		margin-block-end: -78px;
		position: relative;
		z-index: 100;
	}
	& svg {
		transform-origin: center;
		transform-box: fill-box;
		transition: transform 0.2s ease;
		width: 122px;
		height: auto;
	}
	&:hover {
		& svg {
			transform: scale(1.04);
		}
	}
	@media screen and (min-width: 769px) {
		& a {
			margin-block-end: -94px;
		}
		& svg {
			width: 165px;
			height: auto;
		}
	}
}

/* Navigation */

#site-navigation {
	/* Mobile menu styles */
	position: fixed;
	inset: var(--header-height) 0 auto 0;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	&.toggled {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}
	@media screen and (min-width: 769px) {
		position: static;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}
}
.menu-primary-menu-container {
	background: var(--color-navy);
	padding-inline: max(1.5rem, 50vw - var(--layout-max-width) / 2);
	padding-block: 5rem 2rem;
	& > ul {
		list-style: none;
		display: flex;
		flex-direction: column;
		gap: 0.5rem;
		align-items: flex-start;
		margin: 0;
		padding: 0;
	}
	@media screen and (min-width: 769px) {
		padding-block: 1.5rem;
		padding-inline: 0;
		background: transparent;
		& > ul {
			flex-direction: row;
			gap: 2rem;
			align-items: center;
			justify-content: flex-end;
		}
	}
}

.menu-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	min-height: 44px;
	cursor: pointer;

	&:focus-visible {
		outline: 2px solid var(--color-gold);
		outline-offset: 3px;
	}

	& svg {
		rect {
			transform-origin: center;
			transition: transform 0.2s ease, opacity 0.2s ease;
			fill: var(--color-white);
		}
	}
	&[aria-expanded="true"] {
		.bun {
			opacity: 0;
		}
		.cheese {
			transform: rotate(45deg);
		}
		.meat {
			transform: rotate(-45deg);
		}
	}

	@media screen and (min-width: 769px) {
		display: none;
	}
}

.main-navigation {
	flex: 0 0 auto;
	width: auto;
}

.nav-menu {
	display: flex;
	gap: 2rem;
	align-items: center;
	justify-content: flex-end;
}
.nav-menu a:not(.contains-button > a) {
	padding: 0.5em;
	color: var(--color-white);
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.54;
	letter-spacing: 0.408px;

	&:focus-visible {
		outline: 2px solid var(--color-gold);
		outline-offset: 2px;
	}
}

/* Below-fold layouts: skip offscreen paint work until needed. */
.page-builder-layout:not(.hero) {
	content-visibility: auto;
	contain-intrinsic-size: auto 32rem;
}

/* Fixed header clearance when the first block is not a full-bleed hero */
.site-main > .page-builder-layout:first-child:not(.hero) {
	padding-block-start: calc(var(--header-height) + 2rem);
}

.page-builder-layout__pre-headline {
	display: inline-flex;
	background: var(--color-terracotta);
	color: var(--color-white);
	font-weight: 700;
	font-size: 12.5px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 0.5em 1em;
	line-height: 1;
	@media screen and (min-width: 769px) {
		width: max-content;
	}
}

.hero {
	background-color: var(--color-primary);
	background-image: var(--hero-bg-sm, var(--hero-bg-lg, none));
	background-size: cover;
	background-position: center;
	padding-inline: max(1.5rem, 50vw - var(--layout-max-width) / 2);
	padding-block: 16dvh 4rem;
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: center;
	& h1, & p {
		color: var(--color-text-reverse);
	}
	&::before {
		content: '';
		display: block;
		position: absolute;
		inset: 0;
		background: linear-gradient(
			83.4deg,
			rgba(0, 0, 0, 0.8) 1.9%,
			rgba(102, 102, 102, 0.064) 98.1%
		);
	}
	@media screen and (min-width: 769px) {
		background-image: var(--hero-bg-lg, var(--hero-bg-sm, none));
		min-height: 494px;
		padding-block: 14rem 8rem;
	}
}

.hero__inner {
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	z-index: 1;
	@media screen and (min-width: 769px) {
		max-width: min(40vw, 600px);
	}
}

/* Motion starts from an already-visible default (never opacity: 0 at rest). */
@keyframes move-up {
	from {
		transform: translateY(16px);
	}
	to {
		transform: translateY(0);
	}
}

@keyframes move-right {
	from {
		transform: translateX(-16px);
	}
	to {
		transform: translateX(0);
	}
}

/* Highlights */

.highlights {
	padding-inline: max(1.5rem, 50vw - var(--layout-max-width) / 2);
	padding-block: 4rem;
	background: var(--color-terracotta);
	& h2, & h3, & p {
		color: var(--color-white);
	}
}

.highlights--constrain-width {
	padding-inline: max(1.5rem, 50vw - var(--layout-smaller-width) / 2);
}

.highlights--constrain-vertical-padding {
	padding-block: 1rem;
}

.highlights__list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: var(--spacing-large);
	margin-block: 3rem 2rem;
	margin-inline: 0;
	padding: 0;
	@media screen and (min-width: 769px) {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
	}
}

.highlights__item {
	background: rgba(255, 255, 255, 0.12);
	padding: 1.375rem 1.25rem;
	@media screen and (prefers-reduced-motion: no-preference) {
		transform: translateY(16px);
	}
	& ul > li {
		color: var(--color-white);
	}
	& p a {
		color: var(--color-gold-light);
	}
}

@media screen and (prefers-reduced-motion: no-preference) {
	.is-in-view .highlights__item {
		animation: move-up 0.5s ease both var(--animation-delay);
	}
}

/* Feature Grid */

.feature-grid {
	padding-inline: max(1.5rem, 50vw - var(--layout-max-width) / 2);
	padding-block: 4rem;
	background: var(--color-cream);
	& h2, & h3, & p {
		color: var(--color-text);
	}
}


.feature-grid__list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: var(--spacing-large);
	margin-block: 3rem 2rem;
	margin-inline: 0;
	padding: 0;
	@media screen and (min-width: 769px) {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
	}
}

.feature-grid__item {
	display: flex;
	flex-direction: column;
	gap: 0;
	&:nth-child(1n) {
		.feature-grid__item-content {
			background: var(--color-gold-light);
		}
	}
	&:nth-child(2n) {
		.feature-grid__item-content {
			background: var(--color-navy-mid);
			color: var(--color-white);
		}
	}
	&:nth-child(3n) {
		.feature-grid__item-content {
			background: var(--color-terracotta);
			color: var(--color-white);
		}
	}
	&:nth-child(4n) {
		.feature-grid__item-content {
			background: var(--color-navy);
			color: var(--color-white);
		}
	}
}

.feature-grid__figure {
	margin-block: 0;
	@media screen and (prefers-reduced-motion: no-preference) {
		transform: translateY(16px);
	}
}

@media screen and (prefers-reduced-motion: no-preference) {
	.is-in-view .feature-grid__figure {
		animation: move-up 0.5s ease both var(--animation-delay);
	}
}

.feature-grid__item-content {
	padding: var(--spacing-large);
	background: var(--color-white);
	flex: 1 1 auto;
	@media screen and (prefers-reduced-motion: no-preference) {
		transform: translateY(16px);
	}
	& > p, & > h3 {
		color: currentColor;
	}
	& > h3 {
		margin-block: 0 0.666em;
	}
}

@media screen and (prefers-reduced-motion: no-preference) {
	.is-in-view .feature-grid__item-content,
	.is-in-view .feature-grid__item figure {
		animation: move-up 0.5s ease both var(--animation-delay);
	}
}

.feature-grid__item-headline {
	font-size: 1.375rem;
	font-weight: 700;
	line-height: 1.1;
}

.feature-grid__item--image-frame {
	& picture, & img {
		border: 6px solid var(--color-gold);
	}
}

.feature-grid__caption {
	font-size: 12.8px;
	font-weight: 600;
	line-height: 1.25;
	color: var(--color-muted);
	padding-block: 0.666em 0;
}

/* FAQ accordion — Figma node 221:424 */

.faq {
	background: var(--color-navy);
	padding-block: 4rem;
	padding-inline: max(1.5rem, 50vw - var(--layout-max-width) / 2);

	@media screen and (min-width: 1025px) {
		padding-block: 5.5rem; /* 88px */
	}
}

.faq__inner {
	width: 100%;
	max-width: 840px;
	margin-inline: auto;
	padding-inline: 1.5rem;

	@media screen and (min-width: 769px) {
		padding-inline: 2.5rem; /* 40px */
	}
}

.faq__headline {
	margin: 0 0 1.75rem; /* 28px */
	color: var(--color-white);
	font-family: var(--font-display);
	font-size: 35px;
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: 0;
	text-align: center;
	text-transform: uppercase;
}

.faq__list {
	display: flex;
	flex-direction: column;
	margin: 0;
	padding: 0;
	border-top: 1px solid var(--color-navy-line);
}

.faq__item {
	border-bottom: 1px solid var(--color-navy-line);
}

.faq__heading {
	margin: 0;
	font-size: inherit;
	font-weight: inherit;
}

.faq__trigger {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	width: 100%;
	margin: 0;
	padding: 1.375rem 0.25rem; /* 22px 4px */
	border: 0;
	background: transparent;
	color: var(--color-white);
	font-family: var(--font-display);
	font-size: 1.05rem; /* ~16.8px */
	font-weight: 600;
	line-height: 1.3;
	text-align: left;
	cursor: pointer;

	&:focus-visible {
		outline: 2px solid var(--color-gold);
		outline-offset: 2px;
	}
}

.faq__question {
	flex: 1 1 auto;
}

.faq__icon {
	flex: 0 0 auto;
	padding-left: 1rem;
	color: var(--color-gold);
	font-family: var(--font-display);
	font-size: 1.4rem; /* ~22.4px */
	font-weight: 600;
	line-height: 1;
}

.faq__panel {
	padding: 0 0.25rem 1.375rem;
}

.faq__panel[hidden] {
	display: none;
}

.faq__answer {
	color: var(--color-white);
	font-family: var(--font-sans);
	font-size: 0.95rem;
	font-weight: 400;
	line-height: 1.6;
	& p {
		color: currentColor;
		margin-block: 0.333em 0.666em;
	}

	& > *:first-child {
		margin-top: 0;
	}

	& > *:last-child {
		margin-bottom: 0;
	}

	& a {
		color: var(--color-gold-light);
	}
}

/* Thumbnail List — Figma node 232:545 */

.thumbnail-list {
	padding-block: 4rem;
	padding-inline: max(1.5rem, 50vw - var(--layout-max-width) / 2);
	background: var(--color-white);

	@media screen and (min-width: 1025px) {
		padding-block: 5.5rem;
	}
}

.thumbnail-list__headline {
	margin: 0 0 0.75rem;
	color: var(--color-navy);
	font-family: var(--font-display);
	font-size: clamp(1.75rem, 2.5vw, 2rem); /* ~32px */
	font-weight: 700;
	line-height: 1.1;
	text-transform: uppercase;
}

.thumbnail-list__intro {
	margin-block: 0 2rem;
	color: var(--color-ink);
	font-size: 1.01875rem; /* ~16.3px */
	line-height: 1.55;

	& > *:first-child {
		margin-top: 0;
	}

	& > *:last-child {
		margin-bottom: 0;
	}
}

.thumbnail-list__list {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.thumbnail-list__item {
	display: flex;
	flex-direction: column;
	gap: 1rem;

	@media screen and (min-width: 769px) {
		flex-direction: row;
		align-items: stretch;
		gap: 1.5rem;
	}
}

.thumbnail-list__media {
	display: none;
	flex: 0 0 auto;
	margin: 0;
	width: 100%;
	max-width: 12rem;
	overflow: hidden;
	@media screen and (prefers-reduced-motion: no-preference) {
		transform: translateX(-16px);
	}
	@media screen and (min-width: 769px) {
		max-width: 172px;
		display: block;
	}
}

@media screen and (prefers-reduced-motion: no-preference) {
	.is-in-view .thumbnail-list__media {
		animation: move-right 0.5s ease both var(--animation-delay);
	}
}

.thumbnail-list__image {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 688 / 588;
	object-fit: cover;
}

.thumbnail-list__body {
	flex: 1 1 auto;
	min-width: 0;
	padding: 1.5rem 1.625rem 1.625rem 1.25rem;
	border-inline-start: 1px solid var(--color-gold);
	background: var(--color-white);
}

.thumbnail-list__item-heading {
	margin: 0 0 0.35rem;
	color: var(--color-navy);
	font-family: var(--font-display);
	font-size: 1.15rem; /* ~18.4px */
	font-weight: 700;
	line-height: 1.1;
	text-transform: uppercase;
}

.thumbnail-list__item-content {
	color: var(--color-muted);
	font-size: 0.91875rem; /* ~14.7px */
	line-height: 1.55;

	& > *:first-child {
		margin-top: 0;
	}

	& > *:last-child {
		margin-bottom: 0;
	}
}

/* Contact Lockup — Figma node 236:580 */

.contact-lockup {
	background: var(--color-cream);
}

.contact-lockup__grid {
	display: grid;
	grid-template-columns: 1fr;

	@media screen and (min-width: 1025px) {
		grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
		min-height: 570px;
	}
}

.contact-lockup__form {
	padding: 2.5rem 1.5rem;

	@media screen and (min-width: 769px) {
		padding: 2.75rem 1.5rem 2.75rem max(1.5rem, calc(50vw - var(--layout-max-width) / 2));
	}

	@media screen and (min-width: 1025px) {
		padding: 2.75rem 2.5rem 2.75rem max(2.5rem, calc(50vw - var(--layout-max-width) / 2));
	}
}

.contact-lockup__aside {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	padding: 2.75rem 1.5rem;
	background: var(--color-navy);
	color: var(--color-white);

	@media screen and (min-width: 769px) {
		padding: 2.75rem max(1.5rem, calc(50vw - var(--layout-max-width) / 2)) 2.75rem 2.75rem;
	}

	@media screen and (min-width: 1025px) {
		padding: 2.75rem max(2.75rem, calc(50vw - var(--layout-max-width) / 2)) 2.75rem 2.75rem;
	}
}

.contact-lockup__headline {
	margin: 0;
	color: var(--color-white);
	font-family: var(--font-display);
	font-size: 1.1rem; /* ~17.6px */
	font-weight: 700;
	letter-spacing: 0.06em;
	line-height: 1.1;
	text-transform: uppercase;
}

.contact-lockup__details {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin: 0;
}

.contact-lockup__detail {
	display: flex;
	flex-direction: column;
	gap: 0.125rem;
	margin: 0;
}

.contact-lockup__label {
	margin: 0;
	color: var(--color-gold-light);
	font-family: var(--font-sans);
	font-size: 0.75rem;
	font-weight: 400;
	letter-spacing: 0.06em;
	line-height: 1.55;
	text-transform: uppercase;
}

.contact-lockup__value {
	margin: 0;
	color: var(--color-white);
	font-size: 1rem;
	line-height: 1.55;

	& a {
		color: inherit;
		text-decoration: none;

		&:hover,
		&:focus-visible {
			text-decoration: underline;
		}
	}
}

.contact-lockup__fine-print {
	margin-top: 0.5rem;
	color: var(--color-white);
	font-size: 0.85rem;
	line-height: 1.55;

	& p {
		color: currentColor;
	}

	& > *:first-child {
		margin-top: 0;
	}

	& > *:last-child {
		margin-bottom: 0;
	}

	& a {
		color: var(--color-white);
		&:visited, &:active {
			color: var(--color-white);
		}
	}
}

	/* Gravity Forms */
[id^="gform_"] {
	--gf-form-gap-y: 30px !important;
	--gf-ctrl-btn-bg-color-primary: var(--color-gold) !important;
	--gf-local-text-transform: uppercase !important;
	--gf-local-text-weight: 800 !important;
}

[id^="gform_"] .gform_button.button {
	background: var(--color-gold);
	color: var(--color-text) !important;
	font-weight: 800 !important;
	font-size: 13.6px !important;
	letter-spacing: 0.03em !important;
	text-transform: uppercase !important;
	&:hover,
	&:active {
		filter: brightness(1.05);
	}
	&:focus-visible {
		outline: 2px solid var(--color-navy);
		outline-offset: 3px;
		filter: brightness(1.05);
	}
}

/* 404 — Figma node 262:425 */

.error-404 {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: min(70vh, 1064px);
	padding-block: 6rem 4rem;
	padding-inline: max(1.5rem, 50vw - var(--layout-max-width) / 2);
	overflow: hidden;
	background-color: var(--color-navy);
	background-image: var(--hero-bg-sm, var(--hero-bg-lg, none));
	background-size: cover;
	background-position: center;

	&::before {
		content: '';
		position: absolute;
		inset: 0;
		background: linear-gradient(
			83.4deg,
			rgba(0, 0, 0, 0.8) 1.9%,
			rgba(102, 102, 102, 0.064) 98.1%
		);
	}

	@media screen and (min-width: 769px) {
		background-image: var(--hero-bg-lg, var(--hero-bg-sm, none));
		padding-block: 6rem 5.8rem;
	}
}

.error-404__inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 1.25rem;
	max-width: 36ch;
}

.error-404__headline {
	margin: 0;
	color: var(--color-white);
	font-family: var(--font-display);
	font-size: clamp(2rem, 4vw, 2.9rem); /* ~46.4px */
	font-weight: 700;
	line-height: 1.1;
	text-transform: uppercase;
}

.error-404__content {
	max-width: 700px;
	color: var(--color-white);
	font-size: 1.05rem; /* ~16.8px */
	font-weight: 600;
	line-height: 1.55;

	& p {
		color: var(--color-white);
	}

	& > *:first-child {
		margin-top: 0;
	}

	& > *:last-child {
		margin-bottom: 0;
	}

	& p > a {
		color: inherit;
		text-decoration: underline;
		text-underline-offset: 0.15em;

		&:hover,
		&:focus-visible {
			color: var(--color-white);
		}
	}
}