:root {
	--wny-bg: #0f0d0b;
	--wny-bg-elev: #171410;
	--wny-panel: #1f1b16;
	--wny-border: rgba(255, 255, 255, 0.12);
	--wny-text: #f4f0ea;
	--wny-muted: #b8b0a6;
	--wny-accent: #d8b26d;
	--wny-accent-strong: #e6c487;
	--wny-accent-ink: #1a140c;
	--wny-radius: 16px;
	--wny-radius-sm: 10px;
	--wny-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
}

html {
	box-sizing: border-box;
}

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

body {
	margin: 0;
	min-height: 100vh;
	color: var(--wny-text);
	font-size: 1rem;
	line-height: 1.7;
	letter-spacing: -0.005em;
	display: flex;
	flex-direction: column;
	position: relative;
}

body::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: clamp(13rem, 28vw, 20rem);
	pointer-events: none;
	z-index: 0;
	background-image: radial-gradient(circle, rgba(150, 184, 244, 0.28) 1px, transparent 1.2px);
	background-size: 14px 14px;
	background-position: top center;
	-webkit-mask-image: linear-gradient(176deg, #000 0%, rgba(0, 0, 0, 0.92) 36%, rgba(0, 0, 0, 0.52) 64%, transparent 100%);
	mask-image: linear-gradient(176deg, #000 0%, rgba(0, 0, 0, 0.92) 36%, rgba(0, 0, 0, 0.52) 64%, transparent 100%);
}

body.home::before {
	height: clamp(39rem, 84vw, 60rem);
}

.site-header,
.site-main,
.site-footer {
	position: relative;
	z-index: 1;
}

a {
	color: inherit;
	text-decoration-thickness: 0.06em;
	text-underline-offset: 0.18em;
	transition: color 180ms ease;
}

.container {
	max-width: 1360px;
	margin-right: auto;
	margin-left: auto;
	padding-right: clamp(1rem, 3vw, 2.25rem);
	padding-left: clamp(1rem, 3vw, 2.25rem);
}


.site-main {
	flex: 1 0 auto;
	padding-top: clamp(2rem, 4vw, 3.5rem);
	padding-bottom: clamp(3rem, 6vw, 5rem);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 0.78em;
	line-height: 1.12;
	letter-spacing: -0.015em;
}

p,
ul,
ol,
blockquote {
	margin-top: 0;
	margin-bottom: 1.2rem;
}

p {
	max-width: 68ch;
	color: var(--wny-muted);
}

/* Header */
.site-header {
	position: sticky;
	top: 0;
	z-index: 120;
	padding: 0.9rem 0 0.65rem;
	background: transparent;
	border-bottom: 0;
	-webkit-backdrop-filter: none;
	backdrop-filter: none;
}

.site-header__inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 1.2rem;
	padding: 0.64rem 0.82rem;
	border: 1px solid var(--wny-border);
	border-radius: 14px;
	background: rgba(23, 20, 16, 0.92);
	box-shadow: 0 1px 1px rgba(255, 255, 255, 0.02), 0 16px 28px rgba(0, 0, 0, 0.28);
}

.site-branding {
	display: flex;
	align-items: center;
	min-width: 0;
}

.site-branding__home {
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
	color: var(--wny-text);
	text-decoration: none;
}

.site-branding__mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	color: var(--wny-text);
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.site-branding__mark-image {
	display: block;
	width: 2.25rem;
	height: 2.25rem;
	object-fit: contain;
}

.site-branding__text {
	display: inline-flex;
	flex-direction: column;
	min-width: 0;
}

.site-title {
	margin: 0;
	font-family: "Source Serif 4", "Iowan Old Style", Georgia, serif;
	font-size: 1.18rem;
	line-height: 1.02;
	font-weight: 700;
	letter-spacing: -0.02em;
}

