.hero {
	display: grid;
	min-height: 480px;
	align-items: center;
	background:
		linear-gradient(135deg, var(--color-hero-overlay-start) 0%, var(--color-hero-overlay-mid) 58%, var(--color-hero-overlay-end) 100%),
		radial-gradient(circle at 85% 20%, rgba(246, 195, 67, 0.18), transparent 32%),
		var(--color-background);
	color: #ffffff;
}

.hero__content {
	width: min(100% - 32px, var(--container));
	margin: 0 auto;
	padding: 72px 0;
}

.hero__eyebrow {
	margin: 0 0 8px;
	color: var(--color-accent);
	font-family: var(--font-button);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0;
	text-transform: uppercase;
}

.hero h1 {
	max-width: 760px;
	margin: 0;
	font-size: clamp(2.4rem, 8vw, 4.5rem);
	font-weight: 900;
	line-height: 1.05;
}

.hero p {
	max-width: 620px;
	color: rgba(247, 247, 248, 0.82);
	font-size: 1.125rem;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 24px;
}

.section {
	padding: 64px 0;
	background: var(--color-background);
}

.section--muted {
	background: var(--color-section-muted);
}

.section h2,
.cta h2 {
	margin: 0 0 20px;
	color: var(--color-text);
	font-size: 2rem;
	font-weight: 900;
	line-height: 1.2;
}

.section p {
	max-width: 760px;
	color: var(--color-muted);
}

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

.unit-showcase {
	display: grid;
	gap: 24px;
}

.unit-showcase-card {
	display: grid;
	grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
	overflow: hidden;
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: 8px;
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

.unit-showcase-card:nth-child(even) {
	grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
}

.unit-showcase-card:nth-child(even) .unit-showcase-card__media {
	order: 2;
}

.unit-showcase-card__media {
	display: block;
	min-height: 100%;
	background: var(--color-surface-raised);
}

.unit-showcase-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 360px;
	object-fit: cover;
}

.unit-showcase-card__body {
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: 28px;
}

.unit-showcase-card h3 {
	margin: 0;
	font-size: 1.45rem;
	line-height: 1.18;
}

.unit-showcase-card p {
	margin: 0;
}

.unit-showcase-card__map {
	width: 100%;
	min-height: 180px;
	margin-top: 4px;
	background: var(--color-surface-raised);
	border: 1px solid var(--color-border);
	border-radius: 8px;
}

.unit-showcase-card__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: auto;
}

.budo-home-news__header {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 24px;
}

.budo-home-news__header h2 {
	margin-bottom: 8px;
}

.budo-home-news__header p {
	margin: 0;
}

.budo-home-news__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.budo-home-news__grid .budo-content-card:nth-child(4n + 1),
.budo-home-news__grid .budo-content-card:nth-child(4n) {
	grid-column: span 2;
}

.budo-content-card {
	overflow: hidden;
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: 8px;
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

.budo-content-card__image {
	display: block;
	aspect-ratio: 16 / 10;
	background: var(--color-surface-raised);
}

.budo-content-card__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.budo-content-card__body {
	display: grid;
	gap: 12px;
	padding: 22px;
}

.budo-content-card__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 12px;
	color: var(--color-muted);
	font-family: var(--font-button);
	font-size: 0.72rem;
	font-weight: 800;
	text-transform: uppercase;
}

.budo-content-card__meta a {
	display: inline-flex;
	align-items: center;
	min-height: 26px;
	padding: 4px 9px;
	background: var(--color-accent);
	border-radius: 999px;
	color: #111114;
	line-height: 1;
	text-decoration: none;
}

.budo-content-card__meta a:hover,
.budo-content-card__meta a:focus {
	background: var(--color-primary);
	color: #ffffff;
}

.budo-content-card h3 {
	margin: 0;
	font-size: 1.08rem;
	line-height: 1.25;
}

.budo-content-card h3 a {
	color: var(--color-text);
	text-decoration: none;
}

.budo-content-card p {
	margin: 0;
	color: var(--color-muted);
}

