/* =========================================================
   EDUCANDIS — RED PUZZLE
   Red / white / neutral visual system. No navy.
   ========================================================= */

:root {
	--ed-red: #e34234;
	--ed-red-dark: #e34234;
	--ed-red-deep: #e34234;
	--ed-red-soft: #fde9e6;
	--ed-white: #ffffff;
	--ed-warm: #f6f3f1;
	--ed-warm-2: #eee9e6;
	--ed-line: #e7dfdb;
	--ed-ink: #171514;
	--ed-muted: #6f6865;
	--ed-shadow: 0 18px 55px rgba(68, 28, 24, .12);
	--ed-shadow-soft: 0 10px 32px rgba(68, 28, 24, .08);
	--ed-radius-sm: 12px;
	--ed-radius: 22px;
	--ed-radius-lg: 34px;
	--ed-container: 1220px;
	--ed-header: 78px;
	--ed-ease: cubic-bezier(.2, .7, .2, 1);
	--ed-heading: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--ed-body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
	scroll-behavior: smooth;
	scroll-padding-top: 100px;
}

body {
	margin: 0;
	background: var(--ed-white);
	color: var(--ed-ink);
	font-family: var(--ed-body);
	font-size: 16px;
	line-height: 1.65;
	overflow-x: hidden;
}

body.menu-open {
	overflow: hidden;
}

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

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

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

button {
	cursor: pointer;
}

::selection {
	background: var(--ed-red);
	color: var(--ed-white);
}

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

.icon {
	width: 1.15em;
	height: 1.15em;
	flex: 0 0 auto;
}

.skip-link {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 9999;
	padding: 12px 18px;
	background: var(--ed-ink);
	color: var(--ed-white);
	border-radius: 8px;
	transform: translateY(-150%);
	transition: transform .2s ease;
}

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

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin: 0 0 16px;
	color: var(--ed-red);
	font-family: var(--ed-heading);
	font-size: .74rem;
	font-weight: 700;
	letter-spacing: .16em;
	line-height: 1.25;
	text-transform: uppercase;
}

.eyebrow::before {
	width: 22px;
	height: 3px;
	background: currentColor;
	border-radius: 99px;
	content: "";
}

.eyebrow--light {
	color: var(--ed-white);
}

.button {
	min-height: 50px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 11px;
	padding: 12px 24px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-family: var(--ed-heading);
	font-size: .88rem;
	font-weight: 700;
	line-height: 1;
	transition:
		background-color .25s var(--ed-ease),
		color .25s var(--ed-ease),
		border-color .25s var(--ed-ease),
		box-shadow .25s var(--ed-ease),
		transform .25s var(--ed-ease);
}

.button:hover {
	transform: translateY(-2px);
}

.button--primary {
	background: var(--ed-red);
	color: var(--ed-white);
	box-shadow: 0 10px 24px rgba(227, 66, 52, .25);
}

.button--primary:hover {
	background: var(--ed-red-dark);
	box-shadow: 0 13px 30px rgba(227, 66, 52, .34);
	color: var(--ed-white);
}

.button--ghost {
	border-color: var(--ed-line);
	background: var(--ed-white);
	color: var(--ed-ink);
}

.button--ghost:hover {
	border-color: var(--ed-red);
	color: var(--ed-red);
}

.button--white {
	background: var(--ed-white);
	color: var(--ed-red);
	box-shadow: 0 12px 26px rgba(104, 20, 15, .18);
}

.button--white:hover {
	background: var(--ed-warm);
	color: var(--ed-red-dark);
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--ed-red);
	font-family: var(--ed-heading);
	font-size: .9rem;
	font-weight: 700;
}

.text-link .icon {
	transition: transform .25s var(--ed-ease);
}

.text-link:hover .icon {
	transform: translateX(5px);
}

.section-heading {
	max-width: 660px;
	margin-bottom: 48px;
}

.section-heading--center {
	margin-inline: auto;
	text-align: center;
}

.section-heading--center .eyebrow {
	justify-content: center;
}

.section-heading h2,
.cta-panel h2,
.story-copy h2,
.signature-copy h2,
.finance-intro__copy h2,
.contact-form-card h2 {
	margin: 0;
	font-family: var(--ed-heading);
	font-size: clamp(2rem, 4vw, 3.45rem);
	font-weight: 700;
	letter-spacing: -.045em;
	line-height: 1.08;
}

.section-heading p {
	max-width: 600px;
	margin: 18px 0 0;
	color: var(--ed-muted);
}

.section-heading--center p {
	margin-inline: auto;
}

/* Header ================================================= */

.site-header {
	position: absolute;
	top: 24px;
	left: 0;
	z-index: 1000;
	width: 100%;
	transition: top .3s var(--ed-ease);
}

.site-header.is-scrolled {
	position: fixed;
	top: 0;
}

.header-shell {
	position: relative;
	z-index: 2;
	min-height: var(--ed-header);
	display: flex;
	align-items: center;
	gap: 26px;
	padding: 8px 10px 8px 20px;
	background: rgba(255, 255, 255, .96);
	border: 1px solid rgba(231, 223, 219, .86);
	border-radius: 18px;
	box-shadow: 0 12px 38px rgba(68, 28, 24, .08);
	backdrop-filter: blur(16px);
	transition:
		min-height .3s var(--ed-ease),
		border-radius .3s var(--ed-ease),
		box-shadow .3s var(--ed-ease);
}

.site-header.is-scrolled .site-container {
	width: 100%;
	max-width: none;
}

.site-header.is-scrolled .header-shell {
	position: relative;
	z-index: 2;
	min-height: 70px;
	border-width: 0 0 1px;
	border-radius: 0;
	box-shadow: 0 8px 28px rgba(68, 28, 24, .1);
	padding-inline: max(24px, calc((100vw - var(--ed-container)) / 2));
}

.site-brand {
	flex: 0 0 auto;
}

.brand-logo,
.custom-logo-link {
	display: flex;
	align-items: center;
}

.brand-logo img,
.custom-logo {
	width: auto;
	height: 48px;
}

.desktop-nav {
	margin-left: auto;
}

.desktop-nav ul,
.footer-nav ul,
.mobile-menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.desktop-nav .menu {
	display: flex;
	align-items: center;
	gap: 4px;
}

.desktop-nav a {
	position: relative;
	display: block;
	padding: 18px 13px;
	color: var(--ed-ink);
	font-family: var(--ed-heading);
	font-size: .82rem;
	font-weight: 600;
}

.desktop-nav a::after {
	position: absolute;
	right: 13px;
	bottom: 11px;
	left: 13px;
	height: 3px;
	background: var(--ed-red);
	border-radius: 9px;
	content: "";
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .25s var(--ed-ease);
}

.desktop-nav a:hover::after,
.desktop-nav .current-menu-item > a::after,
.desktop-nav .current_page_item > a::after {
	transform: scaleX(1);
}

.header-cta {
	min-height: 50px;
	padding-inline: 21px;
}

.menu-toggle {
	width: 48px;
	height: 48px;
	display: none;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 5px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: var(--ed-red-soft);
}

.menu-toggle span {
	width: 21px;
	height: 2px;
	background: var(--ed-red);
	border-radius: 9px;
	transition: transform .3s var(--ed-ease), opacity .2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
	opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
	position: fixed;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 36px;
	padding: 120px 28px 50px;
	background: rgba(255, 255, 255, .98);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-16px);
	transition: opacity .3s var(--ed-ease), visibility .3s var(--ed-ease), transform .3s var(--ed-ease);
}

.mobile-menu.is-open {
	z-index: 1;
	pointer-events: auto;
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.mobile-menu__pattern {
	position: absolute;
	right: -100px;
	bottom: -100px;
	width: 360px;
	height: 360px;
	background: url("../images/puzzle-outline.svg") center / contain no-repeat;
	opacity: .08;
	transform: rotate(12deg);
}

.mobile-menu nav {
	position: relative;
	z-index: 1;
}

.mobile-menu .menu {
	display: flex;
	align-items: center;
	flex-direction: column;
	gap: 11px;
}

.mobile-menu .menu a {
	display: block;
	padding: 8px 18px;
	font-family: var(--ed-heading);
	font-size: clamp(1.55rem, 7vw, 2.3rem);
	font-weight: 700;
	letter-spacing: -.035em;
	line-height: 1.2;
}

.mobile-menu .menu a:hover {
	color: var(--ed-red);
}

/* Hero =================================================== */

.hero-section {
	position: relative;
	min-height: 850px;
	display: flex;
	align-items: center;
	padding: 150px 0 108px;
	background:
		linear-gradient(90deg, rgba(246, 243, 241, .78) 1px, transparent 1px),
		linear-gradient(rgba(246, 243, 241, .78) 1px, transparent 1px),
		var(--ed-white);
	background-size: 88px 88px;
	overflow: hidden;
}

.hero-section::before {
	position: absolute;
	inset: auto auto -180px -130px;
	width: 500px;
	height: 500px;
	background: var(--ed-red-soft);
	border-radius: 50%;
	content: "";
	filter: blur(2px);
	opacity: .72;
}

.hero-grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
	align-items: center;
	gap: clamp(54px, 7vw, 100px);
}