.site-description {
	margin: 0.1rem 0 0;
	font-size: 0.76rem;
	color: var(--wny-muted);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.primary-nav {
	justify-self: center;
}

.primary-nav__inner {
	display: flex;
	align-items: center;
	gap: 0.9rem;
}

.primary-nav__menu,
.primary-nav .menu {
	display: flex;
	align-items: center;
	gap: 0.26rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.primary-nav__menu a,
.primary-nav .menu a {
	position: relative;
	display: inline-flex;
	align-items: center;
	padding: 0.45rem 0.6rem;
	border-radius: var(--wny-radius-sm);
	text-decoration: none;
	font-size: 0.86rem;
	font-weight: 600;
	color: var(--wny-text);
}

.primary-nav__menu a::after,
.primary-nav .menu a::after {
	content: "";
	position: absolute;
	left: 0.52rem;
	right: 0.52rem;
	bottom: 0.22rem;
	height: 1.5px;
	border-radius: 999px;
	background: var(--wny-accent);
	opacity: 0;
	transform: scaleX(0.7);
	transition: opacity 180ms ease, transform 180ms ease;
}

.primary-nav__menu a:hover,
.primary-nav .menu a:hover {
	color: #fff;
}

.primary-nav__menu a:hover::after,
.primary-nav .menu a:hover::after,
.primary-nav__menu .current-menu-item > a::after,
.primary-nav__menu .current_page_item > a::after,
.primary-nav__menu .is-active > a::after,
.primary-nav .menu .current_page_item > a::after {
	opacity: 1;
	transform: scaleX(1);
}

.site-header__actions {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
}

.header-cta,
.home-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.68rem 1rem;
	border: 1px solid transparent;
	border-radius: var(--wny-radius-sm);
	font-size: 0.88rem;
	font-weight: 620;
	text-decoration: none;
	white-space: nowrap;
	transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.header-cta,
.home-button--primary {
	background: var(--wny-accent);
	border-color: var(--wny-accent);
	color: var(--wny-accent-ink);
}

.header-cta:hover,
.home-button--primary:hover {
	transform: translateY(-1px);
	background: var(--wny-accent-strong);
	border-color: var(--wny-accent-strong);
}

.home-button--secondary {
	background: transparent;
	border-color: var(--wny-border);
	color: var(--wny-text);
}

.home-button--secondary:hover {
	background: rgba(255, 255, 255, 0.06);
	transform: translateY(-1px);
}

.menu-toggle {
	display: none;
	flex-direction: column;
	gap: 4px;
	align-items: center;
	justify-content: center;
	width: 2.3rem;
	height: 2.3rem;
	padding: 0;
	border: 1px solid var(--wny-border);
	border-radius: var(--wny-radius-sm);
	background: rgba(255, 255, 255, 0.03);
	cursor: pointer;
}

.menu-toggle__line {
	display: block;
	width: 1rem;
	height: 2px;
	background: var(--wny-text);
	border-radius: 999px;
	transform-origin: center;
	transition: opacity 160ms ease, transform 220ms ease;
}

.site-header.is-menu-open .menu-toggle__line:nth-child(2) {
	transform: translateY(6px) rotate(45deg);
}

.site-header.is-menu-open .menu-toggle__line:nth-child(3) {
	opacity: 0;
	transform: scaleX(0);
}

.site-header.is-menu-open .menu-toggle__line:nth-child(4) {
	transform: translateY(-6px) rotate(-45deg);
}

.header-cta--mobile {
	display: none;
}

.primary-nav__menu a:focus-visible,
.primary-nav .menu a:focus-visible,
.header-cta:focus-visible,
.menu-toggle:focus-visible,
.home-button:focus-visible {
	outline: 2px solid var(--wny-accent);
	outline-offset: 2px;
}

/* Generic content */
.site-main article {
	margin-bottom: 2rem;
	padding: clamp(1.3rem, 2.5vw, 2rem);
	border: 1px solid var(--wny-border);
	border-radius: var(--wny-radius);
	background: var(--wny-bg-elev);
	box-shadow: var(--wny-shadow);
}

.page .site-main article {
	margin-bottom: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.info-page {
	display: grid;
	gap: clamp(2.6rem, 5.4vw, 5rem);
}

.join-page {
	gap: clamp(1.4rem, 2.4vw, 2.2rem);
}

.info-hero {
	display: grid;
	gap: 0.8rem;
	max-width: none;
	padding-top: clamp(1.2rem, 2.5vw, 2.2rem);
}

.info-hero h1 {
	font-size: clamp(2rem, 4.3vw, 3.35rem);
	line-height: 1;
	margin: 0;
	max-width: 18.5ch;
}

.why-work-page .info-hero h1 {
	max-width: 24ch;
}

.info-hero p {
	margin: 0;
	font-size: 1.12rem;
	line-height: 1.58;
	max-width: 54ch;
}

.join-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 0.32rem;
	margin-bottom: 0.5rem;
	order: 3;
}

.join-meta__item {
	display: inline-flex;
	align-items: center;
	gap: 0.38rem;
	margin: 0;
	padding: 0.28rem 0.8rem;
	border: 1px solid rgba(216, 178, 109, 0.14);
	border-radius: 999px;
	background: rgba(20, 17, 13, 0.46);
	color: #bfb6a9;
	font-size: 12px !important;
	font-weight: 500 !important;
	line-height: 1.15 !important;
	letter-spacing: 0.01em;
	max-width: none;
}

.join-meta__icon {
	width: 0.78rem;
	height: 0.78rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: rgba(216, 178, 109, 0.92);
	flex-shrink: 0;
}

.join-meta__icon svg {
	width: 100%;
	height: 100%;
	display: block;
}

.info-section {
	display: grid;
	gap: 1rem;
}

.info-section__title {
	margin: 0;
	font-size: clamp(1.45rem, 2.4vw, 2rem);
	line-height: 1.05;
}

.info-grid {
	display: grid;
	gap: 1rem;
}

.info-grid--two {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-grid--join {
	grid-template-columns: 1fr;
	max-width: none;
	margin: 0;
	gap: 1.35rem;
}

.join-reassurance {
	display: grid;
	grid-template-columns: 1fr;
	align-items: stretch;
	gap: 0.5rem;
	max-width: none;
	margin: 0;
	padding: 0;
}

.join-alt-application-wrap {
	max-width: none;
	margin: 0;
}

.join-reassurance__title {
	margin: 0;
	font-size: clamp(1.9rem, 2.9vw, 2.45rem);
	line-height: 1;
	letter-spacing: -0.012em;
	text-align: left;
}

.join-form-wrap {
	max-width: none;
	margin: 0;
}

.join-form-card {
	padding: clamp(1.6rem, 2.9vw, 2.5rem);
}

.contact-page .info-card:first-child {
	justify-items: start;
	text-align: left;
	align-content: start;
	gap: 0.72rem;
}

.contact-page .info-grid--two {
	align-items: start;
}

.contact-page .info-card:first-child p {
	margin: 0;
	max-width: none;
	color: #d0c7bb;
	line-height: 1.45;
}

.contact-page .info-card:first-child .contact-intro {
	display: grid;
	gap: 0.7rem;
	padding: 0.05rem 0;
}

.contact-page .info-card:first-child .contact-org {
	font-size: 1rem;
	font-weight: 500;
	color: #e5dbcf;
}

.contact-page .info-card:first-child h2 {
	max-width: none;
	margin-bottom: 0.62rem;
}

.contact-page .info-card:first-child .contact-media-tile,
.contact-page .info-card:first-child .contact-detail-card {
	width: 100%;
	border: 1px dashed rgba(216, 178, 109, 0.24);
	border-radius: 0.88rem;
	background: rgba(21, 18, 14, 0.48);
}

.contact-page .info-card:first-child .contact-media-tile {
	overflow: hidden;
	aspect-ratio: 16 / 9;
}

.contact-page .info-card:first-child .contact-media-tile img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.contact-page .info-card:first-child .contact-detail-card {
	padding: 0.7rem 0.8rem;
}

.contact-page .info-card:first-child .contact-item {
	display: inline-flex;
	align-items: center;
	gap: 0.56rem;
	margin: 0;
}

.contact-page .info-card:first-child .contact-item__icon {
	width: 1rem;
	height: 1rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: rgba(216, 178, 109, 0.92);
	flex-shrink: 0;
}

.contact-page .info-card:first-child .contact-item__icon svg {
	width: 100%;
	height: 100%;
}

.contact-page .info-card:first-child .contact-hours__title {
	margin: 0 0 0.45rem;
	font-size: 0.72rem;
	font-weight: 520;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(216, 178, 109, 0.84);
}

.contact-page .info-card:first-child .contact-hours__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.34rem;
}

.contact-page .info-card:first-child .contact-hours__list li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.29rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	font-size: 0.95rem;
	line-height: 1.3;
	color: #d3cabf;
}

.contact-page .info-card:first-child .contact-hours__list li span:last-child {
	color: #c8beaf;
	font-size: 0.9rem;
}

.contact-page .info-hero h1 {
	max-width: 26ch;
}

.contact-page .info-hero p {
	max-width: 52ch;
}

.about-page .info-hero h1 {
	max-width: 26ch;
}

.about-page .info-hero h1 + p {
	max-width: 72ch;
}

.about-page .info-hero h1 + p + p {
	max-width: 72ch;
}

.about-page .info-card--dashed {
	border: 1px dashed rgba(216, 178, 109, 0.28);
	background: rgba(19, 16, 12, 0.72);
	box-shadow: none;
}

.about-page .about-company-card {
	gap: 0.95rem;
	grid-template-columns: minmax(0, 1.12fr) minmax(0, 1fr);
	grid-template-areas:
		"title title"
		"media copy";
	align-items: end;
}

.about-page .about-company-card h2 {
	grid-area: title;
	font-size: clamp(1.8rem, 2.8vw, 2.25rem);
}

.about-page .about-company-media {
	grid-area: media;
	overflow: hidden;
	aspect-ratio: 16 / 9;
	border: 1px dashed rgba(216, 178, 109, 0.24);
	border-radius: 0.9rem;
	background: rgba(19, 16, 12, 0.72);
	width: 92%;
}

.about-page .about-company-media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.about-page .about-company-copy {
	grid-area: copy;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	align-self: center;
	max-width: 58ch;
}

.about-page .about-company-lead,
.about-page .about-company-sub {
	font-size: 1.08rem;
	line-height: 1.58;
	color: #d7cec2;
	margin: 0;
}

.about-page .about-company-lead {
	max-width: none;
	align-self: auto;
}

.about-page .about-company-sub {
	max-width: none;
	align-self: auto;
}

.about-page .about-divider {
	height: 10px;
	margin: clamp(3.8rem, 8vw, 5.2rem) 0 clamp(3.7rem, 7.6vw, 4.9rem);
	background-image: radial-gradient(circle, rgba(216, 178, 109, 0.3) 1px, transparent 1.5px);
	background-size: 10px 10px;
	background-position: left center;
	-webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
	mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.about-page .about-why-card {
	gap: 0.85rem;
	max-width: 64rem;
	margin: 0 auto;
}

.about-page .about-why-card h2 {
	font-size: clamp(1.8rem, 2.8vw, 2.25rem);
	line-height: 1.02;
}

.about-page .about-why-list {
	padding-left: 1.25rem;
	gap: 0;
}

.about-page .about-why-list li {
	font-size: 1.22rem;
	line-height: 1.64;
	padding: 0;
	border-left: 0;
	background: transparent;
	border-radius: 0;
}

.about-page .about-why-list li + li {
	margin-top: 20px;
}

.about-page .about-why-list li:nth-child(2) {
	margin-left: 1.15rem;
}

.about-page .about-why-list li:nth-child(3) {
	margin-left: 2.3rem;
}

.about-page .about-why-list li:nth-child(4) {
	margin-left: 3.45rem;
}

.about-page .about-why-list li:nth-child(5) {
	margin-left: 4.6rem;
}

.about-page .about-bottom-tiles {
	margin-top: clamp(2.2rem, 5vw, 3.4rem);
}

.info-grid--three {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card {
	display: grid;
	gap: 0.7rem;
	padding: clamp(1.15rem, 2vw, 1.6rem);
	border: 1px solid var(--wny-border);
	border-radius: 1rem;
	background: rgba(23, 20, 16, 0.76);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.info-card h2,
.info-card h3 {
	margin: 0;
	font-size: clamp(1.2rem, 2vw, 1.75rem);
	line-height: 1.05;
}

.info-card p {
	margin: 0;
	max-width: 64ch;
}

.stat-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.stat-card {
	display: grid;
	gap: 0.4rem;
	padding: 1rem 1.1rem;
	border: 1px dashed rgba(216, 178, 109, 0.28);
	border-radius: 0.9rem;
	background: rgba(19, 16, 12, 0.74);
}

.stat-card strong {
	font-size: 1.02rem;
	line-height: 1.2;
}

.stat-card span {
	color: var(--wny-muted);
	font-size: 0.95rem;
}

.open-role-list {
	display: grid;
	gap: 1.15rem;
}

.page .site-main .open-role {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	grid-template-areas:
		"title cta"
		"desc cta";
	column-gap: 1.1rem;
	row-gap: 0.48rem;
	padding: clamp(1.15rem, 2.2vw, 1.6rem);
	border: 1px solid rgba(216, 178, 109, 0.2);
	border-radius: 1rem;
	background: linear-gradient(180deg, rgba(24, 20, 15, 0.82) 0%, rgba(18, 15, 11, 0.78) 100%);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
}

.page .site-main .open-role:nth-child(odd) {
	border-style: dashed;
}

.page .site-main .open-role h3 {
	grid-area: title;
	margin: 0;
	font-size: clamp(1.2rem, 1.8vw, 1.5rem);
	line-height: 1.1;
}

.page .site-main .open-role p {
	grid-area: desc;
	margin: 0;
	max-width: 66ch;
	color: #d0c7ba;
	font-size: 1rem;
	line-height: 1.52;
}

.page .site-main .open-role .home-button {
	grid-area: cta;
	justify-self: end;
	align-self: center;
	min-width: 9.6rem;
	padding-inline: 1.1rem;
	border-color: rgba(216, 178, 109, 0.24);
}

.about-page .about-company-copy {
	grid-area: copy;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	align-self: center;
	height: auto;
}

.reassurance-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.15rem;
}

.reassurance-list--badges {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0.56rem;
	width: 100%;
	max-width: none;
	align-self: stretch;
}

.reassurance-list li {
	display: grid;
	gap: 0.38rem;
	padding: 1.15rem 1.2rem;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 0.9rem;
	background: rgba(20, 17, 13, 0.72);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.reassurance-list--badges li {
	padding: 1.04rem 1.12rem;
	border: 1px dashed rgba(216, 178, 109, 0.24);
	border-radius: 0.9rem;
	background: rgba(19, 16, 12, 0.76);
	box-shadow: none;
	align-content: start;
}

.reassurance-list--badges p {
	display: none;
}

.reassurance-list--badges strong {
	font-size: 1.06rem;
	font-weight: 650;
	justify-content: flex-start;
	line-height: 1.2;
	text-align: left;
}

.reassurance-list strong {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	font-size: 1rem;
	line-height: 1.2;
	color: var(--wny-text);
}

.reassurance-check {
	color: var(--wny-accent);
	font-weight: 800;
	line-height: 1;
}

.reassurance-list p {
	margin: 0;
	max-width: 44ch;
	font-size: 0.94rem;
	color: #d3cbc0;
}

.info-card--form {
	gap: 1.2rem;
}

.form-notice {
	padding: 0.7rem 0.82rem;
	border-radius: 0.7rem;
	font-size: 0.92rem;
	line-height: 1.3;
	border: 1px solid transparent;
}

.form-notice--success {
	color: #d8f4de;
	background: rgba(38, 88, 54, 0.4);
	border-color: rgba(95, 188, 125, 0.45);
}

.form-notice--error {
	color: #ffd5d5;
	background: rgba(102, 34, 34, 0.45);
	border-color: rgba(221, 112, 112, 0.45);
}

.join-alt-application {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.9rem;
	padding: 0.9rem 1rem;
	border: 1px solid rgba(216, 178, 109, 0.22);
	border-radius: 0.86rem;
	background: rgba(216, 178, 109, 0.05);
}

.join-alt-application__text {
	margin: 0;
	max-width: none;
	font-size: 0.9rem;
	line-height: 1.45;
	color: #d4cabd;
}

.join-alt-application__link {
	flex-shrink: 0;
}

.wny-form {
	display: grid;
	gap: 0;
}

.wny-form--contact {
	gap: 1.05rem;
}

.join-location-lock {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.6rem;
	margin: 0 0 1rem !important;
	padding: 0.72rem 0.82rem;
	width: 100%;
	max-width: none;
	justify-self: stretch;
	border: 1px solid rgba(216, 178, 109, 0.34);
	border-radius: 0.72rem;
	font-size: 0.86rem;
	line-height: 1.25;
	font-weight: 620;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: rgba(230, 214, 188, 0.95);
	background: rgba(216, 178, 109, 0.08);
	text-decoration: none;
}

.info-card .join-location-lock,
.join-form-card p.join-location-lock {
	max-width: none;
	width: 100%;
}

.join-location-lock__text {
	min-width: 0;
}

.join-location-lock__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.6rem;
	height: 1.6rem;
	border: 1px solid rgba(216, 178, 109, 0.45);
	border-radius: 999px;
	background: rgba(216, 178, 109, 0.12);
	font-size: 0.88rem;
	line-height: 1;
	flex-shrink: 0;
}

.join-location-lock:hover,
.join-location-lock:focus-visible {
	background: rgba(216, 178, 109, 0.2);
	border-color: rgba(216, 178, 109, 0.58);
	color: #fff5e6;
	outline: none;
}

.wny-stepper-nav {
	display: flex;
	flex-wrap: nowrap;
	gap: 0.54rem;
	margin: 0.1rem 0 0.82rem;
	width: 100%;
	overflow: visible;
	padding-bottom: 0.2rem;
}

.wny-stepper-nav__button {
	width: auto;
	flex: 1 1 0;
	min-width: 0;
	padding: 0.46rem 0.72rem;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.03);
	color: #d4cbbe;
	font-size: 0.78rem;
	line-height: 1.16;
	font-weight: 610;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	font-family: inherit;
	cursor: pointer;
	white-space: normal;
	transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.wny-stepper-nav__button:hover,
.wny-stepper-nav__button:focus-visible {
	border-color: rgba(216, 178, 109, 0.5);
	background: rgba(216, 178, 109, 0.09);
	color: #f1e6d5;
	outline: none;
}

.wny-stepper-nav__button.is-complete {
	border-color: rgba(216, 178, 109, 0.5);
	background: rgba(216, 178, 109, 0.1);
	color: #f0e3cf;
}


.wny-stepper-nav__button.is-active {
	border-color: rgba(216, 178, 109, 0.72);
	background: rgba(216, 178, 109, 0.18);
	color: #fff7eb;
	transform: translateY(-1px);
}

.wny-form-step {
	display: grid;
	gap: 0.75rem;
	padding: 1.95rem 0 0;
	margin-top: 0;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	background: transparent;
	border-radius: 0;
}

.wny-form-step:first-of-type {
	padding-top: 0;
	border-top: 0;
}

.wny-form-step + .wny-form-step {
	margin-top: 1.82rem;
}

.js .wny-form--join-stepper .wny-form-step {
	display: none;
	margin-top: 0;
	padding-top: 1.3rem;
	border-top-color: rgba(255, 255, 255, 0.08);
	animation: wny-step-fade-out 220ms ease both;
}

.js .wny-form--join-stepper .wny-form-step.is-active {
	display: grid;
	animation: wny-step-fade-in 300ms cubic-bezier(0.2, 0.76, 0.2, 1) both;
}

.js .wny-form--join-stepper .wny-form-step:first-of-type {
	padding-top: 1.3rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@keyframes wny-step-fade-in {
	from {
		opacity: 0;
		transform: translateY(12px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes wny-step-fade-out {
	from {
		opacity: 1;
		transform: translateY(0);
	}

	to {
		opacity: 0;
		transform: translateY(-8px);
	}
}

.wny-form-step__header {
	display: grid;
	gap: 0;
}

.wny-form-step__header h3 {
	margin: 0;
	font-size: 0.74rem;
	line-height: 1.2;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(216, 178, 109, 0.82);
}

.wny-form__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.95rem;
}

.wny-form__row {
	display: grid;
	gap: 1rem;
}

.wny-form__row--two {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.wny-form__field {
	display: grid;
	gap: 0.42rem;
	font-size: 0.9rem;
	font-weight: 600;
	color: #ddd4c9;
	position: relative;
	padding-bottom: 0.35rem;
}

.wny-form__field--choice {
	border: 0;
	padding: 0 0 1.1rem;
	margin: 0;
}

.wny-form__field--choice legend {
	padding: 0;
	font-size: 0.9rem;
	font-weight: 600;
	color: #ddd4c9;
	margin-bottom: 0.42rem;
}

.wny-form__field--full {
	grid-column: 1 / -1;
}

.wny-form__helper {
	margin: 0;
	font-size: 0.84rem;
	line-height: 1.4;
	color: #c8beaf;
}

.join-form-card .wny-form__helper,
.join-form-card .form-privacy-note {
	max-width: none;
}

.wny-radio-group {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.wny-radio {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.9rem;
	font-weight: 500;
	color: #d9d0c3;
	padding: 0.28rem 0.56rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.03);
	cursor: pointer;
}

.wny-radio--checkbox {
	align-self: flex-start;
	margin: 0.2rem 0 0.5rem;
}

.wny-radio input {
	margin: 0;
	accent-color: #d8b26d;
}

.wny-conditional {
	position: relative;
	display: grid;
	gap: 0.7rem;
	margin-top: 0.42rem;
	margin-left: 0.2rem;
	padding: 0.78rem 0.86rem 0.74rem 1rem;
	border: 1px dashed rgba(216, 178, 109, 0.44);
	border-radius: 0.72rem;
	background: rgba(216, 178, 109, 0.04);
}

.wny-conditional::after {
	content: "";
	position: absolute;
	left: 0.86rem;
	top: -0.38rem;
	width: 0;
	height: 0;
	border-left: 0.28rem solid transparent;
	border-right: 0.28rem solid transparent;
	border-bottom: 0.4rem solid rgba(216, 178, 109, 0.64);
}

.wny-conditional[hidden] {
	display: none !important;
}

.wny-location-choice {
	padding-bottom: 0.5rem;
}

.wny-location-choice__error {
	display: none;
	margin: 0 0 0.55rem;
	padding: 0.5rem 0.65rem;
	width: 100%;
	max-width: none;
	border: 1px solid rgba(221, 112, 112, 0.65);
	border-radius: 0.6rem;
	background: rgba(92, 28, 28, 0.2);
	font-size: 0.83rem;
	line-height: 1.3;
	font-weight: 600;
	color: #f6b8b8;
	text-align: center;
	pointer-events: none;
}

.join-form-card .wny-location-choice__error {
	max-width: none;
	width: 100%;
	justify-self: stretch;
}

.wny-location-choice.is-invalid .wny-location-choice__error {
	display: block;
}

.wny-location-tiles {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.7rem;
}

.wny-location-tile {
	display: block;
	cursor: pointer;
}

.wny-location-tile input {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	clip: rect(0, 0, 0, 0);
	clip-path: inset(50%);
	overflow: hidden;
	white-space: nowrap;
	border: 0;
}

.wny-location-tile__body {
	display: grid;
	gap: 0.28rem;
	padding: 0.86rem 0.92rem;
	border-radius: 0.76rem;
	border: 1px solid rgba(255, 255, 255, 0.14);
	background: rgba(255, 255, 255, 0.03);
	transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.wny-location-tile__body strong {
	font-size: 0.98rem;
	line-height: 1.2;
	font-weight: 640;
	color: #ece3d5;
}

.wny-location-tile__body span {
	font-size: 0.84rem;
	line-height: 1.35;
	color: #c6bba9;
}

.wny-location-tile input:checked + .wny-location-tile__body {
	border-color: rgba(216, 178, 109, 0.72);
	background: rgba(216, 178, 109, 0.12);
	transform: translateY(-1px);
}

.wny-location-tile input:focus-visible + .wny-location-tile__body,
.wny-location-tile:hover .wny-location-tile__body {
	border-color: rgba(216, 178, 109, 0.48);
	outline: none;
}

.wny-location-choice.is-invalid .wny-location-tiles {
	padding: 0.16rem;
	border-radius: 0.84rem;
	background: rgba(92, 28, 28, 0.08);
}

.wny-repeater {
	display: grid;
	gap: 0.8rem;
}

.wny-repeater__items {
	display: grid;
	gap: 0.75rem;
}

.wny-repeater__item {
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 0.72rem;
	padding: 0.85rem;
	background: rgba(255, 255, 255, 0.02);
}

.wny-repeater__item-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0.72rem;
}

.wny-repeater__item-head p {
	margin: 0;
	font-size: 0.74rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: rgba(216, 178, 109, 0.88);
	font-weight: 620;
}

.wny-repeater__controls {
	display: flex;
	justify-content: flex-start;
	margin-bottom: 0.8rem;
}

.wny-repeater__add {
	min-width: 0;
	padding-inline: 1.1rem;
}

.wny-repeater__remove {
	appearance: none;
	border: 1px solid rgba(255, 255, 255, 0.16);
	background: rgba(255, 255, 255, 0.03);
	color: #e7dccd;
	font-size: 0.76rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	font-weight: 600;
	border-radius: 999px;
	padding: 0.35rem 0.66rem;
	cursor: pointer;
}

.wny-repeater__remove:hover,
.wny-repeater__remove:focus-visible {
	border-color: rgba(216, 178, 109, 0.46);
	color: #fff7ea;
	outline: none;
}

.wny-form__field input:not([type="radio"]):not([type="checkbox"]),
.wny-form__field select,
.wny-form__field textarea {
	width: 100%;
	padding: 0.9rem 1rem;
	border-radius: 11px;
	border: 1px solid rgba(255, 255, 255, 0.11);
	background: rgba(255, 255, 255, 0.035);
	box-shadow: none;
	color: var(--wny-text);
	font-size: 1.03rem;
	font-family: inherit;
	transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.wny-form__field textarea {
	resize: vertical;
	min-height: 10rem;
	padding-top: 0.86rem;
}

.wny-upload {
	position: relative;
}

.wny-upload__input {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	clip: rect(0, 0, 0, 0);
	clip-path: inset(50%);
	overflow: hidden;
	white-space: nowrap;
	border: 0;
}

.wny-upload__surface {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 0.32rem;
	flex-wrap: wrap;
	padding: 0.9rem 1rem;
	border-radius: 11px;
	border: 1px solid rgba(255, 255, 255, 0.11);
	background-color: rgba(255, 255, 255, 0.03);
	background-image: radial-gradient(circle, rgba(216, 178, 109, 0.12) 1px, transparent 1.1px);
	background-size: 12px 12px;
	background-position: center;
	cursor: pointer;
	text-align: center;
	transition: border-color 180ms ease, background-color 180ms ease;
}

	.wny-upload__surface:hover,
	.wny-upload.is-dragover .wny-upload__surface,
	.wny-upload__input:focus-visible + .wny-upload__surface {
	border-color: rgba(255, 255, 255, 0.18);
	background: rgba(255, 255, 255, 0.05);
}

.wny-upload__title {
	font-size: 0.92rem;
	font-weight: 620;
	line-height: 1.3;
	color: #ddd3c4;
}


.wny-upload__meta {
	font-size: 0.8rem;
	line-height: 1.3;
	color: #bdb2a3;
}

.wny-upload__name {
	font-size: 0.86rem;
	line-height: 1.2;
	color: #cec4b6;
}

.wny-form__field input:not([type="radio"]):not([type="checkbox"])::placeholder,
.wny-form__field textarea::placeholder {
	color: rgba(201, 192, 180, 0.6);
}

.wny-form__field select {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	padding-right: 2.3rem;
	cursor: pointer;
}

.wny-custom-select__native {
	margin: 0;
}

.js .wny-custom-select__native {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	opacity: 0;
	pointer-events: none;
	clip: rect(0, 0, 0, 0);
	clip-path: inset(50%);
	overflow: hidden;
	white-space: nowrap;
	border: 0;
}

.wny-custom-select {
	position: relative;
}

.wny-custom-select__trigger {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 0.9rem;
	padding: 0.9rem 1rem;
	border-radius: 11px;
	border: 1px solid rgba(255, 255, 255, 0.11);
	background: rgba(255, 255, 255, 0.035);
	box-shadow: none;
	color: var(--wny-text);
	font-size: 1.03rem;
	font-family: inherit;
	text-align: left;
	cursor: pointer;
	transition: border-color 180ms ease, background-color 180ms ease;
}

.wny-custom-select__trigger:focus-visible {
	outline: none;
	border-color: rgba(255, 255, 255, 0.18);
	background: rgba(255, 255, 255, 0.05);
	box-shadow: none;
}

.wny-custom-select__current {
	line-height: 1.2;
}

.wny-custom-select__chevron {
	width: 0.6rem;
	height: 0.6rem;
	border-right: 2px solid rgba(216, 178, 109, 0.9);
	border-bottom: 2px solid rgba(216, 178, 109, 0.9);
	transform: rotate(45deg) translateY(-1px);
	transition: transform 160ms ease;
	flex-shrink: 0;
}

.wny-custom-select.is-open .wny-custom-select__chevron {
	transform: rotate(-135deg) translateY(1px);
}

.wny-custom-select__menu {
	position: absolute;
	left: 0;
	right: 0;
	top: calc(100% + 0.45rem);
	z-index: 20;
	display: none;
	padding: 0.4rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 0.9rem;
	background: rgba(15, 13, 10, 0.98);
	box-shadow: none;
	-webkit-backdrop-filter: none;
	backdrop-filter: none;
	cursor: pointer;
}

.wny-custom-select.is-open .wny-custom-select__menu {
	display: grid;
	gap: 0.3rem;
}

.wny-custom-select__option {
	width: 100%;
	padding: 0.62rem 0.72rem;
	border: 0;
	border-radius: 0.6rem;
	background: transparent;
	color: #f2eee8;
	font-size: 0.96rem;
	font-family: inherit;
	text-align: left;
	cursor: pointer;
}

.wny-custom-select__option.is-selected {
	cursor: pointer;
}

.wny-custom-select__option:hover,
.wny-custom-select__option:focus-visible,
.wny-custom-select__option.is-selected {
	background: transparent;
	color: #fff;
	outline: none;
}

.wny-custom-select.is-invalid .wny-custom-select__trigger {
	border-color: rgba(221, 112, 112, 0.55);
	box-shadow: none;
}

.wny-form__field--select {
	position: relative;
}

.wny-form__field--select::after {
	content: "";
	position: absolute;
	right: 0.9rem;
	bottom: 0.95rem;
	width: 0.52rem;
	height: 0.52rem;
	border-right: 2px solid rgba(216, 178, 109, 0.85);
	border-bottom: 2px solid rgba(216, 178, 109, 0.85);
	transform: rotate(45deg);
	pointer-events: none;
}

.wny-form__field input:not([type="radio"]):not([type="checkbox"]):focus,
.wny-form__field select:focus,
.wny-form__field textarea:focus {
	outline: none;
	border-color: rgba(255, 255, 255, 0.18);
	background: rgba(255, 255, 255, 0.05);
	box-shadow: none;
}

.wny-form__field.is-invalid input:not([type="radio"]):not([type="checkbox"]),
.wny-form__field.is-invalid select,
.wny-form__field.is-invalid textarea {
	border-color: rgba(221, 112, 112, 0.7);
	background: rgba(92, 28, 28, 0.2);
}

.wny-form__validation {
	position: static;
	margin: 0.18rem 0 0;
	font-size: 0.8rem;
	line-height: 1.35;
	min-height: 0;
	max-width: none;
	color: #9e988f;
	pointer-events: none;
}

.wny-form__validation[hidden] {
	display: none !important;
}

.wny-form__validation.is-error {
	color: #f6b8b8;
}

.info-card--form .home-button {
	width: auto;
	min-width: 17rem;
	min-height: 3.05rem;
	justify-self: flex-start;
	padding-inline: 1.6rem;
	margin-top: 0.2rem;
}

.form-privacy-note {
	margin: 0;
	padding-top: 0;
	font-size: 0.9rem;
	line-height: 1.48;
	color: #cfc6ba;
	max-width: 92ch;
}

.form-eeo-note {
	font-size: 0.82rem;
	line-height: 1.45;
	color: #b8ad9d;
}

.js .wny-form--join-stepper .form-privacy-note {
	display: none;
}

.js .wny-form--join-stepper.is-last-step .form-privacy-note {
	display: block;
}

.wny-stepper-actions {
	display: flex;
	gap: 0.66rem;
	flex-wrap: wrap;
	align-items: center;
}

.wny-stepper-actions .home-button {
	min-width: 0;
	flex: 1 1 12.5rem;
}

.wny-stepper-actions__prev,
.wny-stepper-actions__next {
	display: none;
}

.wny-stepper-actions__submit {
	display: inline-flex;
}

.js .wny-stepper-actions__prev,
.js .wny-stepper-actions__next {
	display: inline-flex;
}


.js .wny-stepper-actions__submit {
	display: none;
}

.js .wny-form--join-stepper.is-last-step .wny-stepper-actions__next {
	display: none;
}

.js .wny-form--join-stepper.is-last-step .wny-stepper-actions__submit {
	display: inline-flex;
}

.js .wny-form--join-stepper.is-first-step .wny-stepper-actions__prev {
	display: none;
}

.wny-form__footer--contact {
	gap: 0.72rem;
	padding-top: 0.2rem;
	margin-top: 0;
	border-top: 0;
}

.form-privacy-note--contact {
	font-size: 0.84rem;
	line-height: 1.45;
	color: #bdb3a7;
	max-width: 78ch;
}

.wny-form__footer {
	display: grid;
	gap: 0.95rem;
	padding-top: 1.15rem;
	margin-top: 1.15rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	background: transparent;
	border-radius: 0;
}

.entry-title {
	margin-top: 0;
	margin-bottom: 0.9rem;
}

.entry-meta {
	margin-bottom: 1rem;
	font-size: 0.84rem;
	color: var(--wny-muted);
}

/* Home */
.home-page {
	display: grid;
	--wny-home-rail: 84rem;
	gap: clamp(5rem, 9vw, 8.5rem);
}

.home-eyebrow {
	margin: 0 0 0.42rem;
	font-size: 0.75rem;
	font-weight: 650;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #d1c7bb;
}

.home-intro {
	display: grid;
	justify-items: center;
	text-align: center;
	gap: clamp(0.85rem, 1.6vw, 1.25rem);
	max-width: 72rem;
	margin: 0 auto;
	padding-top: clamp(3.7rem, 7vw, 5.5rem);
	padding-bottom: clamp(1.1rem, 2.5vw, 1.7rem);
}

.home-intro h1 {
	font-size: clamp(1.95rem, 3.8vw, 3.15rem);
	line-height: 1.09;
	max-width: none;
	margin: 0;
}

.home-title-line {
	display: block;
	white-space: nowrap;
}

.home-hero-divider {
	width: 200px;
	height: 2px;
	margin: clamp(0.28rem, 0.8vw, 0.45rem) auto clamp(0.48rem, 1.2vw, 0.82rem);
	background: rgba(200, 184, 151, 0.8);
}

.home-hero-rotator {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	min-height: 3.05em;
	max-width: 48ch;
	text-align: center;
	font-size: clamp(1.25rem, 1.65vw, 1.6rem);
	line-height: 1.45;
	font-weight: 560;
	color: #efe7db;
}

.home-hero-rotator__text {
	display: inline;
	max-width: 100%;
	white-space: normal;
}

.home-hero-rotator__text::after {
	content: "";
	display: inline-block;
	width: 1px;
	height: 1.05em;
	margin-left: 0.12em;
	background: rgba(231, 214, 179, 0.95);
	transform: translateY(3px);
	animation: home-caret-blink 0.9s step-end infinite;
}

.home-hero-rotator__caret {
	display: none;
}

.home-subtitle {
	margin: 0;
	max-width: 50ch;
	text-align: center;
	font-size: 1.03rem;
	color: #cfc5bb;
}

.home-hero__actions,
.home-mini-actions,
.home-contact__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.home-hero__actions {
	justify-content: center;
}

.home-media-placeholder--showcase {
	width: min(100%, 940px);
	aspect-ratio: 1008 / 569;
	min-height: 0;
}

.home-showcase__subtext {
	margin: 0;
	max-width: 58ch;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0.6rem;
	text-align: center;
	font-size: clamp(1.04rem, 1.2vw, 1.22rem);
	font-weight: 540;
	color: #e2d6c4;
}

.home-hero-rotator + .home-showcase__subtext {
	margin-top: 0.2rem;
}

.home-showcase__lead {
	color: #c8b897;
	text-decoration: underline;
	text-underline-offset: 0.18em;
}

.home-showcase__apply.home-button {
	padding: 0.52rem 0.9rem;
	font-size: 0.86rem;
	line-height: 1;
}

.home-intro .home-media-placeholder--showcase {
	margin-top: clamp(0.65rem, 1.5vw, 1.2rem);
}

.home-snapshot {
	display: flex;
	align-items: center;
	width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	padding-top: clamp(5.8rem, 10vw, 8.8rem);
	padding-bottom: clamp(5.8rem, 10vw, 8.8rem);
	min-height: clamp(26rem, 40vw, 34rem);
	position: relative;
	border-top: 1px solid rgba(168, 194, 236, 0.22);
	border-bottom: 1px solid rgba(168, 194, 236, 0.18);
}

.home-snapshot__inner {
	--home-snapshot-gap: clamp(3.6rem, 6vw, 6rem);
	display: grid;
	grid-template-columns: 1fr;
	row-gap: clamp(2.2rem, 3.8vw, 3.5rem);
	max-width: min(88rem, calc(100vw - clamp(2.4rem, 7vw, 8rem)));
	width: 100%;
	margin: 0 auto;
	padding: 0 clamp(1.25rem, 3.5vw, 3rem);
	position: relative;
	z-index: 1;
}

.home-snapshot__header {
	grid-column: 1 / -1;
	display: grid;
	gap: 0.5rem;
	justify-items: center;
	text-align: center;
	padding-bottom: clamp(1rem, 2vw, 1.4rem);
	border-bottom: 1px solid rgba(200, 184, 151, 0.22);
}

.home-snapshot__header .home-eyebrow {
	font-size: clamp(1rem, 1.05vw, 1.08rem);
}

.home-snapshot__header h2 {
	margin: 0;
	font-size: clamp(1.95rem, 3vw, 2.85rem);
	line-height: 1.16;
	max-width: 24ch;
}

.home-snapshot::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image:
		radial-gradient(circle, rgba(163, 186, 224, 0.18) 0.9px, transparent 1.1px),
		linear-gradient(180deg, rgba(170, 198, 245, 0.06) 0%, rgba(170, 198, 245, 0) 65%);
	background-size: 16px 16px, 100% 100%;
	background-position: top left, top center;
	opacity: 0.48;
	z-index: 0;
}


.home-snapshot__stage {
	--home-snapshot-row-gap: clamp(3.4rem, 6.8vw, 5.9rem);
	display: grid;
	gap: var(--home-snapshot-row-gap);
	padding: 0 clamp(0.45rem, 1vw, 0.9rem);
	position: relative;
	z-index: 2;
}

.home-snapshot-band {
	--home-snapshot-accent: rgba(200, 184, 151, 0.42);
	display: grid;
	grid-template-columns: minmax(2.4rem, 3.1rem) minmax(0, 1.05fr) minmax(0, 0.95fr) minmax(12.2rem, 14rem);
	column-gap: clamp(1.2rem, 2.5vw, 2.7rem);
	align-items: center;
	padding: clamp(2.25rem, 3.5vw, 3.25rem) clamp(1rem, 1.8vw, 1.7rem);
	min-height: clamp(12.5rem, 17vw, 14.5rem);
	border: 1px solid rgba(200, 184, 151, 0.16);
	background:
		linear-gradient(90deg, rgba(200, 184, 151, 0.08) 0%, rgba(200, 184, 151, 0) 24%),
		linear-gradient(180deg, rgba(8, 13, 22, 0.32) 0%, rgba(8, 13, 22, 0) 70%);
	position: relative;
}

.home-snapshot-band + .home-snapshot-band {
	margin-top: 0;
}

.home-snapshot-band::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: calc(var(--home-snapshot-row-gap) * -0.55);
	height: 2px;
	background: rgba(200, 184, 151, 0.42);
}

.home-snapshot-band:last-child::after {
	display: none;
}

.home-snapshot-band--comp {
	--home-snapshot-accent: rgba(168, 194, 236, 0.4);
}

.home-snapshot-band--locations {
	--home-snapshot-accent: rgba(186, 209, 181, 0.42);
}

.locations-snapshot {
	display: grid;
	gap: clamp(2.2rem, 4vw, 3.5rem);
	padding-top: clamp(1.2rem, 2.2vw, 2rem);
}

.locations-snapshot__stage {
	padding-inline: 0;
}

.locations-band--hamburg {
	--home-snapshot-accent: rgba(216, 178, 109, 0.44);
}

.locations-band--blasdell {
	--home-snapshot-accent: rgba(168, 194, 236, 0.42);
}

.locations-band--tonawanda {
	--home-snapshot-accent: rgba(186, 209, 181, 0.42);
}


.home-snapshot-band__index {
	margin: 0;
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: clamp(1.8rem, 2.8vw, 2.5rem);
	line-height: 1;
	font-weight: 600;
	color: rgba(226, 214, 196, 0.7);
	padding-top: 0.1rem;
}

.home-snapshot-band__main {
	display: grid;
	gap: 0.48rem;
}

.home-snapshot-band__main h3 {
	margin: 0;
	font-size: clamp(1.26rem, 2vw, 1.7rem);
	line-height: 1.12;
	max-width: 20ch;
}

.home-snapshot-band__main h3::after {
	content: "";
	display: block;
	width: 64px;
	height: 3px;
	margin: 20px 0 20px;
	background: var(--home-snapshot-accent);
}

.home-snapshot-band__main p {
	margin: 0;
	max-width: 44ch;
	font-size: 1.02rem;
	line-height: 1.56;
	color: #d1c8be;
}


.home-snapshot-band__list {
	list-style: none;
	margin: 0;
	padding: 0.2rem 0 0 clamp(0.5rem, 1vw, 0.9rem);
	border-left: 0;
	display: grid;
	gap: 0.7rem;
	align-self: center;
	justify-self: start;
}

.home-snapshot-band__list li {
	position: relative;
	padding-left: 0.95rem;
	font-size: 0.98rem;
	line-height: 1.46;
	color: #d5ccbf;
}

.home-snapshot-band__list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--home-snapshot-accent);
}

.home-snapshot-band__cta {
	margin: 0;
	align-self: center;
	justify-self: end;
	padding-left: 0;
	border-left: 0;
}

.home-snapshot-band__cta .home-button {
	padding: 0.72rem 1.1rem;
	font-size: 0.88rem;
	font-weight: 610;
	line-height: 1;
	border-color: rgba(200, 184, 151, 0.42);
}

.home-rows {
	display: grid;
	gap: clamp(10rem, 13vw, 11.4rem);
	max-width: var(--wny-home-rail);
	margin: 0 auto;
	padding-top: clamp(2.2rem, 4vw, 3.6rem);
}

.home-row {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
	gap: clamp(2.2rem, 4.2vw, 3.8rem);
	align-items: center;
	min-height: clamp(14rem, 24vw, 21rem);
}

.home-row--two {
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.home-row__text {
	display: grid;
	gap: 0.7rem;
	align-content: start;
}

.home-row__text--primary h2,
.home-row__text--secondary h3 {
	font-size: clamp(1.95rem, 3vw, 2.85rem);
	line-height: 1.12;
	max-width: 16ch;
	margin: 0;
	letter-spacing: -0.012em;
}

.home-row__text--primary h2 {
	max-width: 19ch;
}

.home-row__text p {
	margin: 0;
	max-width: 54ch;
	font-size: clamp(1rem, 1.05vw, 1.08rem);
	color: #d6cdc2;
}



.home-feature-card,
.home-mini-card {
	border: 0;
	border-radius: 0;
	background: transparent;
	padding: 0;
	-webkit-backdrop-filter: none;
	backdrop-filter: none;
}

.home-feature-card {
	display: grid;
	gap: 0.75rem;
}

.home-feature-card h2 {
	font-size: clamp(2.1rem, 3.4vw, 3.2rem);
	line-height: 0.98;
	max-width: 10ch;
	margin: 0;
}

.home-feature-card p {
	max-width: 54ch;
	margin: 0;
}

.home-side-stack {
	display: grid;
	gap: clamp(1.3rem, 2.6vw, 2rem);
	align-content: start;
}

.home-mini-card h3 {
	font-size: clamp(1.5rem, 2.1vw, 1.95rem);
	line-height: 1.04;
	margin: 0.1rem 0 0.5rem;
}

.home-mini-card p {
	margin-bottom: 0;
	font-size: 1rem;
}

.home-mini-actions {
	margin-top: 0.85rem;
}

.home-cta-row {
	display: grid;
	grid-template-columns: 1fr;
	align-items: center;
	gap: 0;
	width: 100%;
	max-width: var(--wny-home-rail, 84rem);
	margin: 0 auto;
	margin-top: clamp(1.6rem, 3vw, 3rem);
	padding: clamp(2.25rem, 4vw, 3.4rem) clamp(1.4rem, 2.8vw, 2.3rem);
	border: 1px solid rgba(216, 178, 109, 0.34);
	border-radius: 1.15rem;
	background: linear-gradient(180deg, rgba(32, 25, 18, 0.93) 0%, rgba(20, 16, 13, 0.95) 100%);
	box-shadow: 0 24px 44px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
	-webkit-backdrop-filter: blur(2px);
	backdrop-filter: blur(2px);
}

.home-cta-row__content {
	display: grid;
	justify-items: center;
	text-align: center;
	gap: 0.55rem;
}

.home-cta-row__content h2,
.home-cta-row__content h3 {
	font-size: clamp(1.9rem, 3.2vw, 2.8rem);
	line-height: 1;
	margin: 0 0 0.68rem;
}

.home-cta-row__content p {
	margin: 0;
	max-width: 48ch;
	font-size: 1rem;
	color: #d8d0c6;
}

.home-cta-row__content--split {
	gap: 0.85rem;
}

.home-cta-row__text-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(1rem, 3vw, 2.6rem);
	width: min(100%, 54rem);
}

.home-cta-row__text-grid p {
	max-width: none;
	font-size: 0.95rem;
	line-height: 1.55;
}

.home-cta-row__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.85rem;
}

.home-cta-row .home-button {
	padding: 0.76rem 1.12rem;
	font-size: 0.92rem;
}

.home-media-placeholder {
	display: grid;
	place-items: center;
	min-height: clamp(19rem, 35vw, 25rem);
	padding: 1rem;
	text-align: center;
	position: relative;
	overflow: hidden;
	border: 1px solid var(--wny-border);
	border-radius: 1.2rem;
	background-color: #161311;
	background-image:
		linear-gradient(150deg, rgba(7, 7, 7, 0.96), rgba(40, 34, 29, 0.88) 48%, rgba(87, 73, 61, 0.45)),
		radial-gradient(circle at 20% 24%, rgba(255, 255, 255, 0.1), transparent 19%),
		radial-gradient(circle at 78% 28%, rgba(255, 255, 255, 0.06), transparent 18%);
	box-shadow: var(--wny-shadow);
}

.home-media-placeholder::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, transparent 24%, rgba(255, 255, 255, 0.09) 48%, transparent 78%);
	opacity: 0.55;
	pointer-events: none;
}

.home-media-placeholder span {
	position: relative;
	z-index: 1;
	font-size: 0.66rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.72);
}