.budo-plans__header {
	margin-bottom: 24px;
}

.budo-plans__header>div {
	max-width: 760px;
}

.budo-plans__header h2 {
	margin-bottom: 8px;
}

.budo-plans__header p {
	margin: 0;
}

.budo-plans__grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	padding-top: 14px;
}

.budo-plan-card {
	flex: 0 1 calc((100% - 40px) / 3);
	position: relative;
	overflow: visible;
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: 8px;
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

.budo-plan-card--featured {
	border-color: var(--color-accent);
	box-shadow: 0 22px 54px rgba(246, 195, 67, 0.14);
}

.budo-plan-card__media {
	overflow: hidden;
	aspect-ratio: 16 / 10;
	background: var(--color-surface-raised);
	border-radius: 8px 8px 0 0;
}

.budo-plan-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.budo-plan-card__body {
	display: flex;
	flex-direction: column;
	gap: 14px;
	height: 100%;
	padding: 24px;
}

.budo-plan-card__badge {
	position: absolute;
	top: 0;
	left: 50%;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	min-height: 28px;
	padding: 4px 10px;
	background: var(--color-accent);
	border-radius: 999px;
	color: #111114;
	font-family: var(--font-button);
	font-size: 0.74rem;
	font-weight: 800;
	line-height: 1;
	white-space: nowrap;
	transform: translate(-50%, -50%);
	text-transform: uppercase;
}

.budo-plan-card h2,
.budo-plan-card h3 {
	margin: 0;
	font-size: 1.3rem;
	line-height: 1.2;
}

.budo-plan-card p {
	margin: 0;
	color: var(--color-muted);
}

.budo-plan-card__prices,
.budo-plan-card__benefits {
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.budo-plan-card__prices {
	padding: 14px 0;
	border-top: 1px solid var(--color-border);
	border-bottom: 1px solid var(--color-border);
}

.budo-plan-card__prices li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	color: var(--color-text);
	font-family: var(--font-button);
	font-size: 0.95rem;
	font-weight: 800;
}

.budo-plan-card__benefits li {
	position: relative;
	padding-left: 18px;
	color: var(--color-muted);
}

.budo-plan-card__benefits li::before {
	content: "";
	position: absolute;
	top: 0.75em;
	left: 0;
	width: 7px;
	height: 7px;
	background: var(--color-accent);
	border-radius: 999px;
	transform: translateY(-50%);
}

.budo-plan-card__button {
	margin-top: auto;
}

.cta {
	padding: 56px 0;
	background:
		linear-gradient(135deg, rgba(229, 9, 20, 0.92), rgba(183, 7, 16, 0.92)),
		var(--color-primary);
	color: #ffffff;
}

.cta__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.cta p {
	margin: 0;
	color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 760px) {
	.grid {
		grid-template-columns: 1fr;
	}

	.unit-showcase-card,
	.unit-showcase-card:nth-child(even) {
		grid-template-columns: 1fr;
	}

	.unit-showcase-card:nth-child(even) .unit-showcase-card__media {
		order: 0;
	}

	.unit-showcase-card__media img {
		min-height: 240px;
	}

	.budo-home-news__header {
		align-items: start;
		flex-direction: column;
	}

	.budo-home-news__grid {
		grid-template-columns: 1fr;
	}

	.budo-home-news__grid .budo-content-card:nth-child(4n + 1),
	.budo-home-news__grid .budo-content-card:nth-child(4n) {
		grid-column: auto;
	}

	.budo-plans__grid {
		display: grid;
		grid-template-columns: 1fr;
	}
}

@media (min-width: 761px) and (max-width: 980px) {
	.budo-home-news__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.budo-home-news__grid .budo-content-card:nth-child(4n + 1),
	.budo-home-news__grid .budo-content-card:nth-child(4n) {
		grid-column: span 1;
	}

	.budo-plan-card {
		flex-basis: calc((100% - 20px) / 2);
	}
}

/* Wide hero refresh */

.hero {
	position: relative;
	min-height: 620px;
	overflow: hidden;
	background:
		linear-gradient(110deg, rgba(9, 9, 11, 0.98) 0%, rgba(9, 9, 11, 0.92) 42%, rgba(229, 9, 20, 0.36) 100%),
		var(--color-background);
}

.hero::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	width: min(48vw, 720px);
	height: 42%;
	background: linear-gradient(135deg, transparent, rgba(229, 9, 20, 0.34));
	clip-path: polygon(28% 0, 100% 0, 100% 100%, 0 100%);
	pointer-events: none;
}