.hero-copy {
	max-width: 690px;
	padding-top: 20px;
}

.hero-title {
	max-width: 760px;
	margin: 0;
	font-family: var(--ed-heading);
	font-size: clamp(3.2rem, 6.7vw, 6.25rem);
	font-weight: 700;
	letter-spacing: -.065em;
	line-height: .98;
	text-wrap: balance;
}

.hero-title span {
	position: relative;
	display: inline-block;
	color: var(--ed-red);
}

.hero-title span::after {
	position: absolute;
	right: 1%;
	bottom: .03em;
	left: 1%;
	height: .09em;
	background: currentColor;
	border-radius: 99px;
	content: "";
	opacity: .22;
	transform: rotate(-1deg);
}

.hero-lead {
	max-width: 620px;
	margin: 28px 0 0;
	color: var(--ed-muted);
	font-size: clamp(1rem, 1.4vw, 1.12rem);
	line-height: 1.75;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 34px;
}

.hero-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 48px;
	padding-top: 28px;
	border-top: 1px solid var(--ed-line);
}

.hero-stats div {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.hero-stats strong {
	color: var(--ed-red);
	font-family: var(--ed-heading);
	font-size: clamp(1.65rem, 3vw, 2.35rem);
	font-weight: 700;
	letter-spacing: -.04em;
	line-height: 1;
}

.hero-stats span {
	max-width: 130px;
	color: var(--ed-muted);
	font-size: .76rem;
	line-height: 1.35;
}

.hero-visual {
	position: relative;
	min-height: 595px;
}

.hero-visual__back {
	position: absolute;
	top: 54px;
	right: -22px;
	width: 88%;
	height: 83%;
	background: var(--ed-red);
	border-radius: 42px;
	transform: rotate(5deg);
}

.hero-visual__back::before,
.hero-visual__back::after {
	position: absolute;
	width: 92px;
	height: 92px;
	border-radius: 50%;
	content: "";
}

.hero-visual__back::before {
	top: -42px;
	left: 26%;
	background: var(--ed-red);
}

.hero-visual__back::after {
	right: -42px;
	bottom: 22%;
	background: var(--ed-white);
}

.hero-puzzle-image {
	position: absolute;
	top: 0;
	right: 4%;
	width: 92%;
	aspect-ratio: 1 / 1;
	-webkit-mask: url("../images/puzzle-mask.svg") center / contain no-repeat;
	mask: url("../images/puzzle-mask.svg") center / contain no-repeat;
	filter: drop-shadow(0 20px 38px rgba(68, 28, 24, .2));
}

.hero-puzzle-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-note {
	position: absolute;
	right: -10px;
	bottom: 24px;
	width: min(340px, 75%);
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 18px 20px;
	background: var(--ed-white);
	border: 1px solid var(--ed-line);
	border-radius: 18px;
	box-shadow: var(--ed-shadow);
}

.hero-note__piece {
	width: 42px;
	height: 42px;
	flex: 0 0 auto;
	background: var(--ed-red);
	-webkit-mask: url("../images/puzzle-mask.svg") center / contain no-repeat;
	mask: url("../images/puzzle-mask.svg") center / contain no-repeat;
}

.hero-note strong,
.hero-note span {
	display: block;
}

.hero-note strong {
	font-family: var(--ed-heading);
	font-size: .84rem;
	line-height: 1.2;
}

.hero-note span {
	margin-top: 4px;
	color: var(--ed-muted);
	font-size: .68rem;
}

.hero-mini-card {
	position: absolute;
	z-index: 3;
	width: 118px;
	height: 108px;
	display: flex;
	justify-content: center;
	flex-direction: column;
	padding: 18px;
	background: var(--ed-white);
	border: 1px solid var(--ed-line);
	border-radius: 18px;
	box-shadow: var(--ed-shadow-soft);
}

.hero-mini-card span {
	color: var(--ed-red);
	font-family: var(--ed-heading);
	font-size: .72rem;
	font-weight: 700;
}

.hero-mini-card strong {
	margin-top: 4px;
	font-family: var(--ed-heading);
	font-size: .82rem;
}

.hero-mini-card--top {
	top: 44px;
	left: -38px;
}

.hero-mini-card--top::after {
	position: absolute;
	right: -16px;
	top: 36px;
	width: 32px;
	height: 32px;
	background: var(--ed-white);
	border: 1px solid var(--ed-line);
	border-left: 0;
	border-bottom: 0;
	border-radius: 50%;
	content: "";
}

.hero-mini-card--bottom {
	right: 48px;
	bottom: -18px;
	transform: rotate(3deg);
}

.hero-scroll {
	position: absolute;
	bottom: 34px;
	left: 50%;
	z-index: 4;
	display: flex;
	align-items: center;
	gap: 12px;
	color: var(--ed-muted);
	font-family: var(--ed-heading);
	font-size: .68rem;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	transform: translateX(-50%);
}

.hero-scroll span {
	width: 32px;
	height: 48px;
	border: 1px solid var(--ed-line);
	border-radius: 18px;
	position: relative;
}

.hero-scroll span::after {
	position: absolute;
	top: 9px;
	left: 50%;
	width: 4px;
	height: 8px;
	background: var(--ed-red);
	border-radius: 99px;
	content: "";
	transform: translateX(-50%);
	animation: ed-scroll 1.8s infinite;
}

.puzzle-outline {
	position: absolute;
	width: 220px;
	height: 220px;
	background: url("../images/puzzle-outline.svg") center / contain no-repeat;
	opacity: .1;
	pointer-events: none;
}

.puzzle-outline--hero-one {
	top: 94px;
	right: -70px;
	transform: rotate(16deg);
}

.puzzle-outline--hero-two {
	bottom: 18px;
	left: 37%;
	width: 130px;
	height: 130px;
	transform: rotate(-12deg);
	opacity: .06;
}

/* Story band ============================================= */

.story-section {
	position: relative;
	padding: 52px 0 100px;
	background: linear-gradient(to bottom, var(--ed-white) 0 116px, var(--ed-red) 116px 100%);
	overflow: hidden;
}

.story-section::after {
	position: absolute;
	right: -80px;
	bottom: -100px;
	width: 380px;
	height: 380px;
	background: url("../images/puzzle-outline.svg") center / contain no-repeat;
	content: "";
	opacity: .12;
	filter: brightness(0) invert(1);
	transform: rotate(14deg);
}

.story-grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(320px, .86fr) minmax(0, 1.14fr);
	align-items: center;
	gap: clamp(54px, 7vw, 96px);
}

.story-image-wrap {
	position: relative;
	min-height: 580px;
}

.story-image {
	position: absolute;
	inset: 0;
	-webkit-mask: url("../images/puzzle-mask.svg") center / contain no-repeat;
	mask: url("../images/puzzle-mask.svg") center / contain no-repeat;
	filter: drop-shadow(0 25px 45px rgba(88, 22, 17, .22));
}

.story-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.story-image-tag {
	position: absolute;
	right: -14px;
	bottom: 38px;
	min-width: 220px;
	padding: 16px 20px;
	background: var(--ed-white);
	border-radius: 16px;
	box-shadow: var(--ed-shadow);
}

.story-image-tag span,
.story-image-tag strong {
	display: block;
}

