/*
 * WebYoungstown front-end design system.
 *
 * The visual language is recovered from the refined prototype and applied to
 * native Elementor containers/widgets. Layout classes live on Elementor
 * elements so the content remains editable without duplicating presentation
 * settings in every seeded widget.
 */

:root {
	--wy-paper: #f6f2ec;
	--wy-card: #ffffff;
	--wy-soft: #efe9df;
	--wy-ink: #1a1a1c;
	--wy-ink-2: #3a3a3d;
	--wy-ink-3: #65656b;
	--wy-ink-4: #9a9a9f;
	--wy-red: #b8242a;
	--wy-red-deep: #8e1a1f;
	--wy-red-soft: #e8dcdb;
	--wy-copper: #c5793e;
	--wy-ember: #e1a05e;
	--wy-sage: #8aa38c;
	--wy-line: rgba(26, 26, 28, 0.1);
	--wy-line-soft: rgba(26, 26, 28, 0.06);
	--wy-display: "Archivo", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--wy-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--wy-editorial: "Fraunces", Georgia, "Times New Roman", serif;
	--wy-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
	--wy-max: 1280px;
	--wy-narrow: 1120px;
	--wy-article: 820px;
	--wy-gutter: clamp(20px, 4vw, 56px);
	--wy-header-height: 78px;
	--wy-section-space: clamp(76px, 8vw, 112px);
	--wy-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
	--wy-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
	--wy-shadow: 0 24px 48px rgba(26, 26, 28, 0.1);
	--wy-process-duration: 9000ms;
}

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

html {
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--wy-header-height) + 22px);
}

body.wy-site {
	margin: 0;
	background: var(--wy-paper);
	color: var(--wy-ink);
	font-family: var(--wy-body);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: clip;
}

body.wy-site.wy-modal-open {
	overflow: hidden;
	padding-right: var(--wy-scrollbar-width, 0);
}

::selection {
	background: var(--wy-red);
	color: #fff;
}

[hidden] {
	display: none !important;
}

body.wy-site img,
body.wy-site svg {
	max-width: 100%;
}

body.wy-site img {
	display: block;
	height: auto;
}

body.wy-site a {
	color: inherit;
	text-decoration: none;
}

body.wy-site button,
body.wy-site input,
body.wy-site select,
body.wy-site textarea {
	font: inherit;
}

body.wy-site button {
	color: inherit;
}

body.wy-site :where(h1, h2, h3, h4, h5, h6, p, ul, ol, dl, blockquote, figure) {
	margin-top: 0;
}

body.wy-site :where(.wy-section, .wy-article, .wy-modal, [id]) {
	scroll-margin-top: calc(var(--wy-header-height) + 22px);
}

/* Hello Elementor and builder normalization. */
body.wy-site .wy-main,
body.wy-site .elementor {
	width: 100%;
}

body.wy-site .elementor-widget {
	margin-block-end: 0;
}

body.wy-site :where(.elementor .e-con) {
	--padding-top: 0px;
	--padding-right: 0px;
	--padding-bottom: 0px;
	--padding-left: 0px;
	--gap: 0px;
	padding: 0;
	gap: 0;
}

body.wy-site .elementor-widget-container > :last-child {
	margin-bottom: 0;
}

body.wy-site .elementor-widget-heading .elementor-heading-title {
	color: inherit;
	font-family: inherit;
	line-height: inherit;
}

body.wy-site .elementor-widget-image img {
	width: 100%;
}

body.wy-site .wy-section,
body.wy-site .wy-header,
body.wy-site .wy-footer,
body.wy-site .wy-article,
body.wy-site .wy-modal {
	--padding-top: 0;
	--padding-right: 0;
	--padding-bottom: 0;
	--padding-left: 0;
	--gap: 0;
	width: 100%;
	padding: 0;
	gap: 0;
}

body.wy-site .wy-section {
	display: block;
	position: relative;
	padding-block: var(--wy-section-space);
}

body.wy-site .wy-wrap,
body.wy-site .wy-native-wrap {
	width: 100%;
	max-width: var(--wy-max);
	margin-inline: auto;
	padding-inline: var(--wy-gutter);
}

body.wy-site .wy-wrap {
	--gap: 0;
	display: flex;
	flex-direction: column;
	gap: 0;
}

/* Accessibility primitives. */
.wy-skip-link {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 10000;
	transform: translateY(-160%);
	padding: 11px 16px;
	background: var(--wy-ink);
	color: #fff !important;
	font-family: var(--wy-mono);
	font-size: 12px;
	letter-spacing: 0.06em;
	transition: transform 0.2s var(--wy-ease);
}

.wy-skip-link:focus {
	transform: translateY(0);
}

body.wy-site :focus-visible {
	outline: 3px solid var(--wy-red);
	outline-offset: 4px;
}

body.wy-site .wy-process :focus-visible,
body.wy-site .wy-pricing :focus-visible,
body.wy-site .wy-footer :focus-visible,
body.wy-site .wy-contact-form :focus-visible {
	outline-color: var(--wy-ember);
}