.hero__content {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 0.96fr) minmax(320px, 0.84fr);
	align-items: center;
	gap: clamp(32px, 6vw, 88px);
	width: min(100% - 32px, 1320px);
	min-height: inherit;
	margin: 0 auto;
	padding: 76px 0;
}

.hero__copy {
	max-width: 760px;
}

.hero h1 {
	max-width: 860px;
	font-size: clamp(3rem, 8vw, 6.25rem);
	line-height: 0.94;
}

.hero__visual {
	position: relative;
	min-height: 430px;
	overflow: hidden;
	background:
		linear-gradient(145deg, rgba(229, 9, 20, 0.28), rgba(21, 21, 24, 0.94)),
		var(--color-surface);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
}

.hero__visual::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(180deg, transparent 0%, rgba(9, 9, 11, 0.22) 48%, rgba(9, 9, 11, 0.84) 100%);
	pointer-events: none;
}

.hero__visual::after {
	content: "";
	position: absolute;
	inset: auto 0 0 0;
	z-index: 2;
	height: 7px;
	background: var(--color-primary);
}

.hero__visual img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 430px;
	object-fit: cover;
}

.hero:not(.hero--has-image) .hero__visual {
	display: grid;
	place-items: end start;
	padding: 28px;
}

.hero:not(.hero--has-image) .hero__visual::before {
	background:
		linear-gradient(145deg, transparent 0 48%, rgba(229, 9, 20, 0.24) 48% 63%, transparent 63%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
}

.hero:not(.hero--has-image) .hero__visual::after {
	height: 9px;
}

@media (max-width: 900px) {
	.hero {
		min-height: auto;
	}

	.hero__content {
		grid-template-columns: 1fr;
		gap: 28px;
		padding: 64px 0;
	}

	.hero__visual {
		min-height: 280px;
	}

	.hero__visual img {
		min-height: 280px;
	}
}

@media (max-width: 560px) {
	.hero h1 {
		font-size: clamp(2.6rem, 14vw, 4.3rem);
	}

	.hero__visual {
		min-height: 220px;
	}

	.hero__visual img {
		min-height: 220px;
	}
}

/* Reference-aligned hero and about section */

.hero {
	position: relative;
	isolation: isolate;
	display: block;
	min-height: clamp(620px, 76vh, 820px);
	overflow: hidden;
	background:
		linear-gradient(100deg, #060607 0%, rgba(8, 8, 10, 0.98) 36%, rgba(64, 7, 9, 0.78) 68%, rgba(132, 5, 10, 0.72) 100%),
		radial-gradient(circle at 74% 28%, rgba(229, 9, 20, 0.4), transparent 34%),
		var(--color-background);
	color: #ffffff;
}

.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		linear-gradient(90deg, rgba(6, 6, 7, 0.98) 0%, rgba(6, 6, 7, 0.88) 38%, rgba(6, 6, 7, 0.24) 62%, rgba(6, 6, 7, 0.1) 100%),
		linear-gradient(0deg, rgba(6, 6, 7, 0.96) 0%, transparent 22%, transparent 72%, rgba(6, 6, 7, 0.44) 100%);
	pointer-events: none;
}

.hero::after {
	content: "";
	position: absolute;
	right: -8vw;
	bottom: 0;
	z-index: -3;
	width: min(70vw, 1120px);
	height: 68%;
	background: linear-gradient(135deg, transparent 0 28%, rgba(229, 9, 20, 0.28) 28% 54%, rgba(111, 4, 8, 0.42) 54% 100%);
	clip-path: polygon(24% 0, 100% 0, 100% 100%, 0 100%);
	pointer-events: none;
}

.hero__content {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	width: min(100% - 40px, 1440px);
	min-height: inherit;
	margin: 0 auto;
	padding: clamp(86px, 12vh, 140px) 0 clamp(72px, 10vh, 112px);
}

.hero__copy {
	position: relative;
	z-index: 2;
	max-width: min(790px, 58vw);
}

.hero h1 {
	max-width: 920px;
	font-size: clamp(4rem, 10.4vw, 9.5rem);
	font-weight: 900;
	line-height: 0.84;
	text-wrap: balance;
}

.hero p {
	max-width: 660px;
	font-size: clamp(1.05rem, 1.35vw, 1.22rem);
}

.hero__visual {
	position: absolute;
	inset: 0 0 0 auto;
	z-index: -2;
	width: min(68vw, 1120px);
	min-height: 0;
	overflow: hidden;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	pointer-events: none;
}

.hero__visual::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(90deg, rgba(6, 6, 7, 0.98) 0%, rgba(6, 6, 7, 0.72) 18%, rgba(6, 6, 7, 0.14) 46%, rgba(6, 6, 7, 0.18) 100%),
		linear-gradient(0deg, rgba(6, 6, 7, 0.98) 0%, rgba(6, 6, 7, 0.18) 38%, rgba(6, 6, 7, 0.32) 100%),
		linear-gradient(120deg, rgba(229, 9, 20, 0.18), rgba(229, 9, 20, 0));
	pointer-events: none;
}