.story-image-tag span {
	color: var(--ed-red);
	font-size: .7rem;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.story-image-tag strong {
	margin-top: 2px;
	font-family: var(--ed-heading);
	font-size: .9rem;
}

.story-copy {
	max-width: 660px;
	padding-top: 96px;
	color: var(--ed-white);
}

.story-copy h2 {
	color: var(--ed-white);
}

.story-copy > p {
	max-width: 620px;
	margin: 24px 0 0;
	color: rgba(255, 255, 255, .78);
	font-size: 1rem;
	line-height: 1.8;
}

.story-points,
.check-list {
	margin: 28px 0 30px;
	padding: 0;
	list-style: none;
}

.story-points li,
.check-list li {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 12px;
}

.story-points .icon {
	width: 26px;
	height: 26px;
	padding: 5px;
	background: var(--ed-white);
	color: var(--ed-red);
	border-radius: 50%;
}

.story-copy .text-link {
	color: var(--ed-white);
}

/* Offer ================================================== */

.offer-section {
	padding: 112px 0 118px;
	background: var(--ed-white);
}

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

.offer-card {
	position: relative;
	padding-bottom: 4px;
}

.offer-card__media {
	position: relative;
	height: 360px;
	display: block;
	overflow: hidden;
	background: var(--ed-warm);
	border-radius: var(--ed-radius);
}

.offer-card__media::before {
	position: absolute;
	top: -30px;
	right: 58px;
	z-index: 2;
	width: 60px;
	height: 60px;
	background: var(--ed-white);
	border-radius: 50%;
	content: "";
}

.offer-card__media::after {
	position: absolute;
	right: -28px;
	bottom: 76px;
	z-index: 2;
	width: 58px;
	height: 58px;
	background: var(--ed-white);
	border-radius: 50%;
	content: "";
}

.offer-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .65s var(--ed-ease), filter .45s var(--ed-ease);
}

.offer-card:hover .offer-card__media img {
	transform: scale(1.075);
	filter: saturate(.86);
}

.offer-card__index {
	position: absolute;
	top: 18px;
	left: 18px;
	z-index: 3;
	width: 50px;
	height: 50px;
	display: grid;
	place-items: center;
	background: var(--ed-white);
	color: var(--ed-red);
	border-radius: 50%;
	font-family: var(--ed-heading);
	font-size: .75rem;
	font-weight: 700;
	box-shadow: var(--ed-shadow-soft);
}

.offer-card__label {
	position: relative;
	z-index: 5;
	width: calc(100% - 40px);
	min-height: 70px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin: -35px auto 0;
	padding: 16px 22px;
	background: var(--ed-red);
	color: var(--ed-white);
	border-radius: 17px;
	box-shadow: 0 14px 30px rgba(177, 38, 29, .25);
	font-family: var(--ed-heading);
	font-size: 1rem;
	font-weight: 700;
	transition: transform .3s var(--ed-ease), background .3s var(--ed-ease);
}

.offer-card:hover .offer-card__label {
	background: var(--ed-red-dark);
	transform: translateY(-8px);
}

.offer-card__label .icon {
	width: 20px;
	height: 20px;
}

.offer-card__copy {
	padding: 20px 18px 0;
}

.offer-card__copy > span {
	color: var(--ed-red);
	font-size: .69rem;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.offer-card__copy p {
	margin: 9px 0 0;
	color: var(--ed-muted);
	font-size: .88rem;
	line-height: 1.7;
}

/* Process ================================================ */

.process-section {
	position: relative;
	padding: 104px 0 114px;
	background: var(--ed-warm);
	overflow: hidden;
}

.process-pattern {
	position: absolute;
	top: 28px;
	right: -105px;
	width: 360px;
	height: 360px;
	background: url("../images/puzzle-outline.svg") center / contain no-repeat;
	opacity: .06;
	transform: rotate(19deg);
}

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

.process-card {
	position: relative;
	overflow: visible;
	background: var(--ed-white);
	border: 1px solid var(--ed-line);
	border-radius: var(--ed-radius);
	box-shadow: var(--ed-shadow-soft);
	transition: transform .3s var(--ed-ease), box-shadow .3s var(--ed-ease);
}

.process-card:hover {
	box-shadow: var(--ed-shadow);
	transform: translateY(-7px);
}

.process-card header {
	position: relative;
	min-height: 94px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 22px 26px;
	background: var(--ed-red);
	color: var(--ed-white);
	border-radius: var(--ed-radius) var(--ed-radius) 0 0;
	overflow: hidden;
}

.process-card header::before {
	position: absolute;
	top: 50%;
	right: -23px;
	width: 46px;
	height: 46px;
	background: var(--ed-warm);
	border-radius: 50%;
	content: "";
	transform: translateY(-50%);
}

.process-card header span {
	font-family: var(--ed-heading);
	font-size: 2.2rem;
	font-weight: 700;
	letter-spacing: -.06em;
	opacity: .55;
}

.process-card header > div {
	width: 48px;
	height: 48px;
	display: grid;
	place-items: center;
	margin-right: 13px;
	background: rgba(255, 255, 255, .15);
	border: 1px solid rgba(255, 255, 255, .22);
	border-radius: 50%;
}

.process-card header .icon {
	width: 22px;
	height: 22px;
}

.process-card__body {
	min-height: 220px;
	padding: 30px 28px 34px;
}

.process-card__body h3 {
	margin: 0;
	font-family: var(--ed-heading);
	font-size: 1.22rem;
	line-height: 1.3;
}

.process-card__body p {
	margin: 14px 0 0;
	color: var(--ed-muted);
	font-size: .9rem;
	line-height: 1.72;
}

/* Signature ============================================== */

.signature-section {
	position: relative;
	padding: 112px 0;
	background: var(--ed-red);
	color: var(--ed-white);
	overflow: hidden;
}

.signature-section::before {
	position: absolute;
	top: -180px;
	left: -130px;
	width: 430px;
	height: 430px;
	background: url("../images/puzzle-outline.svg") center / contain no-repeat;
	content: "";
	filter: brightness(0) invert(1);
	opacity: .1;
	transform: rotate(-18deg);
}

.signature-grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, .88fr) minmax(420px, 1.12fr);
	align-items: center;
	gap: clamp(50px, 8vw, 110px);
}

.signature-copy h2 {
	color: var(--ed-white);
}

.signature-copy > p {
	max-width: 580px;
	margin: 24px 0 0;
	color: rgba(255, 255, 255, .76);
	line-height: 1.8;
}

.signature-features {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-top: 38px;
}

.signature-features div {
	padding-top: 17px;
	border-top: 1px solid rgba(255, 255, 255, .28);
}

.signature-features strong,
.signature-features span {
	display: block;
}

.signature-features strong {
	font-family: var(--ed-heading);
	font-size: 1.55rem;
}

.signature-features span {
	margin-top: 3px;
	color: rgba(255, 255, 255, .64);
	font-size: .76rem;
}

.signature-collage {
	position: relative;
	min-height: 560px;
}

.signature-piece {
	position: absolute;
	overflow: hidden;
	background: var(--ed-white);
	-webkit-mask: url("../images/puzzle-mask.svg") center / contain no-repeat;
	mask: url("../images/puzzle-mask.svg") center / contain no-repeat;
	filter: drop-shadow(0 18px 34px rgba(111, 22, 16, .22));
}

.signature-piece img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.signature-piece--large {
	top: 0;
	right: 0;
	width: 68%;
	aspect-ratio: 1;
}

.signature-piece--small {
	bottom: 0;
	left: 0;
	width: 46%;
	aspect-ratio: 1;
}

.signature-piece--white {
	right: 5%;
	bottom: -4px;
	width: 34%;
	aspect-ratio: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 5px;
	background: var(--ed-white);
	color: var(--ed-red);
}

.puzzle-glyph {
	width: 54px;
	height: 54px;
	background: var(--ed-red);
	-webkit-mask: url("../images/puzzle-mask.svg") center / contain no-repeat;
	mask: url("../images/puzzle-mask.svg") center / contain no-repeat;
}

.signature-piece--white strong {
	font-family: var(--ed-heading);
	font-size: .86rem;
}

/* Quote / CTA ============================================ */

.quote-section {
	padding: 100px 0 48px;
	background: var(--ed-white);
}

.quote-shell {
	position: relative;
	max-width: 930px;
	display: grid;
	grid-template-columns: 90px 1fr;
	gap: 34px;
	padding: 48px 54px;
	background: var(--ed-warm);
	border: 1px solid var(--ed-line);
	border-radius: var(--ed-radius-lg);
}

.quote-shell::after {
	position: absolute;
	right: -24px;
	top: 50%;
	width: 48px;
	height: 48px;
	background: var(--ed-white);
	border: 1px solid var(--ed-line);
	border-radius: 50%;
	content: "";
	transform: translateY(-50%);
}

.quote-icon {
	width: 76px;
	height: 76px;
	display: grid;
	place-items: center;
	background: var(--ed-red);
	color: var(--ed-white);
	border-radius: 50%;
}

.quote-icon .icon {
	width: 32px;
	height: 32px;
}

.quote-shell blockquote {
	margin: 0;
}

.quote-shell blockquote p {
	margin: 0;
	font-family: var(--ed-heading);
	font-size: clamp(1.35rem, 2.6vw, 2.15rem);
	font-weight: 600;
	letter-spacing: -.035em;
	line-height: 1.35;
}