.home-media-placeholder--image {
	padding: 0;
	place-items: stretch;
}

.home-media-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: inherit;
}

.home-media-placeholder--feature {
	min-height: clamp(23rem, 37vw, 31rem);
	margin-bottom: 0.7rem;
}

.home-media-placeholder--mini {
	min-height: clamp(11rem, 16vw, 14.2rem);
	margin-bottom: 0.6rem;
}

.home-row--one .home-row__media {
	aspect-ratio: 1008 / 569;
	min-height: 0;
}

.home-row--two .home-row__media {
	aspect-ratio: 16 / 9;
	min-height: 0;
}

@keyframes home-caret-blink {
	0%,
	50% {
		opacity: 1;
	}

	50.01%,
	100% {
		opacity: 0;
	}
}

/* Footer */
.site-footer {
	margin-top: auto;
	border-top: 1px solid var(--wny-border);
	background: #11100e;
	color: var(--wny-text);
}

.site-footer__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr));
	gap: clamp(1.25rem, 4vw, 3rem);
	padding-top: clamp(3rem, 7vw, 5rem);
	padding-bottom: clamp(2.75rem, 6vw, 4rem);
}

.site-footer__brand-mark {
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
	margin-bottom: 0.7rem;
}

.site-footer__mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.35rem;
	height: 2.35rem;
	border: 1px solid var(--wny-border);
	border-radius: var(--wny-radius-sm);
	background-color: rgba(255, 255, 255, 0.03);
}