.hero__visual::after {
	display: none;
}

.hero__visual img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 100%;
	object-fit: cover;
	object-position: center right;
	filter: saturate(1.08) contrast(1.04);
}

.hero:not(.hero--has-image) .hero__visual {
	display: block;
	background:
		radial-gradient(circle at 72% 35%, rgba(229, 9, 20, 0.26), transparent 34%),
		linear-gradient(135deg, transparent 0 42%, rgba(229, 9, 20, 0.24) 42% 58%, transparent 58% 100%);
}

.about-section {
	padding: clamp(72px, 8vw, 112px) 0;
	background: var(--color-background);
}

.about-section__inner {
	display: grid;
	grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
	align-items: center;
	gap: clamp(32px, 6vw, 84px);
	width: min(100% - 40px, 1320px);
}

.about-section__copy {
	max-width: 560px;
}

.section-eyebrow {
	margin: 0 0 10px !important;
	color: var(--color-accent) !important;
	font-family: var(--font-button);
	font-size: 0.78rem;
	font-weight: 800;
	text-transform: uppercase;
}

.about-section h2 {
	margin-bottom: 18px;
	font-size: clamp(2.35rem, 4vw, 4.7rem);
	line-height: 0.98;
}

.about-section p {
	margin-bottom: 22px;
}

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

.about-feature-card {
	min-height: 250px;
	padding: 24px;
	border: 1px solid var(--color-border);
	border-radius: 8px;
}

.about-feature-card .dashicons {
	width: 34px;
	height: 34px;
	margin-bottom: 28px;
	color: var(--color-accent);
	font-size: 34px;
	line-height: 1;
}

.about-feature-card h3 {
	margin: 0 0 12px;
	font-size: 1.05rem;
	line-height: 1.18;
}

.about-feature-card p {
	margin: 0;
	color: var(--color-muted);
	font-size: 0.95rem;
}

@media (max-width: 980px) {
	.hero {
		min-height: 620px;
	}

	.hero__copy {
		max-width: 680px;
	}

	.hero__visual {
		width: 100%;
		opacity: 0.48;
	}

	.hero__visual::before {
		background:
			linear-gradient(90deg, rgba(6, 6, 7, 0.96), rgba(6, 6, 7, 0.64)),
			linear-gradient(0deg, rgba(6, 6, 7, 0.98), rgba(6, 6, 7, 0.08));
	}

	.about-section__inner {
		grid-template-columns: 1fr;
	}

	.about-section__copy {
		max-width: 760px;
	}
}