.wy-visually-hidden,
body.wy-site .wy-card-link .elementor-button-text,
body.wy-site .wy-project-link .elementor-button-text,
body.wy-site .wy-process-tab .elementor-button-text {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

/* Type system and shared section framing. */
body.wy-site .wy-h1 .elementor-heading-title,
body.wy-site .wy-h1.elementor-heading-title {
	margin: 0;
	font-family: var(--wy-display);
	font-size: clamp(42px, 6.6vw, 92px);
	font-weight: 700;
	line-height: 1.02;
	letter-spacing: -0.03em;
	text-wrap: balance;
}

body.wy-site .wy-h2 .elementor-heading-title,
body.wy-site .wy-h2.elementor-heading-title {
	margin: 0;
	font-family: var(--wy-display);
	font-size: clamp(34px, 4.6vw, 64px);
	font-weight: 700;
	line-height: 1.04;
	letter-spacing: -0.025em;
	text-wrap: balance;
}

body.wy-site .wy-h3 .elementor-heading-title,
body.wy-site .wy-h3.elementor-heading-title {
	margin: 0;
	font-family: var(--wy-display);
	font-size: clamp(22px, 2.2vw, 28px);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.018em;
}

body.wy-site :is(.wy-h1, .wy-h2, .wy-article-title, .wy-featured-title, .wy-process-headline) em {
	color: var(--wy-red);
	font-family: var(--wy-editorial);
	font-weight: 500;
	font-style: italic;
}

body.wy-site .wy-lead {
	color: var(--wy-ink-2);
	font-size: clamp(16px, 1.2vw, 18px);
	line-height: 1.62;
	text-wrap: pretty;
}

body.wy-site .wy-lead p {
	margin: 0;
}

body.wy-site .wy-eyebrow {
	color: var(--wy-ink-3);
	font-family: var(--wy-mono);
	font-size: 11px;
	font-weight: 500;
	line-height: 1.4;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

body.wy-site .wy-eyebrow p {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin: 0;
}

body.wy-site .wy-eyebrow:not(.wy-hero-tag) p::before {
	content: "";
	display: inline-block;
	width: 24px;
	height: 1px;
	background: var(--wy-red);
}

body.wy-site .wy-section-head {
	--gap: 48px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
	align-items: end;
	gap: 48px;
	width: 100%;
	margin-bottom: 56px;
}

body.wy-site .wy-section-title {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

body.wy-site .wy-section-head > .wy-lead {
	max-width: 52ch;
	justify-self: start;
}

/* Elementor and native buttons. */
body.wy-site :is(.wy-button .elementor-button, a.wy-button, button.wy-button) {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 48px;
	padding: 13px 22px;
	border: 1px solid transparent;
	border-radius: 999px;
	background: transparent;
	box-shadow: none;
	font-family: var(--wy-body);
	font-size: 14.5px;
	font-weight: 600;
	line-height: 1.2;
	text-align: center;
	white-space: nowrap;
	transition: color 0.25s var(--wy-ease), background 0.25s var(--wy-ease), border-color 0.25s var(--wy-ease), transform 0.25s var(--wy-ease);
}

body.wy-site :is(.wy-button-primary .elementor-button, a.wy-button-primary, button.wy-button-primary) {
	background: var(--wy-ink);
	color: #fff;
}

body.wy-site :is(.wy-button-primary .elementor-button, a.wy-button-primary, button.wy-button-primary):hover {
	background: var(--wy-red);
	transform: translateY(-1px);
}

body.wy-site :is(.wy-button-red .elementor-button, a.wy-button-red, button.wy-button-red) {
	background: var(--wy-red);
	color: #fff;
}

body.wy-site :is(.wy-button-red .elementor-button, a.wy-button-red, button.wy-button-red):hover {
	background: var(--wy-ink);
}

body.wy-site :is(.wy-button-ghost .elementor-button, a.wy-button-ghost, button.wy-button-ghost) {
	border-color: var(--wy-ink);
	color: var(--wy-ink);
}

body.wy-site :is(.wy-button-ghost .elementor-button, a.wy-button-ghost, button.wy-button-ghost):hover {
	background: var(--wy-ink);
	color: #fff;
}

/* Header. */
body.wy-site .wy-header {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 900;
	display: block;
	padding-block: 14px;
	background: rgba(246, 242, 236, 0);
	transition: padding 0.3s var(--wy-ease), background 0.3s var(--wy-ease), box-shadow 0.3s var(--wy-ease), backdrop-filter 0.3s var(--wy-ease);
}

body.admin-bar.wy-site .wy-header {
	top: 32px;
}

body.wy-site .wy-header.is-scrolled,
body.wy-site .wy-header.is-menu-open {
	padding-block: 10px;
	background: rgba(246, 242, 236, 0.92);
	box-shadow: 0 1px 0 var(--wy-line);
	-webkit-backdrop-filter: blur(16px);
	backdrop-filter: blur(16px);
}

body.wy-site.wy-modal-open .wy-header {
	padding-right: var(--wy-scrollbar-width, 0);
}

body.wy-site .wy-header-inner {
	--gap: 24px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 50px;
}

body.wy-site .wy-brand {
	--gap: 10px;
	display: flex;
	flex: 0 0 auto;
	flex-direction: row;
	align-items: center;
	gap: 10px;
	width: auto;
}

body.wy-site .wy-brand-mark {
	width: 30px;
	min-width: 30px;
}

body.wy-site .wy-brand-mark :is(.elementor-widget-container, a, img) {
	display: block;
	width: 30px;
	height: 30px;
}

body.wy-site .wy-brand-wordmark {
	width: auto;
}

body.wy-site .wy-brand-wordmark .elementor-heading-title {
	font-family: var(--wy-display);
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.025em;
}

body.wy-site .wy-brand-wordmark span {
	color: var(--wy-red);
}

body.wy-site .wy-nav-links {
	--gap: 26px;
	display: flex;
	flex: 1 1 auto;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 26px;
}

body.wy-site .wy-nav-links > .elementor-element,
body.wy-site .wy-header-cta,
body.wy-site .wy-menu-toggle {
	width: auto;
}

body.wy-site .wy-nav-link .elementor-button {
	position: relative;
	padding: 7px 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: var(--wy-ink-2);
	font-family: var(--wy-body);
	font-size: 13.5px;
	font-weight: 500;
	line-height: 1.2;
	transition: color 0.2s var(--wy-ease);
}

body.wy-site .wy-nav-link .elementor-button::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 1px;
	left: 0;
	height: 1.5px;
	background: var(--wy-red);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.25s var(--wy-ease);
}

body.wy-site .wy-nav-link :is(.elementor-button:hover, .elementor-button[aria-current="location"]),
body.wy-site .wy-nav-link.is-active .elementor-button {
	color: var(--wy-ink);
}

body.wy-site .wy-nav-link :is(.elementor-button:hover, .elementor-button[aria-current="location"])::after,
body.wy-site .wy-nav-link.is-active .elementor-button::after {
	transform: scaleX(1);
}

body.wy-site .wy-header-cta .elementor-button {
	min-height: 46px;
	padding: 11px 18px;
	font-size: 13.5px;
}

body.wy-site .wy-menu-toggle {
	display: none;
}

body.wy-site .wy-menu-toggle .elementor-button {
	min-height: 42px;
	padding: 10px 15px;
	border: 1px solid var(--wy-ink);
	border-radius: 999px;
	background: transparent;
	color: var(--wy-ink);
	font-family: var(--wy-mono);
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.wy-fallback-header {
	position: sticky;
	top: 0;
	z-index: 900;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 18px var(--wy-gutter);
	background: rgba(246, 242, 236, 0.94);
	box-shadow: 0 1px 0 var(--wy-line);
	font-family: var(--wy-display);
	font-weight: 700;
}

/* Hero. */
body.wy-site .wy-hero {
	padding-top: clamp(140px, 14vw, 178px);
	padding-bottom: clamp(76px, 8vw, 104px);
	overflow: hidden;
}

body.wy-site .wy-hero-tag {
	margin-bottom: 28px;
	margin-block-end: 28px !important;
}

body.wy-site .wy-hero-tag p {
	display: flex;
	align-items: center;
	gap: 13px;
	margin: 0;
	color: var(--wy-ink-2);
	font-size: 12px;
	letter-spacing: 0.12em;
}

body.wy-site .wy-hero-tag p span:first-child {
	color: var(--wy-red);
	font-size: 13px;
	line-height: 1;
	animation: wy-pulse 2.4s infinite;
}

body.wy-site .wy-hero-main {
	--gap: clamp(44px, 5vw, 72px);
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
	align-items: center;
	gap: clamp(44px, 5vw, 72px);
}

body.wy-site .wy-hero-copy {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

body.wy-site .wy-hero-copy .wy-h1 {
	margin-bottom: 24px;
}

body.wy-site .wy-hero-sub {
	max-width: 46ch !important;
	margin-bottom: 32px;
	font-size: clamp(16px, 1.25vw, 19px);
	line-height: 1.58;
}

body.wy-site .wy-hero-actions {
	--gap: 12px;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 12px;
}

body.wy-site .wy-hero-actions > .elementor-element {
	width: auto;
}

body.wy-site .wy-hero-art {
	width: 100%;
	max-width: 590px;
	justify-self: end;
}

body.wy-site .wy-hero-art img {
	width: 100%;
	filter: drop-shadow(0 24px 28px rgba(26, 26, 28, 0.1));
}

@keyframes wy-pulse {
	0%, 100% { text-shadow: 0 0 0 rgba(184, 36, 42, 0.45); }
	50% { text-shadow: 0 0 14px rgba(184, 36, 42, 0.8); }
}

/* Client video. */
body.wy-site .wy-video-section {
	padding-top: 64px;
	padding-bottom: clamp(84px, 9vw, 116px);
}

body.wy-site .wy-video-frame {
	position: relative;
	width: calc(100% - 24px);
	margin-bottom: 24px;
	aspect-ratio: 16 / 9;
	border: 1px solid var(--wy-ink);
	background: var(--wy-ink);
	box-shadow: 24px 24px 0 -1px var(--wy-red), 24px 24px 0 0 var(--wy-ink);
	overflow: hidden;
}

body.wy-site .wy-video-frame :is(.elementor-widget-container, .elementor-shortcode, .wy-video) {
	width: 100%;
	height: 100%;
}

body.wy-site .wy-video {
	position: relative;
	aspect-ratio: 16 / 9;
	background: var(--wy-ink);
	overflow: hidden;
}

body.wy-site .wy-video__iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

body.wy-site .cv-placeholder {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: clamp(22px, 3vw, 34px);
	background: radial-gradient(ellipse at 30% 40%, rgba(184, 36, 42, 0.35), transparent 60%), radial-gradient(ellipse at 70% 80%, rgba(197, 121, 62, 0.25), transparent 60%), var(--wy-ink);
	color: #fff;
}

body.wy-site .cv-top,
body.wy-site .cv-bottom {
	display: flex;
	justify-content: space-between;
	gap: 18px;
}

body.wy-site .cv-top {
	color: rgba(255, 255, 255, 0.7);
	font-family: var(--wy-mono);
	font-size: 10.5px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

body.wy-site .cv-top .live {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

body.wy-site .cv-top .live::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--wy-red);
	animation: wy-pulse 2.4s infinite;
}

body.wy-site .cv-play {
	display: grid;
	place-items: center;
	width: clamp(68px, 8vw, 88px);
	height: clamp(68px, 8vw, 88px);
	margin: auto;
	border-radius: 50%;
	background: var(--wy-red);
	animation: wy-play-pulse 2.4s infinite;
}

body.wy-site .cv-play svg {
	fill: #fff;
}

body.wy-site .cv-bottom {
	align-items: flex-end;
}

body.wy-site .cv-bottom-l {
	font-family: var(--wy-display);
	font-size: clamp(20px, 2.2vw, 28px);
	font-weight: 600;
	line-height: 1.1;
	letter-spacing: -0.02em;
}

body.wy-site .cv-bottom-r {
	max-width: 30ch;
	color: rgba(255, 255, 255, 0.55);
	font-family: var(--wy-mono);
	font-size: 10px;
	line-height: 1.5;
	letter-spacing: 0.12em;
	text-align: right;
	text-transform: uppercase;
}

@keyframes wy-play-pulse {
	0%, 100% { box-shadow: 0 0 0 0 rgba(184, 36, 42, 0.5); }
	50% { box-shadow: 0 0 0 24px rgba(184, 36, 42, 0); }
}

/* Services. */
body.wy-site .wy-services-grid {
	--gap: 1px;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1px;
	border: 1px solid var(--wy-line);
	background: var(--wy-line);
}

body.wy-site .wy-service-card {
	--gap: 0;
	position: relative;
	display: flex;
	min-width: 0;
	min-height: 300px;
	padding: 34px 28px 28px;
	background: var(--wy-card);
	color: var(--wy-ink);
	overflow: hidden;
	transition: color 0.3s var(--wy-ease), background 0.3s var(--wy-ease);
}

body.wy-site .wy-service-card:hover,
body.wy-site .wy-service-card:focus-within {
	background: var(--wy-ink);
	color: #fff;
}

body.wy-site .wy-service-top {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	justify-content: space-between;
	margin-bottom: 20px;
}

body.wy-site .wy-service-num,
body.wy-site .wy-service-arrow {
	color: var(--wy-ink-3);
	font-family: var(--wy-mono);
	font-size: 11px;
	letter-spacing: 0.15em;
	transition: color 0.3s var(--wy-ease), transform 0.3s var(--wy-ease);
}

body.wy-site .wy-service-arrow {
	font-size: 22px;
	line-height: 1;
}

body.wy-site .wy-service-top p {
	margin: 0;
}

body.wy-site .wy-service-card:hover .wy-service-num,
body.wy-site .wy-service-card:focus-within .wy-service-num {
	color: var(--wy-ember);
}

body.wy-site .wy-service-card:hover .wy-service-arrow,
body.wy-site .wy-service-card:focus-within .wy-service-arrow {
	color: var(--wy-red);
	transform: translate(4px, -4px);
}

body.wy-site .wy-service-icon {
	width: 56px;
	height: 56px;
	margin-bottom: 22px;
}

body.wy-site .wy-service-icon :is(.elementor-widget-container, img) {
	width: 56px;
	height: 56px;
}

body.wy-site .wy-service-card:hover .wy-service-icon img,
body.wy-site .wy-service-card:focus-within .wy-service-icon img {
	filter: invert(1);
}

body.wy-site .wy-service-title .elementor-heading-title {
	margin: 0 0 10px;
	font-family: var(--wy-display);
	font-size: 23px;
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -0.02em;
}

body.wy-site .wy-card-rule {
	display: block;
	width: 28px;
	height: 1px;
	margin: 0 0 12px;
	background: var(--wy-red);
	transition: width 0.3s var(--wy-ease);
}

body.wy-site .wy-service-card:hover .wy-card-rule,
body.wy-site .wy-service-card:focus-within .wy-card-rule {
	width: 56px;
}

body.wy-site .wy-service-desc {
	color: var(--wy-ink-3);
	font-size: 14px;
	line-height: 1.56;
	transition: color 0.3s var(--wy-ease);
}

body.wy-site .wy-service-desc p {
	margin: 0;
}

body.wy-site .wy-service-card:hover .wy-service-desc,
body.wy-site .wy-service-card:focus-within .wy-service-desc {
	color: rgba(255, 255, 255, 0.7);
}

body.wy-site .wy-card-link,
body.wy-site .wy-project-link {
	position: absolute;
	inset: 0;
	z-index: 3;
	width: 100%;
	height: 100%;
}

body.wy-site :is(.wy-card-link, .wy-project-link) :is(.elementor-widget-container, .elementor-button-wrapper, .elementor-button) {
	display: block;
	width: 100%;
	height: 100%;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
}

/* Process. */
body.wy-site .wy-process {
	background: var(--wy-ink);
	color: #fff;
	overflow: hidden;
}

body.wy-site .wy-process .wy-section-head {
	margin-bottom: 38px;
}

body.wy-site .wy-process :is(.wy-h2 .elementor-heading-title, .wy-process-name .elementor-heading-title, .wy-process-headline .elementor-heading-title) {
	color: #fff;
}

body.wy-site .wy-process .wy-eyebrow,
body.wy-site .wy-process .wy-lead {
	color: #b8b8ba;
}

body.wy-site .wy-process .wy-eyebrow p::before {
	background: var(--wy-copper);
}

body.wy-site .wy-process .wy-h2 em,
body.wy-site .wy-process .wy-process-headline em {
	color: var(--wy-copper);
}

body.wy-site .wy-process-tabs {
	--gap: 6px;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 6px;
	margin-bottom: 22px;
}

body.wy-site .wy-process-tab {
	position: relative;
	width: 100%;
}

body.wy-site .wy-process-tab .elementor-button {
	position: relative;
	display: block;
	width: 100%;
	height: 24px;
	padding: 10px 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	overflow: hidden;
}

body.wy-site .wy-process-tab .elementor-button::before,
body.wy-site .wy-process-tab .elementor-button::after {
	content: "";
	position: absolute;
	top: 10px;
	right: 0;
	left: 0;
	height: 3px;
	transform-origin: left;
}

body.wy-site .wy-process-tab .elementor-button::before {
	background: rgba(255, 255, 255, 0.14);
}

body.wy-site .wy-process-tab .elementor-button::after {
	background: var(--wy-red);
	transform: scaleX(0);
}

body.wy-site .wy-process-tab.is-complete .elementor-button::after {
	transform: scaleX(1);
}

body.wy-site .wy-process.is-cycle-running .wy-process-tab.is-active .elementor-button::after {
	animation: wy-process-progress var(--wy-process-duration) linear forwards;
}

body.wy-site .wy-process.is-timer-paused .wy-process-tab.is-active .elementor-button::after {
	animation-play-state: paused;
}

@keyframes wy-process-progress {
	from { transform: scaleX(0); }
	to { transform: scaleX(1); }
}

body.wy-site .wy-process-stage {
	position: relative;
	width: 100%;
	min-height: 500px;
}

body.wy-site .wy-process-panel {
	--gap: clamp(34px, 5vw, 64px);
	display: grid;
	grid-template-columns: minmax(280px, 1.05fr) minmax(0, 1.4fr);
	align-items: stretch;
	gap: clamp(34px, 5vw, 64px);
	min-height: 500px;
	animation: wy-panel-in 0.55s var(--wy-ease-out) both;
}

body.wy-site .wy-process-copy {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding-block: 18px;
}

body.wy-site .wy-process-meta {
	margin-bottom: 12px;
	color: var(--wy-copper);
	font-family: var(--wy-mono);
	font-size: 12px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

body.wy-site .wy-process-meta p {
	margin: 0;
}

body.wy-site .wy-process-name .elementor-heading-title {
	margin: 0 0 18px;
	font-family: var(--wy-display);
	font-size: clamp(38px, 4.7vw, 64px);
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.025em;
}

body.wy-site .wy-process-headline .elementor-heading-title {
	margin: 0 0 18px;
	font-family: var(--wy-display);
	font-size: clamp(20px, 2vw, 26px);
	font-weight: 600;
	line-height: 1.26;
	letter-spacing: -0.016em;
}

body.wy-site .wy-process-copy > .elementor-widget-text-editor:not(.wy-process-meta):not(.wy-deliverables) {
	max-width: 46ch;
	color: #b8b8ba;
	font-size: 15.5px;
	line-height: 1.65;
}

body.wy-site .wy-deliverables {
	width: 100%;
	margin-top: auto;
	padding-top: 28px;
}

body.wy-site .wy-deliverables ul {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

body.wy-site .wy-deliverables li {
	padding: 7px 11px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	color: #ddd;
	font-family: var(--wy-mono);
	font-size: 10.5px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

body.wy-site .wy-deliverables li:first-child {
	border-color: var(--wy-copper);
	color: var(--wy-copper);
}

body.wy-site .wy-process-scene {
	display: flex;
	align-items: center;
	min-height: 480px;
	padding: clamp(22px, 4vw, 42px);
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: radial-gradient(ellipse at 70% 30%, rgba(184, 36, 42, 0.15), transparent 60%), radial-gradient(ellipse at 30% 80%, rgba(197, 121, 62, 0.1), transparent 60%), #0f0f11;
	overflow: hidden;
}

body.wy-site .wy-process-scene img {
	width: 100%;
}

body.wy-site .wy-process-pause {
	align-self: flex-start;
	width: auto;
	margin-top: 20px;
}

body.wy-site .wy-process-pause .elementor-button {
	padding: 8px 0;
	border: 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 0;
	background: transparent;
	color: #b8b8ba;
	font-family: var(--wy-mono);
	font-size: 10.5px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

body.wy-site .wy-process-pause .elementor-button:hover {
	border-color: var(--wy-copper);
	color: #fff;
}

@keyframes wy-panel-in {
	from { opacity: 0; transform: translateY(14px); }
	to { opacity: 1; transform: translateY(0); }
}

/* About. */
body.wy-site .wy-about-story {
	--gap: clamp(48px, 6vw, 82px);
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
	align-items: start;
	gap: clamp(48px, 6vw, 82px);
}

body.wy-site .wy-about-copy {
	max-width: 52ch;
	color: var(--wy-ink-2);
	font-size: 16px;
	line-height: 1.68;
}

body.wy-site .wy-about-copy p {
	margin-bottom: 18px;
}

body.wy-site .wy-about-copy .wy-signature {
	margin-top: 30px;
	padding-top: 20px;
	border-top: 1px solid var(--wy-line);
	color: var(--wy-ink);
	font-family: var(--wy-editorial);
	font-size: 21px;
	font-style: italic;
	line-height: 1.4;
}

body.wy-site .wy-signature span {
	color: var(--wy-ink-3);
	font-family: var(--wy-mono);
	font-size: 10.5px;
	font-style: normal;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

body.wy-site .wy-about-art {
	max-width: 430px;
	justify-self: end;
	border: 1px solid var(--wy-ink);
	box-shadow: 22px 22px 0 -1px var(--wy-copper), 22px 22px 0 0 var(--wy-ink);
}

body.wy-site .wy-promises {
	--gap: 28px;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
	margin-top: 82px;
	padding-top: 54px;
	border-top: 1px solid var(--wy-line);
}

body.wy-site .wy-promise {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

body.wy-site .wy-promise-num {
	margin-bottom: 6px;
	color: var(--wy-red);
	font-family: var(--wy-mono);
	font-size: 10.5px;
	letter-spacing: 0.12em;
}

body.wy-site .wy-promise :is(p, h4) {
	margin: 0;
}

body.wy-site .wy-promise h4 {
	font-family: var(--wy-display);
	font-size: 20px;
	font-weight: 600;
	line-height: 1.25;
	letter-spacing: -0.016em;
}

body.wy-site .wy-promise > .elementor-widget-text-editor:last-child {
	color: var(--wy-ink-2);
	font-size: 14.5px;
	line-height: 1.62;
}

/* Portfolio. */
body.wy-site .wy-portfolio-grid {
	--gap: 32px;
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) minmax(300px, 1fr);
	align-items: stretch;
	gap: 32px;
}

body.wy-site .wy-project {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	border: 1px solid var(--wy-line);
	background: var(--wy-card);
	overflow: hidden;
	transition: border-color 0.25s var(--wy-ease), transform 0.35s var(--wy-ease), box-shadow 0.35s var(--wy-ease);
}

body.wy-site .wy-project:hover,
body.wy-site .wy-project:focus-within {
	border-color: var(--wy-ink);
	box-shadow: var(--wy-shadow);
	transform: translateY(-3px);
}

body.wy-site .wy-project > .elementor-widget-image {
	display: grid;
	flex: 1 1 auto;
	place-items: center;
	min-height: 350px;
	padding: clamp(24px, 3vw, 38px);
	background: linear-gradient(135deg, #f2ebdf, #e6dbc5);
}

body.wy-site .wy-project-mobile > .elementor-widget-image img {
	max-width: 280px;
	margin-inline: auto;
}

body.wy-site .wy-project-meta {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	padding: 22px 24px;
	border-top: 1px solid var(--wy-line);
	background: var(--wy-card);
}

body.wy-site .wy-project-meta h3 {
	margin: 0;
	font-family: var(--wy-display);
	font-size: 19px;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: -0.016em;
}

body.wy-site .wy-project-meta p {
	margin: 0;
	color: var(--wy-ink-3);
	font-family: var(--wy-mono);
	font-size: 10px;
	line-height: 1.55;
	letter-spacing: 0.1em;
	text-align: right;
	text-transform: uppercase;
}

body.wy-site .wy-project-meta p:first-child {
	display: none;
}

/* Pricing. */
body.wy-site .wy-pricing {
	background: var(--wy-ink);
	color: #fff;
}

body.wy-site .wy-pricing .wy-eyebrow,
body.wy-site .wy-pricing .wy-lead {
	color: #b8b8ba;
}

body.wy-site .wy-pricing .wy-eyebrow p::before {
	background: var(--wy-copper);
}

body.wy-site .wy-pricing .wy-h2 .elementor-heading-title {
	color: #fff;
}

body.wy-site .wy-pricing .wy-h2 em {
	color: var(--wy-copper);
}

body.wy-site .wy-pricing-grid {
	--gap: 1px;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.1);
}

body.wy-site .wy-tier {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	padding: 36px 32px 32px;
	background: var(--wy-ink);
	color: #fff;
	transition: background 0.3s var(--wy-ease);
}

body.wy-site .wy-tier:hover,
body.wy-site .wy-tier:focus-within {
	background: #202023;
}

body.wy-site .wy-tier-featured,
body.wy-site .wy-tier-featured:hover,
body.wy-site .wy-tier-featured:focus-within {
	background: var(--wy-red);
}

body.wy-site .wy-tier-badge,
body.wy-site .wy-tier-badge-spacer {
	min-height: 27px;
	margin-bottom: 8px;
}

body.wy-site .wy-tier-badge p {
	display: inline-block;
	margin: 0;
	padding: 4px 8px;
	background: var(--wy-ink);
	color: var(--wy-ember);
	font-family: var(--wy-mono);
	font-size: 9.5px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

body.wy-site .wy-tier > .elementor-widget-heading h3 {
	margin: 0 0 12px;
	color: #999;
	font-family: var(--wy-mono);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

body.wy-site .wy-tier-featured > .elementor-widget-heading h3 {
	color: rgba(255, 255, 255, 0.86);
}

body.wy-site .wy-tier-headline {
	margin-bottom: 6px;
}

body.wy-site .wy-tier-headline p {
	margin: 0;
	font-family: var(--wy-display);
	font-size: 28px;
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: -0.025em;
}

body.wy-site .wy-tier-price {
	margin-bottom: 18px;
}

body.wy-site .wy-tier-price p {
	display: flex;
	align-items: baseline;
	gap: 7px;
	margin: 0;
}

body.wy-site .wy-tier-price strong {
	font-family: var(--wy-display);
	font-size: clamp(40px, 3.8vw, 48px);
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.035em;
}

body.wy-site .wy-tier-price span {
	color: #999;
	font-family: var(--wy-mono);
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

body.wy-site .wy-tier-featured .wy-tier-price span {
	color: rgba(255, 255, 255, 0.8);
}

body.wy-site .wy-tier > .elementor-widget-text-editor:not(.wy-tier-headline):not(.wy-tier-price):not(.wy-tier-features):not(.wy-tier-badge):not(.wy-tier-badge-spacer) {
	min-height: 68px;
	color: #b8b8ba;
	font-size: 14px;
	line-height: 1.58;
}

body.wy-site .wy-tier-featured > .elementor-widget-text-editor:not(.wy-tier-headline):not(.wy-tier-price):not(.wy-tier-features):not(.wy-tier-badge):not(.wy-tier-badge-spacer) {
	color: rgba(255, 255, 255, 0.9);
}

body.wy-site .wy-tier-features {
	flex: 1 1 auto;
	margin: 22px 0 28px;
}

body.wy-site .wy-tier-features ul,
body.wy-site .wy-modal-includes ul {
	display: flex;
	flex-direction: column;
	gap: 9px;
	margin: 0;
	padding: 0;
	list-style: none;
}

body.wy-site .wy-tier-features li,
body.wy-site .wy-modal-includes li {
	position: relative;
	padding-left: 24px;
	font-size: 13.5px;
	line-height: 1.5;
}

body.wy-site .wy-tier-features li {
	color: #d4d4d6;
}

body.wy-site .wy-tier-features li::before,
body.wy-site .wy-modal-includes li::before {
	content: "";
	position: absolute;
	top: 4px;
	left: 0;
	width: 14px;
	height: 14px;
	background: var(--wy-red);
	clip-path: polygon(20% 50%, 0 65%, 40% 100%, 100% 25%, 85% 10%, 40% 65%);
}

body.wy-site .wy-tier-featured .wy-tier-features li {
	color: rgba(255, 255, 255, 0.95);
}

body.wy-site .wy-tier-featured .wy-tier-features li::before {
	background: var(--wy-ink);
}

body.wy-site .wy-tier-button {
	margin-top: auto;
}

body.wy-site .wy-tier-button .elementor-button {
	display: flex;
	justify-content: space-between;
	width: 100%;
	min-height: 48px;
	padding: 13px 18px;
	border-radius: 999px;
	background: #fff;
	color: var(--wy-ink);
	font-size: 14px;
	font-weight: 600;
	transition: color 0.2s var(--wy-ease), background 0.2s var(--wy-ease);
}

body.wy-site .wy-tier-button .elementor-button:hover {
	background: var(--wy-copper);
	color: #fff;
}

body.wy-site .wy-tier-featured .wy-tier-button .elementor-button {
	background: var(--wy-ink);
	color: #fff;
}

body.wy-site .wy-tier-featured .wy-tier-button .elementor-button:hover {
	background: var(--wy-ember);
	color: var(--wy-ink);
}

body.wy-site .wy-custom-quote {
	--gap: 32px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 32px;
	margin-top: 32px;
	padding: 32px;
	border: 1px dashed rgba(255, 255, 255, 0.25);
}

body.wy-site .wy-custom-quote h4 {
	margin: 0 0 6px;
	font-family: var(--wy-display);
	font-size: 22px;
	font-weight: 700;
	letter-spacing: -0.02em;
}

body.wy-site .wy-custom-quote p {
	margin: 0;
	color: #999;
	font-size: 14px;
}

/* Contact and forms. */
body.wy-site .wy-contact-grid {
	--gap: clamp(36px, 5vw, 68px);
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
	align-items: start;
	gap: clamp(36px, 5vw, 68px);
}

body.wy-site .wy-contact-channels {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

body.wy-site .wy-channel .elementor-button {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: 100%;
	min-height: 76px;
	padding: 20px 54px 20px 20px;
	border: 1px solid var(--wy-line);
	border-radius: 0;
	background: var(--wy-card);
	color: var(--wy-ink);
	font-family: var(--wy-display);
	font-size: 17px;
	font-weight: 600;
	line-height: 1.35;
	letter-spacing: -0.01em;
	text-align: left;
	white-space: normal;
	transition: color 0.25s var(--wy-ease), background 0.25s var(--wy-ease), border-color 0.25s var(--wy-ease);
}

body.wy-site .wy-channel .elementor-button::after {
	content: "→";
	position: absolute;
	top: 50%;
	right: 22px;
	color: var(--wy-ink-3);
	font-family: var(--wy-body);
	font-size: 20px;
	transform: translateY(-50%);
	transition: color 0.2s var(--wy-ease), transform 0.2s var(--wy-ease);
}

body.wy-site .wy-channel .elementor-button:hover {
	border-color: var(--wy-ink);
	background: var(--wy-ink);
	color: #fff;
}

body.wy-site .wy-channel .elementor-button:hover::after {
	color: var(--wy-copper);
	transform: translate(4px, -50%);
}

body.wy-site .wy-location {
	margin-top: 22px;
	padding-top: 24px;
	border-top: 1px solid var(--wy-line);
}

body.wy-site .wy-location p {
	margin: 0 0 5px;
}

body.wy-site .wy-location p:nth-child(2) {
	font-family: var(--wy-display);
	font-size: 20px;
	font-weight: 600;
}

body.wy-site .wy-location p:last-child {
	color: var(--wy-ink-3);
	font-family: var(--wy-mono);
	font-size: 10.5px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

body.wy-site .wy-contact-form {
	padding: 36px;
	background: var(--wy-ink);
	color: #fff;
}

body.wy-site .wy-contact-form > .wy-h3 {
	margin-bottom: 26px;
}

body.wy-site .wy-contact-form .wy-h3 .elementor-heading-title {
	color: #fff;
}

body.wy-site :is(.wy-lead-form, form.wy-form, form.form) {
	width: 100%;
	margin: 0;
	padding: 0;
	background: var(--wy-ink);
	color: #fff;
}

body.wy-site .wy-form-row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

body.wy-site .wy-form-field,
body.wy-site .wy-lead-form > .field {
	margin-bottom: 16px;
}

body.wy-site .wy-form-field label {
	display: block;
	margin-bottom: 7px;
	color: #aaa;
	font-family: var(--wy-mono);
	font-size: 10.5px;
	font-weight: 500;
	line-height: 1.4;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

body.wy-site .wy-form-control {
	width: 100%;
	min-height: 48px;
	padding: 11px 13px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	color: #fff;
	font-family: var(--wy-body);
	font-size: 15px;
	line-height: 1.4;
	transition: border-color 0.2s var(--wy-ease), background 0.2s var(--wy-ease);
	color-scheme: dark;
}

body.wy-site textarea.wy-form-control {
	min-height: 128px;
	resize: vertical;
}

body.wy-site .wy-form-control::placeholder {
	color: rgba(255, 255, 255, 0.42);
	opacity: 1;
}

body.wy-site .wy-form-control:focus {
	border-color: var(--wy-red);
	background: rgba(255, 255, 255, 0.03);
}

body.wy-site .wy-form-control:is(.is-invalid, .error, [aria-invalid="true"]) {
	border-color: var(--wy-ember);
	background: rgba(184, 36, 42, 0.09);
}

body.wy-site .wy-field-error {
	display: block;
	min-height: 0;
	margin-top: 5px;
	color: var(--wy-ember);
	font-family: var(--wy-mono);
	font-size: 10px;
	line-height: 1.45;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

body.wy-site .wy-field-error:empty {
	display: none;
}

body.wy-site .wy-form-actions {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

body.wy-site .wy-form-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 52px;
	padding: 14px 18px;
	border: 0;
	border-radius: 999px;
	background: var(--wy-red);
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.3;
	cursor: pointer;
	transition: color 0.2s var(--wy-ease), background 0.2s var(--wy-ease), opacity 0.2s var(--wy-ease);
}

body.wy-site .wy-form-submit:hover:not(:disabled) {
	background: #fff;
	color: var(--wy-ink);
}

body.wy-site .wy-form-submit:disabled {
	cursor: wait;
	opacity: 0.56;
}

body.wy-site .wy-form-note {
	margin: 0;
	color: #888;
	font-family: var(--wy-mono);
	font-size: 10px;
	line-height: 1.5;
	letter-spacing: 0.07em;
	text-align: center;
}

body.wy-site .wy-form-status {
	margin-top: 14px;
	padding: 0;
	font-size: 14px;
	line-height: 1.5;
}

body.wy-site .wy-form-status:empty {
	display: none;
}

body.wy-site .wy-form-status.is-success {
	padding: 12px 14px;
	border-left: 3px solid var(--wy-sage);
	background: rgba(138, 163, 140, 0.12);
	color: #e7f0e8;
}

body.wy-site .wy-form-status.is-error {
	padding: 12px 14px;
	border-left: 3px solid var(--wy-ember);
	background: rgba(184, 36, 42, 0.12);
	color: #ffe8e0;
}

/* Dialogs. The outer Elementor container doubles as the backdrop. */
body.wy-site .wy-modal {
	position: fixed;
	inset: 0;
	z-index: 2000;
	display: none;
	place-items: center;
	padding: 22px;
	background: rgba(11, 11, 12, 0.68);
	overflow-y: auto;
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
}

body.wy-site .wy-modal.is-open,
body.wy-site .wy-modal:target {
	display: grid;
	animation: wy-fade-in 0.22s var(--wy-ease) both;
}

body.wy-site .wy-modal-dialog {
	position: relative;
	display: flex;
	flex-direction: column;
	width: min(940px, 100%);
	max-height: min(90vh, 900px);
	padding: clamp(28px, 4vw, 42px);
	border: 1px solid var(--wy-ink);
	background: var(--wy-card);
	color: var(--wy-ink);
	overflow-y: auto;
	overscroll-behavior: contain;
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
	animation: wy-dialog-in 0.34s var(--wy-ease-out) both;
}

body.wy-site .wy-quote-dialog {
	width: min(720px, 100%);
}

body.wy-site .wy-modal-close {
	position: absolute;
	top: 20px;
	right: 20px;
	z-index: 2;
	width: 38px;
	height: 38px;
}

body.wy-site .wy-modal-close .elementor-button {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	padding: 0;
	border: 1px solid var(--wy-line);
	border-radius: 50%;
	background: var(--wy-card);
	color: transparent;
	font-size: 0;
	overflow: hidden;
	transition: color 0.2s var(--wy-ease), background 0.2s var(--wy-ease), border-color 0.2s var(--wy-ease);
}

body.wy-site .wy-modal-close .elementor-button::before,
body.wy-site .wy-modal-close .elementor-button::after {
	content: "";
	position: absolute;
	width: 15px;
	height: 2px;
	background: var(--wy-ink);
	transform: rotate(45deg);
}

body.wy-site .wy-modal-close .elementor-button::after {
	transform: rotate(-45deg);
}

body.wy-site .wy-modal-close .elementor-button:hover {
	border-color: var(--wy-ink);
	background: var(--wy-ink);
}

body.wy-site .wy-modal-close .elementor-button:hover::before,
body.wy-site .wy-modal-close .elementor-button:hover::after {
	background: #fff;
}

body.wy-site .wy-modal-dialog > .wy-eyebrow {
	margin: 2px 54px 10px 0;
	color: var(--wy-red);
}

body.wy-site .wy-modal-dialog > .wy-h2 {
	margin: 0 54px 14px 0;
}

body.wy-site .wy-modal-dialog > .wy-h2 .elementor-heading-title {
	font-size: clamp(30px, 4vw, 46px);
}

body.wy-site .wy-modal-dialog > .wy-lead {
	max-width: 58ch;
	margin-bottom: 26px;
}

body.wy-site .wy-modal-art {
	display: grid;
	place-items: center;
	width: 100%;
	min-height: 190px;
	margin: 2px 0 28px;
	padding: 42px;
	border: 1px solid var(--wy-line);
	background: linear-gradient(135deg, var(--wy-paper), var(--wy-soft));
}

body.wy-site .wy-modal-art img {
	width: 92px;
	height: 92px;
}

body.wy-site .wy-modal-dialog > .elementor-widget-heading h3 {
	margin: 0 0 14px;
	font-family: var(--wy-display);
	font-size: 19px;
	font-weight: 700;
	letter-spacing: -0.015em;
}

body.wy-site .wy-modal-includes {
	margin-bottom: 26px;
}

body.wy-site .wy-modal-includes ul {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px 28px;
}

body.wy-site .wy-modal-includes li {
	padding-block: 5px;
	border-bottom: 1px solid var(--wy-line);
	color: var(--wy-ink-2);
}

body.wy-site .wy-modal-price {
	margin: 4px 0 22px;
	padding: 18px 20px;
	border: 1px solid var(--wy-line);
	background: var(--wy-paper);
}

body.wy-site .wy-modal-price p {
	margin: 0;
	font-family: var(--wy-mono);
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

body.wy-site .wy-modal-price strong {
	color: var(--wy-red);
	font-family: var(--wy-display);
	font-size: 26px;
	letter-spacing: -0.025em;
}

body.wy-site .wy-modal-dialog > .wy-button {
	align-self: flex-start;
}

body.wy-site .wy-tier-details {
	margin: 6px 0 28px;
}

body.wy-site .wy-tier-details dl {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin: 0;
}

body.wy-site .wy-tier-details dl > div {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 14px 16px;
	border: 1px solid var(--wy-line);
	background: var(--wy-paper);
	font-size: 13px;
}

body.wy-site .wy-tier-details :is(dt, dd) {
	margin: 0;
}

body.wy-site .wy-tier-details dt {
	color: var(--wy-ink-3);
}

body.wy-site .wy-tier-details dd {
	font-family: var(--wy-mono);
	font-size: 11px;
	font-weight: 600;
	text-align: right;
}

body.wy-site .wy-quote-dialog > .elementor-widget-shortcode {
	margin: 4px calc(clamp(28px, 4vw, 42px) * -1) calc(clamp(28px, 4vw, 42px) * -1);
	padding: 30px clamp(28px, 4vw, 42px) clamp(28px, 4vw, 42px);
	background: var(--wy-ink);
}

@keyframes wy-fade-in {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes wy-dialog-in {
	from { opacity: 0; transform: translateY(20px); }
	to { opacity: 1; transform: translateY(0); }
}

/* Footer. */
body.wy-site .wy-footer {
	display: block;
	padding: 64px 0 30px;
	border-top: 3px solid var(--wy-red);
	background: var(--wy-ink);
	color: #fff;
}

body.wy-site .wy-footer-grid {
	--gap: 46px;
	display: grid;
	grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(130px, 1fr));
	gap: 46px;
	padding-bottom: 48px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

body.wy-site .wy-footer-brand .elementor-heading-title {
	font-family: var(--wy-display);
	font-size: 24px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.025em;
}

body.wy-site .wy-footer-brand span {
	color: #eb7378;
}

body.wy-site .wy-footer-blurb {
	max-width: 34ch;
	margin-top: 16px;
	color: #999;
	font-size: 14px;
}

body.wy-site .wy-footer-col h5 {
	margin: 0 0 16px;
	color: #888;
	font-family: var(--wy-mono);
	font-size: 10.5px;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

body.wy-site .wy-footer-col ul {
	display: flex;
	flex-direction: column;
	gap: 9px;
	margin: 0;
	padding: 0;
	list-style: none;
}

body.wy-site .wy-footer-col a {
	color: #d4d4d6;
	font-size: 14px;
	transition: color 0.2s var(--wy-ease);
}

body.wy-site .wy-footer-col a:hover {
	color: var(--wy-red);
}

body.wy-site .wy-footer-bottom {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	gap: 22px;
	padding-top: 28px;
	color: #9c9ca1;
	font-family: var(--wy-mono);
	font-size: 10.5px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

body.wy-site .wy-footer-bottom p {
	margin: 0;
	color: #aaaab0;
}

body.wy-site .wy-footer-bottom .elementor-widget-text-editor {
	color: #aaaab0;
}

.wy-fallback-footer {
	padding: 30px var(--wy-gutter);
	border-top: 3px solid var(--wy-red);
	background: var(--wy-ink);
	color: #999;
	font-family: var(--wy-mono);
	font-size: 11px;
	letter-spacing: 0.1em;
	text-align: center;
	text-transform: uppercase;
}

.wy-fallback-footer p {
	margin: 0;
}

/* Field Guide directory. */
body.wy-site .wy-learn-hero {
	padding-top: 152px;
	padding-bottom: 0;
}

body.wy-site .wy-back-link {
	align-self: flex-start;
	width: auto;
	margin-bottom: 28px !important;
}

body.wy-site .wy-back-link .elementor-button {
	padding: 5px 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: var(--wy-ink-3);
	font-family: var(--wy-mono);
	font-size: 10.5px;
	font-weight: 500;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	transition: color 0.2s var(--wy-ease), transform 0.2s var(--wy-ease);
}

body.wy-site .wy-back-link .elementor-button:hover {
	color: var(--wy-ink);
	transform: translateX(-3px);
}

body.wy-site .wy-learn-intro {
	--gap: 48px;
	display: grid;
	grid-template-columns: minmax(0, 1.5fr) minmax(300px, 1fr);
	align-items: end;
	gap: 48px;
	padding-bottom: 44px;
	border-bottom: 1px solid var(--wy-line);
}

body.wy-site .wy-learn-intro > .wy-reveal:first-child {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

body.wy-site .wy-learn-intro .wy-h1 .elementor-heading-title {
	font-size: clamp(42px, 5.4vw, 76px);
}

body.wy-site .wy-learn-deck {
	max-width: 60ch !important;
}

body.wy-site .wy-learn-deck p {
	margin: 0;
}

body.wy-site .wy-learn-side {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

body.wy-site .wy-learn-meta {
	--gap: 16px;
	display: flex;
	flex-direction: row;
	gap: 16px;
	justify-content: flex-start;
	width: auto;
	margin-top: 46px;
}

body.wy-site .wy-learn-stat {
	display: flex;
	flex-direction: column;
	flex: 0 0 140px;
	width: 140px;
	min-width: 140px;
}

body.wy-site .wy-learn-stat-number .elementor-heading-title {
	font-family: var(--wy-display);
	font-size: 34px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.025em;
}

body.wy-site .wy-learn-stat-number span {
	color: var(--wy-red);
}

body.wy-site .wy-learn-stat-label {
	margin-top: 8px;
	color: var(--wy-ink-3);
	font-family: var(--wy-mono);
	font-size: 10.5px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

body.wy-site .wy-learn-stat-label p {
	margin: 0;
}

body.wy-site .wy-learn-directory {
	padding-top: 56px;
}

body.wy-site .wy-featured-guide {
	--gap: 0;
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
	gap: 0;
	margin-bottom: 56px;
	border: 1px solid var(--wy-ink);
	background: var(--wy-card);
	overflow: hidden;
	transition: transform 0.35s var(--wy-ease), box-shadow 0.35s var(--wy-ease);
}

body.wy-site .wy-featured-guide:hover,
body.wy-site .wy-featured-guide:focus-within {
	box-shadow: 0 28px 50px rgba(26, 26, 28, 0.12);
	transform: translateY(-3px);
}

body.wy-site .wy-featured-art {
	display: grid;
	place-items: center;
	height: 360px;
	min-height: 360px;
	background: linear-gradient(150deg, #f8f2e8, #edddc1 55%, var(--wy-copper));
	overflow: hidden;
}

body.wy-site .wy-featured-art :is(.elementor-widget-container, img) {
	width: 100%;
	height: 100%;
}

body.wy-site .wy-featured-art img {
	object-fit: cover;
}

body.wy-site .wy-featured-copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 44px 48px;
}

body.wy-site .wy-post-kind {
	margin-bottom: 18px;
	color: var(--wy-ink-3);
	font-family: var(--wy-mono);
	font-size: 10.5px;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

body.wy-site .wy-post-kind span {
	display: inline-block;
	padding: 4px 9px;
	background: var(--wy-red);
	color: #fff;
}

body.wy-site .wy-featured-title {
	margin-bottom: 16px !important;
}

body.wy-site .wy-featured-title .elementor-heading-title {
	font-family: var(--wy-display);
	font-size: clamp(28px, 3vw, 42px);
	font-weight: 700;
	line-height: 1.06;
	letter-spacing: -0.027em;
	text-wrap: balance;
}

body.wy-site .wy-featured-copy > .elementor-widget-text-editor:not(.wy-post-kind) {
	max-width: 48ch;
	margin-bottom: 26px;
	color: var(--wy-ink-2);
	font-size: 16px;
	line-height: 1.6;
}

body.wy-site .wy-featured-copy > .wy-button {
	align-self: flex-start;
}

body.wy-site .wy-guide-list-head {
	display: flex;
	flex-direction: row;
	align-items: baseline;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 28px;
}

body.wy-site .wy-guide-list-head .wy-h3 .elementor-heading-title {
	font-size: 22px;
}

body.wy-site .wy-guide-list-head p {
	margin: 0;
	color: var(--wy-ink-3);
	font-size: 14px;
}

body.wy-site .wy-guide-list-head .wy-guide-count {
	font-family: var(--wy-mono);
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

body.wy-site .learn-grid,
body.wy-site .wy-post-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1px;
	border: 1px solid var(--wy-line);
	background: var(--wy-line);
}

body.wy-site .post,
body.wy-site .wy-post-card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	aspect-ratio: 1 / 1;
	background: var(--wy-card);
	text-align: left;
	overflow: hidden;
	transition: background 0.3s var(--wy-ease);
}

body.wy-site :is(.post, .wy-post-card):hover,
body.wy-site :is(.post, .wy-post-card):focus-visible {
	background: var(--wy-ink);
}

body.wy-site .post-thumb {
	position: relative;
	display: block;
	flex: 0 0 66.667%;
	min-height: 0;
	border-bottom: 1px solid var(--wy-line);
	background: repeating-linear-gradient(45deg, #ece3d1 0, #ece3d1 12px, #d8c8a6 12px, #d8c8a6 24px);
	overflow: hidden;
}

body.wy-site .wy-post-card:nth-child(-n + 2) .post-thumb {
	background: #ece6d8;
}

body.wy-site .wy-post-card:first-child .post-thumb::after {
	content: "";
	position: absolute;
	bottom: -34px;
	left: -42px;
	width: 150px;
	height: 78px;
	background: repeating-linear-gradient(45deg, #ece3d1 0, #ece3d1 10px, #d8c8a6 10px, #d8c8a6 20px);
	transform: rotate(10deg);
}

body.wy-site .post-image {
	position: absolute;
	inset: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

body.wy-site .post-emblem {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 34%;
	aspect-ratio: 1;
	border: 2px solid rgba(26, 26, 28, 0.28);
	background: rgba(246, 242, 236, 0.55);
	transform: translate(-50%, -50%) rotate(45deg);
	transition: border-color 0.3s var(--wy-ease);
}

body.wy-site :is(.post, .wy-post-card):hover .post-emblem {
	border-color: rgba(184, 36, 42, 0.58);
}

body.wy-site .post-kind {
	position: absolute;
	top: 14px;
	left: 14px;
	z-index: 2;
	padding: 5px 9px;
	border: 1px solid var(--wy-line);
	background: rgba(246, 242, 236, 0.92);
	color: var(--wy-ink-2);
	font-family: var(--wy-mono);
	font-size: 9.5px;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

body.wy-site .post-body {
	display: flex;
	flex: 0 0 33.333%;
	flex-direction: column;
	min-height: 0;
	padding: 15px 21px;
	overflow: hidden;
}

body.wy-site .post-text {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	min-height: 0;
	overflow: hidden;
}

body.wy-site .post-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 8px;
}

body.wy-site .post-num {
	color: var(--wy-ink-3);
	font-family: var(--wy-mono);
	font-size: 10.5px;
	letter-spacing: 0.15em;
	transition: color 0.3s var(--wy-ease);
}

body.wy-site .post-arrow {
	color: var(--wy-ink-4);
	transition: color 0.3s var(--wy-ease), transform 0.3s var(--wy-ease);
}

body.wy-site .post-title {
	display: -webkit-box;
	margin: 0;
	color: var(--wy-ink);
	font-family: var(--wy-display);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.13;
	letter-spacing: -0.02em;
	text-wrap: balance;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	transition: color 0.3s var(--wy-ease);
}

body.wy-site .post-divider {
	flex: 0 0 auto;
	width: 26px;
	height: 1px;
	margin: 8px 0;
	background: var(--wy-red);
	transition: width 0.3s var(--wy-ease);
}

body.wy-site .post-excerpt {
	display: -webkit-box;
	margin: 0;
	color: var(--wy-ink-3);
	font-size: 12.5px;
	line-height: 1.42;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
	transition: color 0.3s var(--wy-ease);
}

body.wy-site .post-readtime {
	flex: 0 0 auto;
	margin-top: 8px;
	color: var(--wy-ink-4);
	font-family: var(--wy-mono);
	font-size: 9.5px;
	letter-spacing: 0.11em;
	text-transform: uppercase;
	transition: color 0.3s var(--wy-ease);
}

body.wy-site :is(.post, .wy-post-card):hover :is(.post-title),
body.wy-site :is(.post, .wy-post-card):focus-visible :is(.post-title) {
	color: #fff;
}

body.wy-site :is(.post, .wy-post-card):hover .post-excerpt,
body.wy-site :is(.post, .wy-post-card):focus-visible .post-excerpt {
	color: rgba(255, 255, 255, 0.66);
}

body.wy-site :is(.post, .wy-post-card):hover .post-num,
body.wy-site :is(.post, .wy-post-card):focus-visible .post-num {
	color: var(--wy-ember);
}

body.wy-site :is(.post, .wy-post-card):hover .post-divider,
body.wy-site :is(.post, .wy-post-card):focus-visible .post-divider {
	width: 48px;
}

body.wy-site :is(.post, .wy-post-card):hover .post-arrow,
body.wy-site :is(.post, .wy-post-card):focus-visible .post-arrow {
	color: var(--wy-red);
	transform: translate(3px, -3px);
}

body.wy-site :is(.post, .wy-post-card):hover .post-readtime,
body.wy-site :is(.post, .wy-post-card):focus-visible .post-readtime {
	color: rgba(255, 255, 255, 0.6);
}

body.wy-site .wy-post-grid__empty {
	padding: 30px;
	border: 1px solid var(--wy-line);
	background: var(--wy-card);
	color: var(--wy-ink-3);
}

/* Field Guide article. */
body.wy-site .wy-article {
	display: block;
	padding: clamp(132px, 13vw, 160px) 0 100px;
}

body.wy-site .wy-article-inner {
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: var(--wy-article);
	margin-inline: auto;
	padding-inline: var(--wy-gutter);
}

body.wy-site .wy-article-head {
	margin-bottom: 36px;
}

body.wy-site .wy-article-eyebrow {
	margin-bottom: 22px;
}

body.wy-site .wy-article-title .elementor-heading-title {
	margin: 0 0 22px;
	font-family: var(--wy-display);
	font-size: clamp(38px, 5vw, 64px);
	font-weight: 700;
	line-height: 1.02;
	letter-spacing: -0.032em;
	text-wrap: balance;
}

body.wy-site .wy-article-title em {
	color: var(--wy-red);
	font-family: var(--wy-editorial);
	font-weight: 500;
	font-style: italic;
}

body.wy-site .wy-article-deck {
	max-width: 60ch;
	margin-bottom: 26px;
	font-size: clamp(18px, 1.5vw, 21px);
	line-height: 1.55;
}

body.wy-site .wy-article-meta {
	padding-top: 20px;
	border-top: 1px solid var(--wy-line);
	color: var(--wy-ink-3);
	font-family: var(--wy-mono);
	font-size: 10.5px;
	letter-spacing: 0.07em;
	text-transform: uppercase;
}

body.wy-site .wy-article-meta p {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 13px;
	margin: 0;
}

body.wy-site .wy-article-meta strong {
	color: var(--wy-ink);
	font-weight: 600;
}

body.wy-site .wy-article-meta span {
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: var(--wy-ink-4);
}

body.wy-site .wy-article-figure {
	position: relative;
	margin-bottom: 0;
}

body.wy-site .wy-article-art {
	position: relative;
	aspect-ratio: 21 / 9;
	border: 1px solid var(--wy-ink);
	background: linear-gradient(150deg, #f8f2e8, #edddc1 55%, var(--wy-copper));
	overflow: hidden;
}

body.wy-site .wy-article-art :is(.elementor-widget-container, img) {
	width: 100%;
	height: 100%;
}

body.wy-site .wy-article-art img {
	object-fit: cover;
}

body.wy-site .wy-article-art-label {
	position: absolute;
	bottom: 56px;
	left: 18px;
	z-index: 2;
	padding: 6px 10px;
	border: 1px solid var(--wy-line);
	background: rgba(255, 255, 255, 0.92);
	color: var(--wy-ink-2);
	font-family: var(--wy-mono);
	font-size: 10px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

body.wy-site .wy-article-art-label p {
	margin: 0;
}

body.wy-site .wy-figure-caption {
	margin-top: 10px;
	color: var(--wy-ink-3);
	font-family: var(--wy-mono);
	font-size: 10.5px;
	letter-spacing: 0.06em;
}

body.wy-site .wy-article-toc {
	margin-bottom: 48px;
	padding: 28px 32px;
	border: 1px solid var(--wy-line);
	border-left: 3px solid var(--wy-red);
	background: var(--wy-soft);
}

body.wy-site .wy-article-toc h4 {
	margin: 0 0 18px;
	color: var(--wy-ink-3);
	font-family: var(--wy-mono);
	font-size: 10.5px;
	font-weight: 500;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

body.wy-site .wy-article-toc ol {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 11px 30px;
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: wy-toc;
}

body.wy-site .wy-article-toc li {
	display: flex;
	align-items: baseline;
	gap: 11px;
	font-size: 14.5px;
	line-height: 1.4;
	counter-increment: wy-toc;
}

body.wy-site .wy-article-toc li::before {
	content: counter(wy-toc, decimal-leading-zero);
	flex: 0 0 auto;
	color: var(--wy-red);
	font-family: var(--wy-mono);
	font-size: 10.5px;
	letter-spacing: 0.06em;
}

body.wy-site .wy-article-toc a:hover {
	color: var(--wy-red);
}

body.wy-site .wy-article-body {
	color: var(--wy-ink-2);
	font-size: 17px;
	line-height: 1.72;
}

body.wy-site .wy-article-body > .elementor-widget-text-editor p {
	max-width: 68ch;
	margin: 0 0 24px;
	text-wrap: pretty;
}

body.wy-site .wy-article-section {
	display: flex;
	flex-direction: column;
	margin-top: 54px;
}

body.wy-site .wy-article-section > .elementor-widget-heading h2 {
	margin: 0 0 18px;
	color: var(--wy-ink);
	font-family: var(--wy-display);
	font-size: clamp(26px, 2.6vw, 34px);
	font-weight: 700;
	line-height: 1.12;
	letter-spacing: -0.022em;
}

body.wy-site .wy-article-section > .elementor-widget-heading h2 span {
	display: block;
	margin-bottom: 8px;
	color: var(--wy-red);
	font-family: var(--wy-mono);
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 0.1em;
}

body.wy-site .wy-article-section > .elementor-widget-text-editor:not(.wy-pullquote) p {
	margin: 0 0 22px;
}

body.wy-site .wy-article-body :is(a, strong) {
	color: var(--wy-ink);
}

body.wy-site .wy-article-body a {
	text-decoration: underline;
	text-decoration-color: var(--wy-red);
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

body.wy-site .wy-article-body ul {
	max-width: 64ch;
	margin: 0 0 24px;
	padding: 0;
	list-style: none;
}

body.wy-site .wy-article-body li {
	position: relative;
	margin-bottom: 11px;
	padding-left: 26px;
}

body.wy-site .wy-article-body li::before {
	content: "";
	position: absolute;
	top: 11px;
	left: 0;
	width: 8px;
	height: 8px;
	background: var(--wy-red);
	clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

body.wy-site .wy-callout {
	margin: 20px 14px 50px 0;
	padding: 27px 31px;
	border: 1px solid var(--wy-ink);
	background: var(--wy-card);
	box-shadow: 14px 14px 0 -1px var(--wy-ember), 14px 14px 0 0 var(--wy-ink);
}

body.wy-site .wy-callout .wy-eyebrow {
	margin-bottom: 10px;
	color: var(--wy-red);
}

body.wy-site .wy-callout .wy-eyebrow p::before {
	display: none;
}

body.wy-site .wy-callout p {
	margin: 0;
	font-size: 15.5px;
	line-height: 1.62;
}

body.wy-site .wy-pullquote {
	margin: 22px 0;
	padding-left: 28px;
	border-left: 3px solid var(--wy-red);
}

body.wy-site .wy-pullquote blockquote {
	margin: 0;
}

body.wy-site .wy-pullquote p {
	max-width: 31ch;
	margin: 0;
	color: var(--wy-ink);
	font-family: var(--wy-editorial);
	font-size: clamp(22px, 2.4vw, 30px);
	font-style: italic;
	line-height: 1.32;
}

body.wy-site .wy-article-resources,
body.wy-site .wy-article-references {
	display: flex;
	flex-direction: column;
	margin-top: 76px;
}

body.wy-site :is(.wy-article-resources, .wy-article-references) > .wy-eyebrow {
	margin-bottom: 8px;
}

body.wy-site :is(.wy-article-resources, .wy-article-references) > .wy-h2 {
	margin-bottom: 28px;
}

body.wy-site :is(.wy-article-resources, .wy-article-references) > .wy-h2 .elementor-heading-title {
	font-size: clamp(25px, 2.6vw, 32px);
}

body.wy-site .wy-article-resources .wy-related {
	margin-top: 0;
}

body.wy-site .wy-article-resources :is(.wy-related__kicker, .wy-related__title) {
	display: none;
}

body.wy-site .resource-list,
body.wy-site .wy-related__list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1px;
	border: 1px solid var(--wy-line);
	background: var(--wy-line);
}

body.wy-site .resource,
body.wy-site .wy-related__item {
	display: flex;
	align-items: flex-start;
	gap: 17px;
	min-width: 0;
	padding: 23px 25px;
	background: var(--wy-card);
	transition: background 0.25s var(--wy-ease);
}

body.wy-site :is(.resource, .wy-related__item):hover,
body.wy-site :is(.resource, .wy-related__item):focus-visible {
	background: var(--wy-ink);
}

body.wy-site .res-kind {
	flex: 0 0 auto;
	padding: 4px 7px;
	border: 1px solid var(--wy-line);
	color: var(--wy-ink-3);
	font-family: var(--wy-mono);
	font-size: 9px;
	letter-spacing: 0.11em;
	text-transform: uppercase;
	transition: color 0.25s var(--wy-ease), border-color 0.25s var(--wy-ease);
}

body.wy-site .res-text {
	display: flex;
	flex: 1 1 auto;
	min-width: 0;
	flex-direction: column;
}

body.wy-site .res-title {
	color: var(--wy-ink);
	font-family: var(--wy-display);
	font-size: 17px;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: -0.012em;
	transition: color 0.25s var(--wy-ease);
}

body.wy-site .res-desc {
	margin-top: 5px;
	color: var(--wy-ink-3);
	font-size: 13px;
	line-height: 1.5;
	transition: color 0.25s var(--wy-ease);
}

body.wy-site .res-arrow {
	flex: 0 0 auto;
	color: var(--wy-ink-4);
	transition: color 0.25s var(--wy-ease), transform 0.25s var(--wy-ease);
}

body.wy-site :is(.resource, .wy-related__item):hover .res-kind,
body.wy-site :is(.resource, .wy-related__item):focus-visible .res-kind {
	border-color: var(--wy-ember);
	color: var(--wy-ember);
}

body.wy-site :is(.resource, .wy-related__item):hover .res-title,
body.wy-site :is(.resource, .wy-related__item):focus-visible .res-title {
	color: #fff;
}

body.wy-site :is(.resource, .wy-related__item):hover .res-desc,
body.wy-site :is(.resource, .wy-related__item):focus-visible .res-desc {
	color: rgba(255, 255, 255, 0.66);
}

body.wy-site :is(.resource, .wy-related__item):hover .res-arrow,
body.wy-site :is(.resource, .wy-related__item):focus-visible .res-arrow {
	color: var(--wy-red);
	transform: translate(3px, -3px);
}

body.wy-site .wy-references ol {
	margin: 0;
	padding: 0;
	border-top: 1px solid var(--wy-line);
	list-style: none;
	counter-reset: wy-reference;
}

body.wy-site .wy-references li {
	display: grid;
	grid-template-columns: 36px minmax(0, 1fr);
	gap: 16px;
	padding: 18px 0;
	border-bottom: 1px solid var(--wy-line);
	color: var(--wy-ink-2);
	font-size: 14px;
	line-height: 1.52;
	counter-increment: wy-reference;
}

body.wy-site .wy-references li::before {
	content: counter(wy-reference, decimal-leading-zero);
	color: var(--wy-red);
	font-family: var(--wy-mono);
	font-size: 11px;
	letter-spacing: 0.05em;
}

body.wy-site .wy-references a {
	color: var(--wy-ink);
	text-decoration: underline;
	text-decoration-color: var(--wy-line);
	text-underline-offset: 3px;
}

body.wy-site .wy-references a:hover {
	text-decoration-color: var(--wy-red);
}

body.wy-site .wy-article-cta {
	--gap: 32px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 32px;
	margin-top: 80px;
	padding: clamp(34px, 5vw, 48px);
	border-top: 3px solid var(--wy-red);
	background: var(--wy-ink);
	color: #fff;
}

body.wy-site .wy-article-cta h3 {
	margin: 0 0 8px;
	font-family: var(--wy-display);
	font-size: clamp(24px, 2.6vw, 34px);
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: -0.024em;
}

body.wy-site .wy-article-cta h3 em {
	color: var(--wy-ember);
	font-family: var(--wy-editorial);
	font-weight: 500;
	font-style: italic;
}

body.wy-site .wy-article-cta p {
	max-width: 44ch;
	margin: 0;
	color: #b8b8ba;
	font-size: 15px;
}

/* Native/fallback screens. */
body.wy-site .wy-index,
body.wy-site .wy-error-page {
	min-height: 70vh;
	padding: clamp(120px, 14vw, 180px) 0 90px;
}

body.wy-site .wy-native-wrap {
	max-width: var(--wy-narrow);
}

body.wy-site .wy-native-wrap h1 {
	max-width: 12ch;
	margin: 12px 0 20px;
	font-family: var(--wy-display);
	font-size: clamp(42px, 7vw, 84px);
	line-height: 1;
	letter-spacing: -0.03em;
}

body.wy-site .wy-native-wrap > p:not(.wy-eyebrow) {
	max-width: 52ch;
	color: var(--wy-ink-2);
}

body.wy-site .wy-native-wrap > .wy-button {
	margin-top: 16px;
}

body.wy-site .wy-index article {
	padding: 28px 0;
	border-top: 1px solid var(--wy-line);
}

/* Reveal enhancement: content remains visible when JavaScript is unavailable. */
.wy-js body:not(.elementor-editor-active) .wy-reveal,
.wy-js body:not(.elementor-editor-active) .reveal {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.8s var(--wy-ease-out), transform 0.8s var(--wy-ease-out);
}

.wy-js body:not(.elementor-editor-active) :is(.wy-reveal, .reveal).is-visible,
.wy-js body:not(.elementor-editor-active) :is(.wy-reveal, .reveal).in,
.wy-elementor-editing :is(.wy-reveal, .reveal) {
	opacity: 1;
	transform: none;
}

/* Keep modal content directly editable inside Elementor. */
.wy-elementor-editing body.wy-site .wy-modal,
body.elementor-editor-active.wy-site .wy-modal {
	position: relative;
	inset: auto;
	display: flex !important;
	padding: 24px;
	background: var(--wy-soft);
	-webkit-backdrop-filter: none;
	backdrop-filter: none;
}

.wy-elementor-editing body.wy-site .wy-modal-dialog,
body.elementor-editor-active.wy-site .wy-modal-dialog {
	max-height: none;
	box-shadow: none;
}

/* Responsive: recovered prototype breakpoints. */
@media (max-width: 1000px) {
	:root {
		--wy-header-height: 72px;
	}

	body.wy-site .wy-menu-toggle {
		display: block;
		order: 2;
	}

	body.wy-site .wy-header-cta {
		order: 3;
	}

	body.wy-site .wy-brand {
		order: 1;
		margin-right: auto;
	}

	body.wy-site .wy-nav-links {
		position: absolute;
		top: calc(100% + 1px);
		right: var(--wy-gutter);
		left: var(--wy-gutter);
		z-index: 2;
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 10px;
		border: 1px solid var(--wy-line);
		background: rgba(255, 255, 255, 0.98);
		box-shadow: var(--wy-shadow);
		width: auto;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transform: translateY(-8px);
		transition: opacity 0.2s var(--wy-ease), visibility 0.2s var(--wy-ease), transform 0.2s var(--wy-ease);
	}

	body.wy-site .wy-header.is-menu-open .wy-nav-links,
	body.wy-site .wy-nav-links.is-open {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: none;
	}

	body.wy-site .wy-nav-link,
	body.wy-site .wy-nav-link .elementor-button {
		width: 100%;
	}

	body.wy-site .wy-nav-link .elementor-button {
		justify-content: flex-start;
		padding: 13px 14px;
		font-size: 15px;
		text-align: left;
	}

	body.wy-site .wy-nav-link .elementor-button::after {
		top: auto;
		right: 14px;
		bottom: 7px;
		left: 14px;
	}

	body.wy-site .wy-section-head {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	body.wy-site .wy-hero-main {
		grid-template-columns: 1fr;
		gap: 54px;
	}

	body.wy-site .wy-hero-art {
		max-width: 520px;
		justify-self: center;
	}

	body.wy-site .wy-services-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	body.wy-site .wy-process-stage {
		min-height: 0;
	}

	body.wy-site .wy-process-panel {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	body.wy-site .wy-process-copy {
		min-height: 390px;
	}

	body.wy-site .wy-process-scene {
		min-height: 360px;
	}

	body.wy-site .wy-about-story,
	body.wy-site .wy-contact-grid,
	body.wy-site .wy-learn-intro {
		grid-template-columns: 1fr;
	}

	body.wy-site .wy-about-art {
		justify-self: start;
	}

	body.wy-site .wy-promises {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	body.wy-site .wy-portfolio-grid {
		grid-template-columns: 1fr;
	}

	body.wy-site .wy-pricing-grid {
		grid-template-columns: 1fr;
	}

	body.wy-site .wy-tier > .elementor-widget-text-editor:not(.wy-tier-headline):not(.wy-tier-price):not(.wy-tier-features):not(.wy-tier-badge):not(.wy-tier-badge-spacer) {
		min-height: 0;
	}

	body.wy-site .wy-footer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 36px;
	}

	body.wy-site .wy-featured-guide {
		grid-template-columns: 1fr;
	}

	body.wy-site .wy-featured-art {
		height: 240px;
		min-height: 240px;
	}

	body.wy-site :is(.learn-grid, .wy-post-grid) {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	body.wy-site .wy-article-cta {
		grid-template-columns: 1fr;
	}
}

@media (min-width: 641px) and (max-width: 1000px) {
	body.wy-site .wy-menu-toggle {
		display: none;
	}
}

@media (max-width: 782px) {
	body.admin-bar.wy-site .wy-header {
		top: 46px;
	}
}

@media (max-width: 640px) {
	:root {
		--wy-gutter: 20px;
		--wy-section-space: 72px;
	}

	body.wy-site .wy-header-cta {
		display: none;
	}

	body.wy-site .wy-featured-copy {
		padding: 32px 28px;
	}

	body.wy-site .wy-brand-wordmark .elementor-heading-title {
		font-size: 16px;
	}

	body.wy-site .wy-brand-mark,
	body.wy-site .wy-brand-mark :is(.elementor-widget-container, a, img) {
		width: 28px;
		height: 28px;
		min-width: 28px;
	}

	body.wy-site .wy-nav-links {
		right: 12px;
		left: 12px;
	}

	body.wy-site .wy-hero {
		padding-top: 122px;
	}

	body.wy-site .wy-h1 .elementor-heading-title,
	body.wy-site .wy-h1.elementor-heading-title {
		font-size: clamp(39px, 12vw, 58px);
	}

	body.wy-site .wy-hero-actions,
	body.wy-site .wy-hero-actions > .elementor-element,
	body.wy-site .wy-hero-actions .elementor-button {
		width: 100%;
	}

	body.wy-site .wy-video-frame {
		width: calc(100% - 14px);
		margin-bottom: 14px;
		box-shadow: 14px 14px 0 -1px var(--wy-red), 14px 14px 0 0 var(--wy-ink);
	}

	body.wy-site .cv-bottom-r {
		display: none;
	}

	body.wy-site .wy-process-tabs {
		gap: 4px;
	}

	body.wy-site .wy-process-copy {
		min-height: 430px;
	}

	body.wy-site .wy-process-scene {
		min-height: 260px;
		padding: 14px;
	}

	body.wy-site .wy-about-art {
		width: calc(100% - 16px);
		box-shadow: 16px 16px 0 -1px var(--wy-copper), 16px 16px 0 0 var(--wy-ink);
	}

	body.wy-site .wy-custom-quote {
		grid-template-columns: 1fr;
		padding: 24px;
	}

	body.wy-site .wy-custom-quote .wy-button,
	body.wy-site .wy-custom-quote .elementor-button {
		width: 100%;
	}

	body.wy-site .wy-contact-form {
		padding: 26px 22px;
	}

	body.wy-site .wy-modal {
		align-items: start;
		padding: 10px;
	}

	body.wy-site .wy-modal-dialog {
		width: 100%;
		max-height: calc(100dvh - 20px);
		padding: 26px 22px;
	}

	body.wy-site .wy-modal-close {
		top: 14px;
		right: 14px;
	}

	body.wy-site .wy-modal-includes ul,
	body.wy-site .wy-tier-details dl {
		grid-template-columns: 1fr;
	}

	body.wy-site .wy-quote-dialog > .elementor-widget-shortcode {
		margin: 4px -22px -26px;
		padding: 26px 22px;
	}

	body.wy-site .wy-footer-bottom {
		align-items: flex-start;
		flex-direction: column;
	}

	body.wy-site .wy-learn-hero,
	body.wy-site .wy-article {
		padding-top: 120px;
	}

	body.wy-site .wy-guide-list-head {
		align-items: flex-start;
		flex-direction: column;
		gap: 8px;
	}

	body.wy-site :is(.learn-grid, .wy-post-grid) {
		grid-template-columns: 1fr;
	}

	body.wy-site .wy-article-toc {
		padding: 24px 22px;
	}

	body.wy-site .wy-article-toc ol,
	body.wy-site :is(.resource-list, .wy-related__list) {
		grid-template-columns: 1fr;
	}

	body.wy-site .wy-article-cta {
		margin-inline: -4px;
	}
}

@media (max-width: 600px) {
	body.wy-site .wy-services-grid,
	body.wy-site .wy-form-row,
	body.wy-site .wy-footer-grid {
		grid-template-columns: 1fr;
	}

	body.wy-site .wy-service-card {
		min-height: 286px;
	}

	body.wy-site .wy-project > .elementor-widget-image {
		min-height: 280px;
		padding: 22px;
	}

	body.wy-site .wy-project-meta {
		flex-direction: column;
	}

	body.wy-site .wy-project-meta p {
		text-align: left;
	}

	body.wy-site .wy-tier {
		padding: 30px 24px 26px;
	}

	body.wy-site .wy-article-meta p {
		gap: 9px;
	}

	body.wy-site .wy-article-art {
		aspect-ratio: 16 / 9;
	}
}

/* Motion preferences. JS also disables process auto-advance. */
@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}

	.wy-js body.wy-site :is(.wy-reveal, .reveal) {
		opacity: 1;
		transform: none;
	}

	body.wy-site .wy-process-tab .elementor-button::after {
		animation: none !important;
	}
}

/* A clean, article-first print view. */
@media print {
	@page {
		margin: 18mm;
	}

	:root {
		--wy-paper: #fff;
		--wy-card: #fff;
		--wy-ink: #000;
		--wy-ink-2: #222;
		--wy-ink-3: #444;
		--wy-line: rgba(0, 0, 0, 0.25);
	}

	html,
	body.wy-site {
		background: #fff !important;
		color: #000 !important;
		font-size: 11pt;
	}

	body.wy-site :is(.wy-header, .wy-fallback-header, .wy-footer, .wy-fallback-footer, .wy-skip-link, .wy-modal, .wy-back-link, .wy-article-cta, .wy-process-pause) {
		display: none !important;
	}

	body.wy-site :is(.wy-reveal, .reveal) {
		opacity: 1 !important;
		transform: none !important;
	}

	body.wy-site .wy-article,
	body.wy-site .wy-section {
		padding: 0 !important;
	}

	body.wy-site .wy-article-inner,
	body.wy-site .wy-wrap {
		max-width: none !important;
		padding: 0 !important;
	}

	body.wy-site .wy-article-title .elementor-heading-title {
		font-size: 32pt;
	}

	body.wy-site :is(.wy-article-head, .wy-article-figure, .wy-article-toc, .wy-article-section, .wy-callout, .wy-pullquote, .wy-article-resources, .wy-article-references) {
		break-inside: avoid;
	}

	body.wy-site .wy-callout {
		box-shadow: none;
	}

	body.wy-site .wy-article-body a[href^="http"]::after,
	body.wy-site .wy-references a[href^="http"]::after {
		content: " (" attr(href) ")";
		font-family: var(--wy-mono);
		font-size: 8pt;
		word-break: break-all;
	}
}