.site-footer__mark-image {
	display: block;
	width: 1.48rem;
	height: 1.48rem;
	object-fit: contain;
}

.site-footer__brand-title {
	margin: 0;
	font-family: "Source Serif 4", "Iowan Old Style", Georgia, serif;
	font-size: clamp(1.2rem, 2vw, 1.7rem);
	line-height: 1.03;
	letter-spacing: -0.02em;
	color: var(--wny-text);
}

.site-footer__brand-text,
.site-footer__copy,
.site-footer__legal a {
	color: var(--wny-muted);
}

.site-footer__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(1rem, 2vw, 2rem);
	grid-column: span 2;
}

.site-footer__heading {
	margin: 0 0 0.75rem;
	color: var(--wny-accent);
	font-size: 0.74rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.site-footer__list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 0.55rem;
}

.site-footer__list a {
	font-size: 0.98rem;
	text-decoration: none;
	color: var(--wny-text);
}

.site-footer__list a:hover,
.site-footer__legal a:hover {
	color: #fff;
}

.site-footer__bar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding-top: 1.55rem;
	padding-bottom: 1.65rem;
	border-top: 1px solid var(--wny-border);
}

.site-footer__copy {
	margin: 0;
	font-size: 0.86rem;
}

.site-footer__legal {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1rem;
}