@media (max-width: 760px) {
	.hero {
		min-height: 560px;
	}

	.hero__content {
		width: min(100% - 32px, 1440px);
		padding: 72px 0;
	}

	.hero h1 {
		font-size: clamp(3.5rem, 18vw, 6rem);
	}

	.about-section__cards {
		grid-template-columns: 1fr;
	}

	.about-feature-card {
		min-height: 0;
	}
}

/* Hero image edge integration fix */

.hero::after {
	right: 0;
	bottom: 0;
	z-index: -3;
	width: 100%;
	height: 100%;
	background:
		radial-gradient(circle at 78% 42%, rgba(229, 9, 20, 0.24), transparent 38%),
		linear-gradient(100deg, transparent 0%, transparent 48%, rgba(92, 4, 8, 0.28) 100%);
	clip-path: none;
}

.hero__visual {
	inset: 0 0 0 auto;
	width: min(78vw, 1480px);
	max-width: none;
	background: transparent;
}

.hero__visual::before {
	background:
		linear-gradient(90deg, rgba(6, 6, 7, 1) 0%, rgba(6, 6, 7, 0.84) 17%, rgba(6, 6, 7, 0.22) 43%, rgba(6, 6, 7, 0.1) 100%),
		linear-gradient(0deg, rgba(6, 6, 7, 0.98) 0%, rgba(6, 6, 7, 0.18) 34%, rgba(6, 6, 7, 0.34) 100%),
		radial-gradient(circle at 82% 48%, rgba(229, 9, 20, 0.18), transparent 44%);
}

.hero__visual img {
	width: 100%;
	height: 100%;
	min-width: 100%;
	min-height: 100%;
	object-fit: cover;
	object-position: center center;
}