.quote-shell blockquote footer {
	margin-top: 18px;
	color: var(--ed-red);
	font-size: .73rem;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.cta-section {
	padding: 58px 0 112px;
	background: var(--ed-white);
}

.cta-section--compact {
	padding-top: 0;
}

.cta-panel {
	position: relative;
	min-height: 260px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	padding: 54px 62px;
	background: var(--ed-red);
	color: var(--ed-white);
	border-radius: var(--ed-radius-lg);
	box-shadow: 0 22px 50px rgba(227, 66, 52, .2);
	overflow: hidden;
}

.cta-panel__pattern {
	position: absolute;
	right: 14%;
	bottom: -110px;
	width: 310px;
	height: 310px;
	background: url("../images/puzzle-outline.svg") center / contain no-repeat;
	filter: brightness(0) invert(1);
	opacity: .12;
	transform: rotate(12deg);
}

.cta-panel > * {
	position: relative;
	z-index: 2;
}

.cta-panel h2 {
	max-width: 720px;
	color: var(--ed-white);
	font-size: clamp(1.85rem, 3.4vw, 3rem);
}

/* Footer ================================================= */

.site-footer {
	position: relative;
	padding: 86px 0 28px;
	background: var(--ed-warm);
	border-top: 1px solid var(--ed-line);
	overflow: hidden;
}

.site-footer::before {
	position: absolute;
	top: -120px;
	left: -80px;
	width: 310px;
	height: 310px;
	background: url("../images/puzzle-outline.svg") center / contain no-repeat;
	content: "";
	opacity: .055;
	transform: rotate(-15deg);
}

.footer-main {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1.25fr .7fr 1.35fr;
	align-items: start;
	gap: 64px;
}

.footer-brand .brand-logo img,
.footer-brand .custom-logo {
	height: 55px;
}

.footer-brand p {
	max-width: 360px;
	margin: 20px 0 0;
	color: var(--ed-muted);
	font-size: .87rem;
}

.footer-nav h2 {
	margin: 5px 0 18px;
	font-family: var(--ed-heading);
	font-size: .78rem;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.footer-nav .menu {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.footer-nav a {
	color: var(--ed-muted);
	font-size: .86rem;
	transition: color .2s ease;
}

.footer-nav a:hover {
	color: var(--ed-red);
}

.footer-contact-card {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 34px 36px;
	background: var(--ed-red);
	color: var(--ed-white);
	border-radius: var(--ed-radius);
	box-shadow: 0 18px 40px rgba(227, 66, 52, .2);
}

.footer-contact-card::before {
	position: absolute;
	top: -25px;
	left: 48px;
	width: 50px;
	height: 50px;
	background: var(--ed-red);
	border-radius: 50%;
	content: "";
}

.footer-contact-card::after {
	position: absolute;
	top: 50%;
	right: -24px;
	width: 48px;
	height: 48px;
	background: var(--ed-warm);
	border-radius: 50%;
	content: "";
	transform: translateY(-50%);
}

.footer-contact-card__eyebrow {
	margin-bottom: 5px;
	color: rgba(255, 255, 255, .65);
	font-size: .7rem;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.footer-contact-card a,
.footer-contact-card p {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0;
	font-family: var(--ed-heading);
	font-size: .95rem;
	font-weight: 600;
}

.footer-contact-card .icon {
	width: 20px;
	height: 20px;
}

.footer-contact-card a:hover {
	color: var(--ed-red-soft);
}

.footer-bottom {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-top: 64px;
	padding-top: 24px;
	border-top: 1px solid var(--ed-line);
	color: var(--ed-muted);
	font-size: .74rem;
}

.footer-bottom p {
	margin: 0;
}

.footer-bottom a:hover {
	color: var(--ed-red);
}

/* Page hero / common content ============================= */

.page-hero {
	position: relative;
	min-height: 480px;
	display: flex;
	align-items: flex-end;
	padding: 165px 0 78px;
	background:
		linear-gradient(90deg, rgba(231, 223, 219, .52) 1px, transparent 1px),
		linear-gradient(rgba(231, 223, 219, .52) 1px, transparent 1px),
		var(--ed-warm);
	background-size: 86px 86px;
	overflow: hidden;
}

.page-hero::after {
	position: absolute;
	right: -2%;
	bottom: -38%;
	width: 430px;
	height: 430px;
	background: var(--ed-red);
	border-radius: 50%;
	content: "";
	opacity: .065;
}

.page-hero__pattern {
	position: absolute;
	top: 85px;
	right: 8%;
	width: 250px;
	height: 250px;
	background: url("../images/puzzle-outline.svg") center / contain no-repeat;
	opacity: .09;
	transform: rotate(14deg);
}

.page-hero__inner {
	position: relative;
	z-index: 2;
}

.breadcrumbs {
	display: flex;
	align-items: center;
	gap: 7px;
	margin-bottom: 22px;
	color: var(--ed-muted);
	font-size: .74rem;
}

.breadcrumbs .icon {
	width: 13px;
	height: 13px;
}

.breadcrumbs a:hover {
	color: var(--ed-red);
}

.page-hero h1 {
	max-width: 850px;
	margin: 0;
	font-family: var(--ed-heading);
	font-size: clamp(2.65rem, 6vw, 5.3rem);
	font-weight: 700;
	letter-spacing: -.06em;
	line-height: 1.02;
}

.page-hero p {
	max-width: 650px;
	margin: 22px 0 0;
	color: var(--ed-muted);
	font-size: 1.02rem;
}

.page-content-section {
	padding: 90px 0 110px;
}

.entry-content {
	max-width: 920px;
	margin-inline: auto;
	color: var(--ed-ink);
}

.entry-content > *:first-child {
	margin-top: 0;
}

.entry-content p,
.entry-content li {
	color: var(--ed-muted);
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
	margin: 1.6em 0 .65em;
	font-family: var(--ed-heading);
	letter-spacing: -.035em;
	line-height: 1.2;
}

.entry-content h2 {
	font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.entry-content h3 {
	font-size: 1.45rem;
}

.entry-content a {
	color: var(--ed-red);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.entry-content img {
	height: auto;
	border-radius: var(--ed-radius);
}

.entry-featured {
	margin: 0 0 48px;
	overflow: hidden;
	border-radius: var(--ed-radius-lg);
}

.entry-featured img {
	width: 100%;
	max-height: 560px;
	object-fit: cover;
}

.entry-content blockquote {
	margin: 38px 0;
	padding: 30px 34px;
	background: var(--ed-red-soft);
	border-left: 5px solid var(--ed-red);
	border-radius: 0 var(--ed-radius) var(--ed-radius) 0;
}

/* Courses ================================================= */

.courses-section {
	padding: 88px 0 112px;
	background: var(--ed-white);
}

.filter-bar {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	margin-bottom: 42px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--ed-line);
}

.filter-bar button {
	min-height: 42px;
	padding: 9px 18px;
	border: 1px solid var(--ed-line);
	border-radius: 999px;
	background: var(--ed-white);
	color: var(--ed-muted);
	font-size: .8rem;
	font-weight: 700;
	transition: .2s ease;
}

.filter-bar button:hover,
.filter-bar button.is-active {
	border-color: var(--ed-red);
	background: var(--ed-red);
	color: var(--ed-white);
}

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

.course-card {
	overflow: hidden;
	background: var(--ed-white);
	border: 1px solid var(--ed-line);
	border-radius: var(--ed-radius);
	box-shadow: var(--ed-shadow-soft);
	transition: transform .3s var(--ed-ease), box-shadow .3s var(--ed-ease);
}

.course-card:hover {
	box-shadow: var(--ed-shadow);
	transform: translateY(-6px);
}

.course-card.is-hidden {
	display: none;
}

.course-card__image {
	position: relative;
	height: 250px;
	overflow: hidden;
}

.course-card__image::after {
	position: absolute;
	right: -25px;
	bottom: 44px;
	width: 50px;
	height: 50px;
	background: var(--ed-white);
	border-radius: 50%;
	content: "";
}

.course-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .55s var(--ed-ease);
}

.course-card:hover .course-card__image img {
	transform: scale(1.06);
}

.course-card__image > span {
	position: absolute;
	bottom: 16px;
	left: 16px;
	padding: 7px 12px;
	background: var(--ed-red);
	color: var(--ed-white);
	border-radius: 999px;
	font-size: .65rem;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.course-card__body {
	padding: 26px 25px 30px;
}

.course-card__body h2 {
	margin: 0;
	font-family: var(--ed-heading);
	font-size: 1.18rem;
	line-height: 1.3;
}

.course-card__body p {
	margin: 13px 0 20px;
	color: var(--ed-muted);
	font-size: .84rem;
	line-height: 1.7;
}

/* Finance ================================================= */

.finance-intro {
	padding: 100px 0;
	background: var(--ed-white);
}

.finance-intro__grid {
	display: grid;
	grid-template-columns: minmax(380px, .95fr) minmax(0, 1.05fr);
	align-items: center;
	gap: clamp(54px, 7vw, 96px);
}

.finance-intro__image {
	position: relative;
	min-height: 530px;
}

.finance-intro__image > img {
	width: 100%;
	height: 100%;
	min-height: 530px;
	object-fit: cover;
	border-radius: var(--ed-radius-lg);
}

.finance-intro__image::before {
	position: absolute;
	top: -22px;
	left: 44px;
	z-index: -1;
	width: 74px;
	height: 74px;
	background: var(--ed-red);
	border-radius: 50%;
	content: "";
}

.finance-intro__image > div {
	position: absolute;
	right: -24px;
	bottom: 36px;
	width: 175px;
	height: 175px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 24px;
	background: var(--ed-red);
	color: var(--ed-white);
	border: 8px solid var(--ed-white);
	border-radius: 50%;
	text-align: center;
	box-shadow: var(--ed-shadow);
}

.finance-intro__image strong {
	font-family: var(--ed-heading);
	font-size: 2.6rem;
	line-height: 1;
}

.finance-intro__image span {
	margin-top: 7px;
	font-size: .68rem;
	line-height: 1.3;
}

.finance-intro__copy > p {
	margin: 22px 0 0;
	color: var(--ed-muted);
	line-height: 1.8;
}

.finance-intro__copy .check-list .icon {
	width: 24px;
	height: 24px;
	padding: 5px;
	background: var(--ed-red-soft);
	color: var(--ed-red);
	border-radius: 50%;
}

.timeline-section {
	padding: 102px 0 112px;
	background: var(--ed-warm);
}

.timeline-grid {
	position: relative;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.timeline-grid::before {
	position: absolute;
	top: 38px;
	right: 9%;
	left: 9%;
	height: 2px;
	background: var(--ed-red);
	content: "";
	opacity: .22;
}

.timeline-card {
	position: relative;
	z-index: 2;
	padding: 0 8px;
	text-align: center;
}

.timeline-card > span {
	width: 76px;
	height: 76px;
	display: grid;
	place-items: center;
	margin: 0 auto 26px;
	background: var(--ed-red);
	color: var(--ed-white);
	border: 9px solid var(--ed-warm);
	border-radius: 50%;
	font-family: var(--ed-heading);
	font-weight: 700;
	box-shadow: 0 0 0 1px var(--ed-red);
}

.timeline-card h3 {
	margin: 0;
	font-family: var(--ed-heading);
	font-size: 1.05rem;
}

.timeline-card p {
	margin: 10px 0 0;
	color: var(--ed-muted);
	font-size: .82rem;
	line-height: 1.65;
}

.faq-section {
	padding: 108px 0;
	background: var(--ed-white);
}

.faq-grid {
	display: grid;
	grid-template-columns: .78fr 1.22fr;
	gap: clamp(50px, 8vw, 110px);
	align-items: start;
}

.accordion {
	border-top: 1px solid var(--ed-line);
}

.accordion-item {
	border-bottom: 1px solid var(--ed-line);
}

.accordion-item button {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 22px;
	padding: 24px 0;
	border: 0;
	background: transparent;
	color: var(--ed-ink);
	text-align: left;
	font-family: var(--ed-heading);
	font-size: .98rem;
	font-weight: 600;
}

.accordion-item button i {
	position: relative;
	width: 30px;
	height: 30px;
	flex: 0 0 auto;
	background: var(--ed-red-soft);
	border-radius: 50%;
}

.accordion-item button i::before,
.accordion-item button i::after {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 12px;
	height: 2px;
	background: var(--ed-red);
	content: "";
	transform: translate(-50%, -50%);
	transition: transform .25s ease;
}

.accordion-item button i::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.accordion-item button[aria-expanded="true"] i::after {
	transform: translate(-50%, -50%) rotate(0);
}

.accordion-panel {
	max-height: 0;
	overflow: hidden;
	transition: max-height .35s var(--ed-ease);
}

.accordion-panel p {
	margin: 0;
	padding: 0 46px 24px 0;
	color: var(--ed-muted);
	font-size: .88rem;
	line-height: 1.7;
}

/* Contact ================================================= */

.contact-section {
	padding: 98px 0 118px;
	background: var(--ed-white);
}

.contact-grid {
	display: grid;
	grid-template-columns: .86fr 1.14fr;
	align-items: start;
	gap: clamp(48px, 7vw, 88px);
}

.contact-image {
	position: relative;
	height: 420px;
	overflow: hidden;
	border-radius: var(--ed-radius-lg);
}

.contact-image::after {
	position: absolute;
	top: 50%;
	right: -30px;
	width: 60px;
	height: 60px;
	background: var(--ed-white);
	border-radius: 50%;
	content: "";
	transform: translateY(-50%);
}

.contact-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.contact-cards {
	display: grid;
	gap: 12px;
	margin-top: 22px;
}

.contact-cards > a,
.contact-cards > div {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 17px 18px;
	background: var(--ed-warm);
	border: 1px solid var(--ed-line);
	border-radius: 15px;
	transition: transform .2s ease, border-color .2s ease;
}

.contact-cards > a:hover {
	border-color: var(--ed-red);
	transform: translateX(4px);
}

.contact-cards .icon {
	width: 38px;
	height: 38px;
	padding: 9px;
	background: var(--ed-red);
	color: var(--ed-white);
	border-radius: 50%;
}

.contact-cards span {
	display: flex;
	flex-direction: column;
}

.contact-cards small {
	color: var(--ed-muted);
	font-size: .66rem;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.contact-cards strong {
	margin-top: 2px;
	font-family: var(--ed-heading);
	font-size: .86rem;
}

.contact-form-card {
	position: relative;
	padding: 48px;
	background: var(--ed-warm);
	border: 1px solid var(--ed-line);
	border-radius: var(--ed-radius-lg);
}

.contact-form-card::after {
	position: absolute;
	top: 62px;
	right: -29px;
	width: 58px;
	height: 58px;
	background: var(--ed-white);
	border: 1px solid var(--ed-line);
	border-radius: 50%;
	content: "";
}

.contact-form-card h2 {
	max-width: 600px;
	font-size: clamp(1.8rem, 3.6vw, 2.8rem);
}

.form-message {
	margin: 24px 0 4px;
	padding: 14px 16px;
	border-radius: 12px;
	font-size: .84rem;
}

.form-message--success {
	background: var(--ed-white);
	color: var(--ed-red-deep);
	border: 1px solid rgba(227, 66, 52, .3);
}

.form-message--error {
	background: var(--ed-red-soft);
	color: var(--ed-red-deep);
}

.contact-form {
	position: relative;
	z-index: 2;
	display: grid;
	gap: 17px;
	margin-top: 30px;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.contact-form label {
	display: grid;
	gap: 7px;
}

.contact-form label > span {
	font-size: .76rem;
	font-weight: 700;
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	border: 1px solid var(--ed-line);
	border-radius: 12px;
	background: var(--ed-white);
	color: var(--ed-ink);
	outline: 0;
	padding: 13px 14px;
	transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
	border-color: var(--ed-red);
	box-shadow: 0 0 0 3px rgba(227, 66, 52, .1);
}

.contact-form textarea {
	resize: vertical;
}

.contact-form .consent {
	display: flex;
	align-items: flex-start;
	grid-template-columns: auto 1fr;
	gap: 10px;
	color: var(--ed-muted);
	font-size: .76rem;
	font-weight: 400;
	line-height: 1.5;
}

.contact-form .consent input {
	width: 17px;
	height: 17px;
	margin-top: 2px;
	accent-color: var(--ed-red);
}

.contact-form .button {
	justify-self: start;
	border: 0;
}

.honeypot {
	position: absolute !important;
	left: -9999px !important;
}

/* Blog / 404 ============================================= */

.posts-section {
	padding: 92px 0 112px;
}

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

.post-card {
	overflow: hidden;
	background: var(--ed-white);
	border: 1px solid var(--ed-line);
	border-radius: var(--ed-radius);
	box-shadow: var(--ed-shadow-soft);
}

.post-card__image {
	height: 240px;
	display: block;
	overflow: hidden;
}

.post-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .5s var(--ed-ease);
}

.post-card:hover .post-card__image img {
	transform: scale(1.06);
}

.post-card__body {
	padding: 25px 25px 29px;
}

.post-card__body time {
	color: var(--ed-red);
	font-size: .68rem;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.post-card__body h2 {
	margin: 9px 0 12px;
	font-family: var(--ed-heading);
	font-size: 1.16rem;
	line-height: 1.3;
}

.post-card__body p {
	color: var(--ed-muted);
	font-size: .84rem;
}

.not-found-section {
	position: relative;
	min-height: 82vh;
	display: grid;
	place-items: center;
	padding: 150px 0 90px;
	background: var(--ed-warm);
	overflow: hidden;
}

.not-found-inner {
	position: relative;
	z-index: 2;
	max-width: 760px;
	text-align: center;
}

.not-found-code {
	display: block;
	color: var(--ed-red);
	font-family: var(--ed-heading);
	font-size: clamp(6rem, 18vw, 13rem);
	font-weight: 800;
	letter-spacing: -.08em;
	line-height: .8;
}

.not-found-inner h1 {
	margin: 34px 0 0;
	font-family: var(--ed-heading);
	font-size: clamp(2rem, 4vw, 3.5rem);
	line-height: 1.1;
}

.not-found-inner p {
	margin: 18px auto 30px;
	color: var(--ed-muted);
}

.puzzle-outline--404 {
	top: 16%;
	right: 7%;
	width: 330px;
	height: 330px;
	opacity: .07;
}

/* Reveal / motion ======================================== */

.reveal,
.reveal-left,
.reveal-right,
.reveal-scale {
	opacity: 0;
	transition:
		opacity .75s var(--ed-ease) var(--delay, 0ms),
		transform .75s var(--ed-ease) var(--delay, 0ms);
}

.reveal {
	transform: translateY(30px);
}

.reveal-left {
	transform: translateX(-36px);
}

.reveal-right {
	transform: translateX(36px);
}

.reveal-scale {
	transform: scale(.94);
}

.reveal.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible,
.reveal-scale.is-visible {
	opacity: 1;
	transform: none;
}

.reveal-delay-1 { --delay: 90ms; }
.reveal-delay-2 { --delay: 180ms; }
.reveal-delay-3 { --delay: 270ms; }

@keyframes ed-scroll {
	0% { opacity: 0; transform: translate(-50%, -2px); }
	25% { opacity: 1; }
	100% { opacity: 0; transform: translate(-50%, 13px); }
}

/* Responsive ============================================= */

@media (max-width: 1120px) {
	:root {
		--ed-container: 1040px;
	}

	.desktop-nav a {
		padding-inline: 9px;
		font-size: .78rem;
	}

	.header-cta {
		padding-inline: 18px;
	}

	.hero-grid {
		grid-template-columns: minmax(0, 1fr) minmax(390px, .84fr);
		gap: 50px;
	}

	.hero-title {
		font-size: clamp(3rem, 6.5vw, 5.2rem);
	}

	.offer-card__media {
		height: 330px;
	}

	.footer-main {
		grid-template-columns: 1fr .65fr 1.2fr;
		gap: 38px;
	}
}

@media (max-width: 960px) {
	.site-container {
		width: min(100% - 36px, var(--ed-container));
	}

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

	.menu-toggle {
		display: flex;
		margin-left: auto;
	}

	.site-header.is-scrolled .header-shell {
		padding-inline: 18px;
	}


	.hero-section {
		min-height: auto;
		padding: 150px 0 110px;
	}

	.hero-grid,
	.story-grid,
	.signature-grid,
	.finance-intro__grid,
	.contact-grid {
		grid-template-columns: 1fr;
	}

	.hero-copy {
		max-width: 760px;
	}

	.hero-title {
		max-width: 720px;
		font-size: clamp(3.3rem, 10vw, 5.7rem);
	}

	.hero-lead {
		max-width: 680px;
	}

	.hero-visual {
		width: min(650px, 92%);
		min-height: 650px;
		margin: 24px auto 0;
	}

	.hero-scroll {
		display: none;
	}

	.story-section {
		padding-top: 36px;
		background: linear-gradient(to bottom, var(--ed-white) 0 90px, var(--ed-red) 90px 100%);
	}

	.story-grid {
		gap: 20px;
	}

	.story-image-wrap {
		width: min(620px, 88%);
		min-height: 600px;
		margin-inline: auto;
	}

	.story-copy {
		max-width: 760px;
		padding: 34px 0 0;
	}

	.offer-grid,
	.process-grid,
	.course-grid,
	.posts-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.offer-card:last-child,
	.process-card:last-child {
		grid-column: 1 / -1;
		width: calc(50% - 15px);
		justify-self: center;
	}

	.signature-grid {
		gap: 58px;
	}

	.signature-collage {
		width: min(650px, 100%);
		margin-inline: auto;
	}

	.footer-main {
		grid-template-columns: 1fr 1fr;
	}

	.footer-contact-card {
		grid-column: 1 / -1;
	}

	.timeline-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 42px 20px;
	}

	.timeline-grid::before {
		display: none;
	}

	.faq-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}
}

@media (max-width: 680px) {
	.site-container {
		width: min(100% - 28px, var(--ed-container));
	}

	.site-header {
		top: 12px;
	}

	.header-shell {
		min-height: 66px;
		padding: 7px 8px 7px 14px;
		border-radius: 15px;
	}

	.brand-logo img,
	.custom-logo {
		height: 39px;
	}

	.menu-toggle {
		width: 44px;
		height: 44px;
	}

	.mobile-menu {
		padding-top: 100px;
	}

	.hero-section {
		padding: 120px 0 82px;
		background-size: 58px 58px;
	}

	.hero-copy {
		padding-top: 8px;
	}

	.hero-title {
		font-size: clamp(2.7rem, 14vw, 4.5rem);
		letter-spacing: -.06em;
	}

	.hero-lead {
		margin-top: 22px;
	}

	.hero-actions {
		flex-direction: column;
		align-items: stretch;
	}

	.hero-actions .button {
		width: 100%;
	}

	.hero-stats {
		grid-template-columns: 1fr 1fr;
		gap: 20px 14px;
	}

	.hero-stats div:last-child {
		grid-column: 1 / -1;
	}

	.hero-visual {
		width: 100%;
		min-height: 470px;
		margin-top: 34px;
	}

	.hero-visual__back {
		top: 44px;
		right: -12px;
	}

	.hero-puzzle-image {
		right: 0;
		width: 100%;
	}

	.hero-note {
		right: 0;
		bottom: -3px;
		width: 82%;
		padding: 14px 15px;
	}

	.hero-mini-card {
		width: 98px;
		height: 88px;
		padding: 13px;
	}

	.hero-mini-card--top {
		top: 27px;
		left: -6px;
	}

	.hero-mini-card--bottom {
		right: 24px;
		bottom: -18px;
	}

	.story-section {
		padding-bottom: 76px;
	}

	.story-image-wrap {
		width: 100%;
		min-height: 430px;
	}

	.story-image-tag {
		right: 0;
		bottom: 20px;
		min-width: 190px;
	}

	.story-copy {
		padding-top: 28px;
	}

	.story-copy h2,
	.section-heading h2,
	.signature-copy h2,
	.finance-intro__copy h2,
	.contact-form-card h2 {
		font-size: clamp(1.8rem, 9vw, 2.65rem);
	}

	.offer-section,
	.process-section,
	.signature-section,
	.finance-intro,
	.timeline-section,
	.faq-section,
	.contact-section {
		padding-top: 78px;
		padding-bottom: 82px;
	}

	.offer-grid,
	.process-grid,
	.course-grid,
	.posts-grid {
		grid-template-columns: 1fr;
	}

	.offer-card:last-child,
	.process-card:last-child {
		grid-column: auto;
		width: 100%;
	}

	.offer-card__media {
		height: 320px;
	}

	.process-card__body {
		min-height: auto;
	}

	.signature-features {
		grid-template-columns: 1fr;
	}

	.signature-collage {
		min-height: 440px;
	}

	.quote-section {
		padding-top: 74px;
	}

	.quote-shell {
		grid-template-columns: 1fr;
		gap: 22px;
		padding: 34px 28px;
	}

	.quote-icon {
		width: 60px;
		height: 60px;
	}

	.cta-section {
		padding: 42px 0 80px;
	}

	.cta-panel {
		min-height: 330px;
		align-items: flex-start;
		flex-direction: column;
		padding: 38px 28px;
	}

	.footer-main {
		grid-template-columns: 1fr;
		gap: 34px;
	}

	.footer-contact-card {
		grid-column: auto;
		padding: 30px 25px;
	}

	.footer-bottom {
		align-items: flex-start;
		flex-direction: column;
		margin-top: 44px;
	}

	.page-hero {
		min-height: 420px;
		padding: 130px 0 58px;
		background-size: 58px 58px;
	}

	.page-hero h1 {
		font-size: clamp(2.5rem, 13vw, 4rem);
	}

	.page-hero__pattern {
		top: 92px;
		right: -60px;
		width: 190px;
		height: 190px;
	}

	.page-content-section,
	.courses-section,
	.posts-section {
		padding-top: 70px;
		padding-bottom: 82px;
	}

	.filter-bar {
		flex-wrap: nowrap;
		overflow-x: auto;
		padding-bottom: 16px;
	}

	.filter-bar button {
		flex: 0 0 auto;
	}

	.finance-intro__image {
		min-height: 400px;
	}

	.finance-intro__image > img {
		min-height: 400px;
	}

	.finance-intro__image > div {
		right: -3px;
		bottom: 18px;
		width: 140px;
		height: 140px;
	}

	.timeline-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.timeline-card {
		display: grid;
		grid-template-columns: 68px 1fr;
		column-gap: 18px;
		text-align: left;
	}

	.timeline-card > span {
		grid-row: 1 / 3;
		width: 64px;
		height: 64px;
		margin: 0;
	}

	.timeline-card h3 {
		align-self: end;
	}

	.timeline-card p {
		align-self: start;
	}

	.contact-image {
		height: 350px;
	}

	.contact-form-card {
		padding: 34px 22px;
	}

	.form-row {
		grid-template-columns: 1fr;
	}

	.contact-form .button {
		width: 100%;
	}

	.not-found-code {
		font-size: 7rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

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

	.reveal,
	.reveal-left,
	.reveal-right,
	.reveal-scale {
		opacity: 1;
		transform: none;
	}
}

/* =========================================================
   EDUCANDIS — VISUAL REVISION 1.1
   Stronger red/white contrast, real puzzle field, one-line nav.
   ========================================================= */

:root {
	--ed-red: #e34234;
	--ed-red-dark: #e34234;
	--ed-red-deep: #e34234;
	--ed-red-soft: #fff0ee;
	--ed-warm: #fff8f6;
	--ed-warm-2: #fbe9e6;
	--ed-line: #efc9c4;
	--ed-shadow: 0 22px 64px rgba(227, 66, 52, .17);
	--ed-shadow-soft: 0 12px 36px rgba(227, 66, 52, .11);
	--ed-container: 1280px;
}

.button {
	min-height: 54px;
	padding-inline: 26px;
	border-radius: 14px;
	letter-spacing: -.01em;
}

.button--primary {
	box-shadow: 0 10px 28px rgba(227, 66, 52, .32);
}

.button--primary:hover {
	box-shadow: 0 14px 34px rgba(227, 66, 52, .36);
}

.button--ghost {
	border-width: 2px;
	border-color: var(--ed-red);
	background: rgba(255, 255, 255, .92);
	color: var(--ed-red);
}

.eyebrow {
	gap: 9px;
	margin-bottom: 22px;
	padding: 8px 12px;
	background: rgba(255, 255, 255, .88);
	border: 1px solid rgba(227, 66, 52, .32);
	border-radius: 999px;
	box-shadow: 0 8px 22px rgba(227, 66, 52, .07);
	letter-spacing: .14em;
}

.eyebrow::before {
	width: 8px;
	height: 8px;
	border-radius: 50%;
}

.eyebrow--light {
	background: rgba(255, 255, 255, .1);
	border-color: rgba(255, 255, 255, .42);
	box-shadow: none;
}

/* Header — menu never wraps. At narrower widths it becomes a drawer. */
.site-header {
	top: 18px;
}

.site-header .site-container {
	width: min(100% - 32px, 1360px);
}

.header-shell {
	min-height: 84px;
	flex-wrap: nowrap;
	gap: clamp(12px, 1.5vw, 24px);
	padding: 9px 11px 9px 24px;
	border: 1px solid rgba(227, 66, 52, .24);
	border-bottom-width: 4px;
	border-radius: 22px;
	box-shadow: 0 18px 48px rgba(92, 22, 17, .12);
}

.brand-logo img,
.custom-logo {
	height: 52px;
	max-width: 176px;
	object-fit: contain;
}

.desktop-nav {
	min-width: 0;
	flex: 1 1 auto;
	display: flex;
	justify-content: flex-end;
	margin-left: auto;
}

.desktop-nav .menu {
	flex-wrap: nowrap;
	white-space: nowrap;
	gap: 0;
}

.desktop-nav .menu > li {
	flex: 0 0 auto;
}

.desktop-nav a {
	white-space: nowrap;
	padding: 18px clamp(8px, .85vw, 14px);
	font-size: clamp(.72rem, .78vw, .84rem);
	font-weight: 700;
}

.header-cta {
	flex: 0 0 auto;
	min-height: 54px;
	white-space: nowrap;
	padding-inline: 22px;
}

.menu-toggle {
	border: 1px solid rgba(227, 66, 52, .22);
	border-radius: 14px;
}

.mobile-menu {
	background: rgba(255, 255, 255, .985);
}

.mobile-menu__pattern {
	inset: 0;
	width: auto;
	height: auto;
	background: url("../images/puzzle-field.png") 0 0 / 285px auto repeat;
	opacity: 1;
	transform: none;
}

/* Hero — real jigsaw background taken from the Educandis pattern. */
.hero-section {
	min-height: 900px;
	padding: 164px 0 112px;
	background: var(--ed-white);
	border-bottom: 10px solid var(--ed-red);
	isolation: isolate;
}

.hero-section::before {
	top: 0;
	right: 0;
	bottom: 0;
	left: auto;
	z-index: 0;
	width: min(37vw, 580px);
	height: auto;
	background: var(--ed-red);
	border-radius: 0 0 0 120px;
	clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%, 0 76%, 8% 76%, 8% 64%, 0 64%, 0 0);
	filter: none;
	opacity: 1;
}

.hero-section::after {
	position: absolute;
	inset: 0;
	z-index: 0;
	background: url("../images/puzzle-field.png") 0 0 / 330px auto repeat;
	content: "";
	pointer-events: none;
	-webkit-mask-image: linear-gradient(90deg, #000 0%, #000 51%, rgba(0, 0, 0, .72) 67%, transparent 88%);
	mask-image: linear-gradient(90deg, #000 0%, #000 51%, rgba(0, 0, 0, .72) 67%, transparent 88%);
}

.hero-grid {
	grid-template-columns: minmax(0, 1.08fr) minmax(470px, .92fr);
	gap: clamp(52px, 6vw, 92px);
}

.hero-copy {
	max-width: 740px;
	padding-top: 22px;
}

.hero-title {
	max-width: 800px;
	font-size: clamp(3.7rem, 6.8vw, 6.75rem);
	font-weight: 800;
	letter-spacing: -.072em;
	line-height: .94;
}

.hero-title span {
	padding: .01em .13em .06em;
	background: var(--ed-red);
	color: var(--ed-white);
	border-radius: .13em;
	box-shadow: 0 12px 28px rgba(227, 66, 52, .24);
	transform: rotate(-1.5deg);
}

.hero-title span::after {
	display: none;
}

.hero-lead {
	max-width: 650px;
	margin-top: 30px;
	color: #514441;
	font-size: clamp(1.02rem, 1.4vw, 1.18rem);
	font-weight: 500;
}

.hero-actions {
	margin-top: 36px;
}

.hero-stats {
	max-width: 690px;
	gap: 12px;
	margin-top: 38px;
	padding: 23px 24px 22px;
	background: rgba(255, 255, 255, .94);
	border: 1px solid var(--ed-line);
	border-left: 7px solid var(--ed-red);
	border-radius: 20px;
	box-shadow: var(--ed-shadow-soft);
}

.hero-stats div {
	padding-inline: 10px;
}

.hero-stats div + div {
	border-left: 1px solid var(--ed-line);
}

.hero-stats strong {
	font-size: clamp(1.8rem, 3vw, 2.55rem);
}

.hero-visual {
	min-height: 660px;
}

.hero-visual__back {
	top: 34px;
	right: -16px;
	width: 99%;
	height: 91%;
	background: var(--ed-red-dark);
	border: 8px solid rgba(255, 255, 255, .26);
	border-radius: 48px 48px 30px 48px;
	box-shadow: 0 34px 70px rgba(227, 66, 52, .27);
	transform: rotate(2.4deg);
}

.hero-visual__back::before {
	top: -50px;
	width: 100px;
	height: 100px;
	background: var(--ed-red-dark);
}

.hero-visual__back::after {
	right: -50px;
	width: 100px;
	height: 100px;
}

.hero-puzzle-image {
	top: 10px;
	right: 2%;
	width: 97%;
	filter: drop-shadow(0 28px 50px rgba(80, 18, 14, .28));
}

.hero-puzzle-image img {
	filter: saturate(.82) contrast(1.08);
}

.hero-note {
	right: -4px;
	bottom: 16px;
	width: min(370px, 78%);
	border: 2px solid var(--ed-red);
	border-radius: 14px;
	box-shadow: 0 22px 50px rgba(94, 22, 17, .2);
}

.hero-note__piece {
	width: 48px;
	height: 48px;
}

.hero-mini-card {
	border: 1px solid var(--ed-line);
	border-top: 6px solid var(--ed-red);
	border-radius: 14px;
	box-shadow: 0 18px 40px rgba(92, 22, 17, .16);
}

.hero-mini-card--top {
	top: 58px;
	left: -48px;
}

.hero-scroll {
	bottom: 24px;
	color: var(--ed-red-dark);
}

/* Stronger section rhythm. */
.story-section {
	padding-bottom: 112px;
	background: linear-gradient(to bottom, var(--ed-white) 0 92px, var(--ed-red) 92px 100%);
	isolation: isolate;
}

.story-section::before {
	position: absolute;
	inset: 92px 0 0;
	z-index: 0;
	background: url("../images/puzzle-field.png") 0 0 / 330px auto repeat;
	content: "";
	filter: brightness(0) invert(1);
	opacity: .22;
	pointer-events: none;
}

.story-grid {
	z-index: 2;
}

.story-image {
	filter: drop-shadow(0 30px 55px rgba(92, 22, 17, .34));
}

.story-image-tag {
	border: 2px solid var(--ed-red);
	border-radius: 13px;
}

.offer-section {
	position: relative;
	background: var(--ed-white);
	overflow: hidden;
}

.offer-section::before {
	position: absolute;
	top: 70px;
	left: -95px;
	width: 330px;
	height: 330px;
	background: url("../images/puzzle-outline.svg") center / contain no-repeat;
	content: "";
	opacity: .08;
	transform: rotate(-14deg);
}

.offer-card__media {
	border: 4px solid var(--ed-red-soft);
	border-radius: 28px;
	box-shadow: 0 16px 38px rgba(92, 22, 17, .11);
}

.offer-card__index {
	width: 56px;
	height: 56px;
	background: var(--ed-red);
	color: var(--ed-white);
	border: 4px solid var(--ed-white);
}

.offer-card__label {
	width: calc(100% - 26px);
	min-height: 76px;
	margin-top: -38px;
	border: 2px solid rgba(255, 255, 255, .28);
	border-radius: 14px;
	font-size: 1.05rem;
}

.offer-card:nth-child(2) {
	transform: translateY(30px);
}

.process-section {
	background: var(--ed-warm);
}

.process-pattern {
	inset: 0;
	width: auto;
	height: auto;
	background: url("../images/puzzle-field.png") 0 0 / 310px auto repeat;
	opacity: .95;
	transform: none;
}

.process-card {
	border: 2px solid var(--ed-line);
	border-radius: 26px;
	box-shadow: 0 16px 40px rgba(92, 22, 17, .12);
}

.process-card header {
	min-height: 106px;
	border-radius: 24px 24px 0 0;
}

.process-card header span {
	font-size: 2.65rem;
	opacity: .8;
}

.signature-section {
	border-top: 10px solid var(--ed-red-dark);
	border-bottom: 10px solid var(--ed-red-dark);
}

.signature-section::after {
	position: absolute;
	inset: 0;
	background: url("../images/puzzle-field.png") 0 0 / 330px auto repeat;
	content: "";
	filter: brightness(0) invert(1);
	opacity: .18;
	pointer-events: none;
}

.signature-grid {
	z-index: 2;
}

.quote-shell {
	background: var(--ed-white);
	border: 3px solid var(--ed-red-soft);
	box-shadow: var(--ed-shadow-soft);
}

.cta-panel {
	border: 2px solid var(--ed-red-dark);
	border-radius: 28px;
	box-shadow: 0 28px 60px rgba(227, 66, 52, .28);
}

.cta-panel__pattern {
	inset: 0;
	width: auto;
	height: auto;
	background: url("../images/puzzle-field.png") 0 0 / 290px auto repeat;
	filter: brightness(0) invert(1);
	opacity: .2;
	transform: none;
}

.site-footer {
	background: var(--ed-white);
	border-top: 10px solid var(--ed-red);
}

.site-footer::before {
	inset: 0;
	width: auto;
	height: auto;
	background: url("../images/puzzle-field.png") 0 0 / 320px auto repeat;
	opacity: .6;
	transform: none;
}

.footer-contact-card {
	border-radius: 18px;
	box-shadow: 0 20px 45px rgba(227, 66, 52, .2);
}

/* Interior page mastheads use the same real puzzle field instead of a grid. */
.page-hero {
	min-height: 510px;
	padding-bottom: 82px;
	background-color: var(--ed-warm);
	background-image: url("../images/puzzle-field.png");
	background-size: 330px auto;
	background-repeat: repeat;
	border-bottom: 10px solid var(--ed-red);
}

.page-hero::after {
	right: 0;
	bottom: 0;
	width: min(32vw, 430px);
	height: 100%;
	background: var(--ed-red);
	border-radius: 110px 0 0 0;
	opacity: .96;
}

.page-hero__pattern {
	top: 112px;
	right: 8%;
	z-index: 1;
	width: 280px;
	height: 280px;
	filter: brightness(0) invert(1);
	opacity: .24;
}

.page-hero__inner {
	z-index: 2;
}

.page-hero h1 {
	font-weight: 800;
}

/* Break early instead of allowing a desktop menu to wrap into two rows. */
@media (max-width: 1240px) {
	.desktop-nav {
		display: none;
	}

	.menu-toggle {
		display: flex;
		margin-left: auto;
	}

	.header-cta {
		display: inline-flex;
	}

	.hero-grid {
		grid-template-columns: minmax(0, 1fr) minmax(410px, .82fr);
		gap: 42px;
	}

	.hero-title {
		font-size: clamp(3.45rem, 6.9vw, 5.7rem);
	}
}

@media (max-width: 960px) {
	.hero-section {
		padding-top: 148px;
	}

	.hero-section::before {
		top: auto;
		bottom: 0;
		width: 68%;
		height: 47%;
		border-radius: 90px 0 0 0;
		clip-path: none;
	}

	.hero-section::after {
		-webkit-mask-image: linear-gradient(180deg, #000 0%, #000 48%, rgba(0, 0, 0, .55) 72%, transparent 100%);
		mask-image: linear-gradient(180deg, #000 0%, #000 48%, rgba(0, 0, 0, .55) 72%, transparent 100%);
	}

	.hero-grid {
		grid-template-columns: 1fr;
	}

	.hero-visual {
		width: min(680px, 94%);
		min-height: 670px;
	}

	.offer-card:nth-child(2) {
		transform: none;
	}
}

@media (max-width: 760px) {
	.site-header .site-container {
		width: min(100% - 20px, 1360px);
	}

	.header-shell {
		min-height: 70px;
		padding: 7px 8px 7px 15px;
		border-bottom-width: 3px;
		border-radius: 16px;
	}

	.brand-logo img,
	.custom-logo {
		height: 43px;
		max-width: 145px;
	}

	.header-cta {
		display: none;
	}

	.hero-section {
		padding-top: 126px;
		border-bottom-width: 7px;
	}

	.hero-section::after {
		background-size: 250px auto;
	}

	.hero-section::before {
		width: 82%;
		height: 40%;
		border-radius: 70px 0 0 0;
	}

	.hero-title {
		font-size: clamp(2.85rem, 14vw, 4.55rem);
	}

	.hero-title span {
		padding-inline: .1em;
	}

	.hero-stats {
		grid-template-columns: 1fr;
		padding: 18px;
	}

	.hero-stats div {
		padding: 5px 0;
	}

	.hero-stats div + div {
		border-top: 1px solid var(--ed-line);
		border-left: 0;
	}

	.hero-stats div:last-child {
		grid-column: auto;
	}

	.hero-visual {
		min-height: 505px;
	}

	.hero-mini-card--top {
		left: -2px;
	}

	.story-section::before,
	.signature-section::after,
	.cta-panel__pattern {
		background-size: 250px auto;
	}

	.page-hero {
		background-size: 250px auto;
		border-bottom-width: 7px;
	}

	.page-hero::after {
		width: 46%;
		opacity: .12;
	}

	.page-hero__pattern {
		filter: none;
		opacity: .1;
	}
}

@media (max-width: 1240px) {
	.puzzle-outline--hero-one {
		display: none;
	}
}

@media (max-width: 760px) {
	.hero-visual__back {
		right: 0;
	}
}

html {
	overflow-x: hidden;
}