.site-footer__legal a {
	font-size: 0.84rem;
	text-decoration: none;
}

/* Utility */
.screen-reader-text {
	position: absolute;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	width: 1px;
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	border: 0;
	word-wrap: normal;
}

.screen-reader-text:focus {
	clip: auto;
	clip-path: none;
	width: auto;
	height: auto;
	margin: 0.5rem;
	padding: 0.5rem 0.75rem;
	border-radius: 0.5rem;
	background: var(--wny-accent);
	color: var(--wny-accent-ink);
	z-index: 9999;
}

.fade-in-up {
	opacity: 0;
	transform: translateY(14px);
	animation: fade-in-up 420ms ease-out forwards;
}

@keyframes fade-in-up {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 1100px) {
	.site-header__inner {
		grid-template-columns: minmax(0, 1fr) auto;
		gap: 0.65rem;
		position: relative;
	}

	.site-branding,
	.site-header__actions {
		position: relative;
		z-index: 140;
	}

	.site-description,
	.header-cta--desktop {
		display: none;
	}

	.menu-toggle {
		display: inline-flex;
	}

	.primary-nav {
		justify-self: stretch;
		grid-column: 1 / -1;
		grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
		grid-template-areas:
			"eyebrow list"
			"title list"
			"desc list"
			"cta list";
		column-gap: clamp(3rem, 5.2vw, 5.2rem);
		row-gap: 1rem;
		align-items: start;
		padding-top: clamp(2.6rem, 4vw, 3.4rem);
		padding-bottom: clamp(1.6rem, 2.8vw, 2.4rem);
	}

	.js .primary-nav {
		position: fixed;
		inset: 0;
		top: 0;
		left: 0;
		right: 0;
		display: flex;
		align-items: center;
		justify-content: center;
		padding: clamp(5.6rem, 12vw, 7.2rem) clamp(1.1rem, 5vw, 3rem) clamp(2rem, 7vw, 4rem);
		background: rgba(15, 13, 11, 0.98);
		opacity: 0;
		pointer-events: none;
		transform: translateY(-6px);
		transition: opacity 200ms ease, transform 200ms ease;
		z-index: 130;
		overflow-y: auto;
	}

	.js .site-header.is-menu-open .primary-nav {
		opacity: 1;
		pointer-events: auto;
		transform: translateY(0);
	}

	.js .primary-nav__inner {
		display: grid;
		gap: 1.1rem;
		width: min(100%, 34rem);
		border: 0;
		border-radius: 0;
		padding: 0;
		background: transparent;
		box-shadow: none;
	}

	.primary-nav__menu,
	.primary-nav .menu {
		align-items: stretch;
		flex-direction: column;
		gap: 0.45rem;
	}

	.primary-nav__menu a,
	.primary-nav .menu a {
		justify-content: flex-start;
		width: 100%;
		padding: 0.82rem 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
		border-radius: 0;
		font-size: clamp(1.3rem, 5vw, 2.1rem);
		line-height: 1.05;
	}

	.header-cta--mobile {
		display: inline-flex;
		width: 100%;
		margin-top: 0.65rem;
		padding: 0.9rem 1rem;
		font-size: clamp(1.15rem, 4.4vw, 1.82rem);
		line-height: 1.05;
	}
}