.hero--has-image {
	background:
		linear-gradient(100deg, #060607 0%, rgba(8, 8, 10, 0.98) 38%, rgba(44, 5, 7, 0.86) 72%, rgba(82, 4, 8, 0.72) 100%),
		var(--color-background);
}

@media (min-width: 1400px) {
	.hero__visual {
		width: 74vw;
	}
}

@media (max-width: 980px) {
	.hero__visual {
		width: 100%;
	}
}

/* Desktop hero proportion refinement */

@media (min-width: 981px) {
	.hero {
		min-height: clamp(500px, 62vh, 650px);
	}

	.hero::before {
		background:
			linear-gradient(90deg, rgba(6, 6, 7, 0.99) 0%, rgba(6, 6, 7, 0.88) 34%, rgba(6, 6, 7, 0.26) 58%, rgba(6, 6, 7, 0.06) 100%),
			linear-gradient(0deg, rgba(6, 6, 7, 0.9) 0%, transparent 24%, transparent 76%, rgba(6, 6, 7, 0.28) 100%);
	}

	.hero::after {
		background:
			radial-gradient(circle at 80% 38%, rgba(229, 9, 20, 0.18), transparent 36%),
			linear-gradient(100deg, transparent 0%, transparent 52%, rgba(92, 4, 8, 0.18) 100%);
	}

	.hero__content {
		min-height: clamp(500px, 62vh, 650px);
		padding: clamp(52px, 7vh, 82px) 0 clamp(44px, 6vh, 72px);
	}

	.hero__copy {
		max-width: min(760px, 54vw);
	}

	.hero h1 {
		font-size: clamp(4.4rem, 8.8vw, 7.8rem);
		line-height: 0.86;
	}

	.hero p {
		max-width: 600px;
	}

	.hero__visual {
		top: 0;
		right: 0;
		bottom: 0;
		left: auto;
		width: min(76vw, 1360px);
		height: 100%;
	}

	.hero__visual::before {
		background:
			linear-gradient(90deg, rgba(6, 6, 7, 0.98) 0%, rgba(6, 6, 7, 0.7) 18%, rgba(6, 6, 7, 0.14) 42%, rgba(6, 6, 7, 0.04) 100%),
			linear-gradient(0deg, rgba(6, 6, 7, 0.86) 0%, rgba(6, 6, 7, 0.08) 34%, rgba(6, 6, 7, 0.18) 100%),
			radial-gradient(circle at 82% 38%, rgba(229, 9, 20, 0.1), transparent 42%);
	}

	.hero__visual img {
		height: 100%;
		object-fit: cover;
		object-position: 72% 34%;
	}
}

@media (min-width: 1500px) {
	.hero__visual {
		width: 72vw;
	}

	.hero__visual img {
		object-position: 70% 32%;
	}
}

/* Homepage visual fine tune against reference */

.hero__eyebrow,
.section-eyebrow {
	color: var(--color-primary) !important;
}

.hero p {
	color: rgba(247, 247, 248, 0.72);
}

@media (min-width: 981px) {
	.hero {
		min-height: clamp(470px, 58vh, 610px);
	}

	.hero__content {
		min-height: clamp(470px, 58vh, 610px);
		padding: clamp(42px, 5.8vh, 68px) 0 clamp(36px, 5vh, 58px);
	}

	.hero__eyebrow {
		margin-bottom: 12px;
		font-size: 0.74rem;
		font-weight: 900;
		letter-spacing: 0;
	}

	.hero h1 {
		font-size: clamp(4.1rem, 8.2vw, 7.2rem);
		line-height: 0.88;
	}

	.hero p {
		max-width: 560px;
		font-size: 1.05rem;
	}

	.hero__actions {
		margin-top: 22px;
	}

	.hero__visual {
		width: min(78vw, 1400px);
	}

	.hero__visual::before {
		background:
			linear-gradient(90deg, rgba(6, 6, 7, 0.99) 0%, rgba(6, 6, 7, 0.78) 20%, rgba(6, 6, 7, 0.16) 43%, rgba(6, 6, 7, 0.06) 100%),
			linear-gradient(0deg, rgba(6, 6, 7, 0.8) 0%, rgba(6, 6, 7, 0.05) 36%, rgba(6, 6, 7, 0.14) 100%),
			radial-gradient(circle at 82% 38%, rgba(229, 9, 20, 0.08), transparent 44%);
	}

	.hero__visual img {
		object-position: 74% 38%;
	}

	.about-section {
		padding: clamp(38px, 5vw, 68px) 0 clamp(64px, 7vw, 92px);
	}

	.about-section__inner {
		width: min(100% - 40px, 1320px);
		grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
		align-items: start;
		gap: clamp(28px, 5vw, 68px);
	}

	.about-section__copy {
		max-width: 540px;
	}

	.about-section h2 {
		font-size: clamp(2rem, 3.2vw, 3.45rem);
		line-height: 1.04;
		margin-bottom: 16px;
	}

	.about-section p {
		font-size: 1rem;
		margin-bottom: 18px;
	}

	.about-section__cards {
		gap: 14px;
	}

	.about-feature-card {
		min-height: 218px;
		padding: 22px;
	}

	.about-feature-card .dashicons {
		width: 30px;
		height: 30px;
		margin-bottom: 22px;
		color: var(--color-primary);
		font-size: 30px;
	}

	.about-feature-card h3 {
		font-size: 0.98rem;
	}

	.about-feature-card p {
		font-size: 0.9rem;
	}
}

@media (min-width: 1500px) {
	.hero__visual {
		width: 74vw;
	}

	.hero__visual img {
		object-position: 73% 36%;
	}
}

@media (max-width: 980px) {
	.about-section {
		padding-top: 52px;
	}

	.about-section h2 {
		font-size: clamp(2rem, 8vw, 3.4rem);
	}
}

/* Hero parallax support */

@media (min-width: 981px) and (prefers-reduced-motion: no-preference) {
	.hero--has-image .hero__visual img {
		backface-visibility: hidden;
		transform-origin: center center;
	}
}

@media (prefers-reduced-motion: reduce) {
	.hero__visual img {
		transform: none !important;
		will-change: auto !important;
	}
}