@media (max-width: 768px) {
	.site-header__inner {
		grid-template-columns: minmax(0, 1fr) auto;
		gap: 0.65rem;
		position: relative;
	}

	.site-branding,
	.site-header__actions {
		position: relative;
		z-index: 140;
	}

	.site-description,
	.header-cta--desktop {
		display: none;
	}

	.menu-toggle {
		display: inline-flex;
	}

	.primary-nav {
		justify-self: stretch;
		grid-column: 1 / -1;
		grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
		grid-template-areas:
			"eyebrow list"
			"title list"
			"desc list"
			"cta list";
		column-gap: clamp(3rem, 5.2vw, 5.2rem);
		row-gap: 1rem;
		align-items: start;
		padding-top: clamp(2.6rem, 4vw, 3.4rem);
		padding-bottom: clamp(1.6rem, 2.8vw, 2.4rem);
	}

	.js .primary-nav {
		position: fixed;
		inset: 0;
		top: 0;
		left: 0;
		right: 0;
		display: flex;
		align-items: center;
		justify-content: center;
		padding: clamp(5.6rem, 12vw, 7.2rem) clamp(1.1rem, 5vw, 3rem) clamp(2rem, 7vw, 4rem);
		background: rgba(15, 13, 11, 0.98);
		opacity: 0;
		pointer-events: none;
		transform: translateY(-6px);
		transition: opacity 200ms ease, transform 200ms ease;
		z-index: 130;
		overflow-y: auto;
	}

	.js .site-header.is-menu-open .primary-nav {
		opacity: 1;
		pointer-events: auto;
		transform: translateY(0);
	}

	.js .primary-nav__inner {
		display: grid;
		gap: 1.1rem;
		width: min(100%, 34rem);
		border: 0;
		border-radius: 0;
		padding: 0;
		background: transparent;
		box-shadow: none;
	}

	.primary-nav__menu,
	.primary-nav .menu {
		align-items: stretch;
		flex-direction: column;
		gap: 0.45rem;
	}

	.primary-nav__menu a,
	.primary-nav .menu a {
		justify-content: flex-start;
		width: 100%;
		padding: 0.82rem 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
		border-radius: 0;
		font-size: clamp(1.3rem, 5vw, 2.1rem);
		line-height: 1.05;
	}

	.header-cta--mobile {
		display: inline-flex;
		width: 100%;
		margin-top: 0.65rem;
		padding: 0.9rem 1rem;
		font-size: clamp(1.15rem, 4.4vw, 1.82rem);
		line-height: 1.05;
	}

	.home-intro {
		justify-items: center;
		text-align: center;
		gap: 0.88rem;
		padding-top: clamp(3.7rem, 8.8vw, 4.8rem);
	}

	.home-intro h1 {
		font-size: clamp(1.9rem, 8vw, 2.7rem);
		max-width: 16ch;
	}

	.home-title-line {
		white-space: normal;
	}

	.home-subtitle {
		font-size: 0.92rem;
	}

	.home-hero__actions {
		justify-content: center;
	}

	.home-media-placeholder--showcase {
		width: 100%;
		aspect-ratio: 1008 / 569;
	}

	.home-showcase__subtext {
		text-align: center;
		max-width: 40ch;
		font-size: 0.98rem;
		gap: 0.45rem;
	}

	.home-hero-rotator {
		max-width: 32ch;
		min-height: 3.8em;
		text-align: center;
		font-size: clamp(1.03rem, 3.9vw, 1.16rem);
		line-height: 1.5;
	}

	.home-hero-divider {
		width: 140px;
		margin-top: 0.2rem;
		margin-bottom: 0.65rem;
	}

	.home-hero-rotator__caret {
		height: 0.88em;
	}

	.home-rows {
		gap: 2.45rem;
		padding-top: 1.65rem;
	}

	.home-snapshot {
		display: block;
		padding-top: 1.4rem;
		padding-bottom: 1rem;
		min-height: 0;
	}

	.home-snapshot__inner {
		--home-snapshot-gap: 0;
		grid-template-columns: 1fr;
	}

	.home-snapshot__header {
		justify-items: start;
		text-align: left;
	}

	.home-snapshot__stage {
		--home-snapshot-row-gap: 1.35rem;
		gap: var(--home-snapshot-row-gap);
		padding: 0;
	}

	.home-snapshot-band {
		grid-template-columns: 1fr;
		column-gap: 0;
		row-gap: 0.8rem;
		padding: 1.35rem 0;
		min-height: 0;
		border-left: 0;
		border-right: 0;
	}

	.home-snapshot-band + .home-snapshot-band {
		margin-top: 0;
	}

	.home-snapshot-band::after {
		display: none;
	}

	.home-snapshot-band:last-child {
		border-bottom: 0;
	}

	.home-snapshot-band__index {
		font-size: 1.5rem;
		padding-top: 0;
	}

	.home-snapshot-band__main h3 {
		font-size: 1.2rem;
		max-width: none;
	}

	.home-snapshot-band__main p {
		max-width: none;
		font-size: 0.98rem;
	}

	.home-snapshot-band__list {
		max-width: none;
		padding-left: 0;
		border-left: 0;
		gap: 0.55rem;
	}

	.home-snapshot-band__list li {
		font-size: 0.9rem;
		padding-left: 0.78rem;
	}

	.home-snapshot-band__cta {
		margin-top: 0.28rem;
		justify-self: start;
		align-self: start;
		padding-left: 0;
		border-left: 0;
	}

	.home-row,
	.home-row--two {
		grid-template-columns: 1fr;
		gap: 1.2rem;
	}

	.home-cta-row__actions {
		justify-content: center;
	}

	.home-cta-row__text-grid {
		grid-template-columns: 1fr;
		width: 100%;
	}

	.home-feature-card,
	.home-mini-card {
		padding: 0;
	}

	.home-contact__actions {
		justify-content: flex-start;
	}

	.info-grid--two,
	.info-grid--three,
	.stat-grid,
	.wny-form__grid {
		grid-template-columns: 1fr;
	}

	.join-reassurance {
		grid-template-columns: 1fr;
		gap: 0.9rem;
	}

	.join-reassurance__title {
		font-size: clamp(1.6rem, 6.4vw, 2.2rem);
	}

	.reassurance-list {
		grid-template-columns: 1fr;
	}

	.reassurance-list--badges {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.join-form-card {
		padding: 1.15rem;
	}

	.join-alt-application {
		flex-direction: column;
		align-items: flex-start;
	}

	.join-alt-application__link {
		width: 100%;
	}



	.wny-stepper-nav {
		display: grid;
		grid-template-columns: repeat(10, minmax(0, 1fr));
		align-items: center;
		gap: 0.24rem;
		width: 100%;
		overflow: visible;
		padding-bottom: 0;
	}

	.wny-stepper-nav::-webkit-scrollbar {
		display: none;
	}

	.wny-stepper-nav__button {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		min-width: 0;
		height: auto;
		aspect-ratio: 1 / 1;
		padding: 0;
		font-size: 0;
		line-height: 1;
		letter-spacing: 0;
		border-radius: 999px;
		white-space: nowrap;
	}

	.wny-stepper-nav__button::before {
		content: attr(data-step-number);
		display: block;
		font-size: 0.74rem;
		font-weight: 700;
		line-height: 1;
	}

	.about-page .about-why-card {
		margin-top: 0;
	}

	.about-page .about-company-card {
		grid-template-columns: 1fr;
		grid-template-areas:
			"title"
			"media"
			"copy";
	}

	.about-page .about-company-copy {
		grid-template-rows: auto;
		height: auto;
		align-self: start;
	}

	.about-page .about-divider {
		margin: 1.7rem 0 1.7rem;
	}

	.about-page .about-why-list li:nth-child(2),
	.about-page .about-why-list li:nth-child(3),
	.about-page .about-why-list li:nth-child(4),
	.about-page .about-why-list li:nth-child(5) {
		margin-left: 0;
	}

	.about-page .about-bottom-tiles {
		margin-top: 1rem;
	}

	.info-card--form .home-button {
		width: 100%;
		min-width: 0;
	}

	.wny-form__row--two {
		grid-template-columns: 1fr;
	}

	.wny-form__field--full {
		grid-column: auto;
	}

	.wny-location-tiles {
		grid-template-columns: 1fr;
	}

	.wny-stepper-actions .home-button {
		flex-basis: 100%;
	}

	.home-media-placeholder,
	.home-media-placeholder--feature,
	.home-media-placeholder--mini {
		min-height: 17rem;
	}

	.page .site-main .open-role {
		grid-template-columns: 1fr;
		grid-template-areas:
			"title"
			"desc"
			"cta";
		row-gap: 0.72rem;
	}

	.page .site-main .open-role .home-button {
		justify-self: stretch;
		width: 100%;
		min-width: 0;
	}

	.site-footer__inner,
	.site-footer__grid {
		grid-template-columns: 1fr;
	}

	.site-footer__grid {
		grid-column: auto;
	}
}

@media (min-width: 1101px) {
	.header-cta--desktop {
		display: inline-flex;
	}

	.header-cta--mobile {
		display: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	* {
		animation-duration: 1ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 1ms !important;
		scroll-behavior: auto !important;
	}
}

@media (max-width: 560px) {
	.wny-stepper-nav__button {
		border-width: 1px;
	}

	.wny-stepper-nav__button::before {
		font-size: 0.62rem;
	}

	.reassurance-list--badges {
		grid-template-columns: 1fr;
	}
}
