:root {
	--cream: #f4f9fd;
	--warm-white: #fbfdff;
	--paper: #ffffff;
	--deep-blue: #123f78;
	--ink-blue: #102f57;
	--sky-blue: #6fb4dd;
	--sky-soft: #e8f5fb;
	--soft-blue: #2f6f9f;
	--soft-blue-wash: #edf7fc;
	--mist-blue: #8fc6e7;
	--mist-blue-soft: #f0f8fd;
	--sage: #6f998c;
	--sage-soft: #eef7f4;
	--digital: #1e789e;
	--text: #24313f;
	--muted: #657180;
	--line: rgba(18, 63, 120, 0.15);
	--shadow: 0 18px 42px rgba(36, 49, 63, 0.12);
	--shadow-small: 0 10px 24px rgba(36, 49, 63, 0.1);
	--radius: 8px;
	--header-height: 76px;
	--container: 1180px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--cream);
	color: var(--text);
	font-family: "Avenir Next", "Nunito Sans", "Trebuchet MS", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 17px;
	line-height: 1.65;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}

body::before {
	content: "";
	position: fixed;
	inset: 0;
	z-index: -1;
	pointer-events: none;
	background-image:
		repeating-linear-gradient(0deg, rgba(18, 63, 120, 0.018) 0, rgba(18, 63, 120, 0.018) 1px, transparent 1px, transparent 28px),
		linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(244, 249, 253, 0.96));
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

a {
	color: var(--deep-blue);
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.22em;
	overflow-wrap: break-word;
}

a:hover {
	color: var(--digital);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
	outline: 3px solid var(--digital);
	outline-offset: 3px;
}

h1,
h2,
h3 {
	margin: 0 0 0.45em;
	color: var(--ink-blue);
	font-family: "Avenir Next", "Trebuchet MS", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-weight: 760;
	line-height: 1.12;
	overflow-wrap: break-word;
	text-wrap: balance;
}

h1 {
	max-width: 900px;
	font-size: 3.6rem;
}

h2 {
	font-size: 2.45rem;
}

h3 {
	font-size: 1.35rem;
}

p {
	margin: 0 0 1.1rem;
	overflow-wrap: break-word;
}

ul {
	margin-top: 0;
}

.container {
	width: min(calc(100% - 40px), var(--container));
	margin-inline: auto;
}

.container.narrow {
	max-width: 820px;
}

.section-pad {
	padding-block: 104px;
}

.site-main {
	overflow: hidden;
}

.screen-reader-text,
.skip-link:not(:focus) {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link:focus {
	position: fixed;
	top: 14px;
	left: 14px;
	z-index: 1000;
	padding: 10px 14px;
	border-radius: var(--radius);
	background: var(--ink-blue);
	color: #fff;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 90;
	min-height: var(--header-height);
	background: rgba(251, 253, 255, 0.94);
	border-bottom: 1px solid var(--line);
	backdrop-filter: blur(14px);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: min(calc(100% - 32px), var(--container));
	min-height: var(--header-height);
	margin-inline: auto;
	gap: 20px;
}

.site-brand {
	display: inline-flex;
	align-items: center;
	width: 178px;
	min-width: 150px;
	text-decoration: none;
}

.site-brand img {
	width: 178px;
	max-height: 58px;
	object-fit: contain;
	object-position: left center;
}

.custom-logo-link img {
	max-height: 58px;
	width: auto;
}

.primary-menu,
.footer-menu {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.primary-menu a {
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	padding: 8px 12px;
	border-radius: var(--radius);
	color: var(--text);
	font-size: 0.94rem;
	font-weight: 650;
	text-decoration: none;
}

.primary-menu a:hover {
	background: var(--sky-soft);
	color: var(--ink-blue);
}

.primary-menu .nav-cta {
	background: var(--deep-blue);
	color: #fff;
	box-shadow: var(--shadow-small);
}

.primary-menu .nav-cta:hover {
	background: var(--digital);
	color: #fff;
}

.menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--paper);
	color: var(--ink-blue);
	cursor: pointer;
}

.menu-toggle__bar {
	display: block;
	width: 20px;
	height: 2px;
	margin: 4px auto;
	background: currentColor;
	border-radius: 2px;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	margin: 0 0 14px;
	color: var(--deep-blue);
	font-size: 0.91rem;
	font-weight: 800;
}

.eyebrow::before {
	content: "";
	width: 10px;
	height: 10px;
	margin-right: 10px;
	border-radius: 999px;
	background: var(--sky-blue);
}

.button-row {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 28px;
}

.button-row--center {
	justify-content: center;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 12px 20px;
	border: 2px solid transparent;
	border-radius: var(--radius);
	font-weight: 800;
	line-height: 1.2;
	text-decoration: none;
	transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, color 160ms ease;
}

.button:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-small);
}

.button--primary {
	background: var(--deep-blue);
	color: #fff;
}

.button--primary:hover {
	background: var(--digital);
	color: #fff;
}

.button--secondary {
	background: var(--paper);
	border-color: var(--deep-blue);
	color: var(--deep-blue);
}

.button--secondary:hover {
	background: var(--sky-soft);
	color: var(--ink-blue);
}

.button--light {
	background: var(--warm-white);
	color: var(--ink-blue);
}

.wp-block-button.button {
	padding: 0;
}

.wp-block-button.button .wp-block-button__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 12px 20px;
	border: 0;
	border-radius: var(--radius);
	background: transparent;
	color: inherit;
	font: inherit;
	font-weight: 800;
	line-height: 1.2;
	text-decoration: none;
}

.hero-section {
	position: relative;
	display: grid;
	align-items: center;
	min-height: 70svh;
	padding-block: 112px 96px;
	isolation: isolate;
	overflow: hidden;
	background:
		linear-gradient(180deg, rgba(251, 253, 255, 0.98) 0%, rgba(232, 245, 251, 0.82) 100%),
		linear-gradient(0deg, rgba(18, 63, 120, 0.035), rgba(18, 63, 120, 0.035));
	border-bottom: 1px solid var(--line);
}

.hero-section::before,
.hero-section::after {
	content: "";
	position: absolute;
	right: 0;
	left: 0;
	z-index: 0;
	pointer-events: none;
}

.hero-section::before {
	top: 0;
	height: 100%;
	background-image:
		linear-gradient(115deg, transparent 0 64%, rgba(255, 255, 255, 0.58) 64% 66%, transparent 66%),
		repeating-linear-gradient(0deg, transparent 0 30px, rgba(18, 63, 120, 0.035) 30px 31px);
	opacity: 0.5;
}

.hero-section::after {
	bottom: -1px;
	height: 128px;
	background: radial-gradient(120% 95% at 50% 100%, var(--warm-white) 0 62%, transparent 63%);
}

.hero-content {
	position: relative;
	z-index: 1;
	max-width: 860px;
}

.hero-statement {
	max-width: 760px;
	color: var(--deep-blue);
	font-size: 1.72rem;
	font-weight: 720;
	line-height: 1.24;
	text-wrap: balance;
}

.hero-copy {
	max-width: 700px;
	color: #40576c;
	font-size: 1.12rem;
}

.value-strip {
	position: relative;
	padding-block: 56px;
	background:
		linear-gradient(180deg, var(--warm-white) 0%, var(--sky-soft) 100%),
		var(--warm-white);
	color: var(--text);
}

.value-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	background: transparent;
	border: 0;
	border-radius: var(--radius);
}

.value-card {
	min-height: 148px;
	padding: 26px 24px;
	border: 1px solid var(--line);
	background: rgba(255, 255, 255, 0.86);
	box-shadow: var(--shadow-small);
}

.value-card,
.audience-card,
.support-card,
.product-card,
.product-detail,
.founder-panel,
.story-panel,
.contact-form-wrap {
	background-image:
		linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0)),
		repeating-linear-gradient(0deg, transparent 0 31px, rgba(18, 63, 120, 0.025) 31px 32px);
}

.value-card h3 {
	color: var(--ink-blue);
	font-family: inherit;
	font-size: 1.05rem;
}

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

.section-heading {
	max-width: 760px;
	margin-bottom: 42px;
}

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

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

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

.product-card,
.audience-card,
.support-card,
.founder-panel,
.story-panel,
.product-detail,
.contact-form-wrap {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow-small);
}

.product-card {
	display: grid;
	grid-template-rows: 178px 1fr;
	overflow: hidden;
	background: var(--paper);
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow);
}

.product-card__visual {
	position: relative;
	min-height: 178px;
	overflow: hidden;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.55), transparent),
		var(--sky-soft);
}

.product-card__visual--photo {
	display: grid;
	place-items: center;
	padding: 16px;
}

.product-card__image {
	width: 100%;
	height: 100%;
	max-height: 156px;
	border-radius: var(--radius);
	object-fit: cover;
	box-shadow: 0 14px 28px rgba(36, 49, 63, 0.16);
}

.product-card--alfajor .product-card__visual {
	background: var(--mist-blue-soft);
}

.product-card--alfajor .product-card__image {
	object-fit: contain;
	background: #fff;
}

.product-card--matzati .product-card__visual {
	background: var(--sky-soft);
}

.product-card--mipo .product-card__visual {
	background: var(--sage-soft);
}

.product-card--mipo .product-card__image {
	object-fit: cover;
	object-position: center;
}

.product-card__placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	height: 100%;
	padding: 18px;
}

.product-card__placeholder span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	padding: 8px 12px;
	border: 1px solid rgba(18, 63, 120, 0.16);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.78);
	color: var(--deep-blue);
	font-size: 0.82rem;
	font-weight: 800;
}

.product-card__body {
	padding: 26px;
}

.product-card__label,
.product-card__meta {
	margin-bottom: 10px;
	color: var(--muted);
	font-size: 0.92rem;
	font-weight: 700;
}

.product-card__label {
	color: var(--deep-blue);
}

.tag-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding: 0;
	margin: 22px 0;
	list-style: none;
}

.tag-list li {
	padding: 6px 10px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--warm-white);
	color: var(--muted);
	font-size: 0.86rem;
	font-weight: 700;
}

.text-link {
	display: inline-flex;
	align-items: center;
	font-weight: 800;
}

.text-link::after {
	content: "";
	width: 18px;
	height: 2px;
	margin-left: 8px;
	background: currentColor;
	transition: width 160ms ease;
}

.text-link:hover::after {
	width: 28px;
}

.split-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 64px;
	align-items: center;
}

.story-panel {
	position: relative;
	min-height: 420px;
	padding: 34px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(232, 245, 251, 0.76)),
		var(--sky-soft);
	color: var(--text);
}

.story-panel::before {
	content: "";
	position: absolute;
	right: 34px;
	bottom: 30px;
	left: 34px;
	height: 10px;
	border: 0;
	border-radius: 999px;
	background: linear-gradient(90deg, rgba(111, 180, 221, 0.15), rgba(111, 180, 221, 0.42), rgba(18, 63, 120, 0.12));
	pointer-events: none;
}

.stat-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.stat-grid div {
	min-height: 150px;
	padding: 22px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.86);
}

.stat-grid strong,
.stat-grid span {
	display: block;
}

.stat-grid strong {
	margin-bottom: 8px;
	color: var(--deep-blue);
	font-family: inherit;
	font-size: 1.82rem;
	line-height: 1.12;
}

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

.founder-card {
	display: flex;
	align-items: center;
	gap: 14px;
	max-width: 420px;
	padding: 16px;
	margin: 26px 0;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.84);
}

.founder-card__avatar {
	flex: 0 0 56px;
	width: 56px;
	height: 56px;
	border-radius: var(--radius);
	border: 2px solid rgba(255, 253, 247, 0.9);
	object-fit: cover;
	object-position: center 36%;
	box-shadow: 0 10px 22px rgba(36, 49, 63, 0.16);
}

.founder-card h3,
.founder-card p {
	margin: 0;
}

.audience-section {
	background: linear-gradient(180deg, var(--warm-white), var(--soft-blue-wash));
}

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

.audience-card,
.support-card {
	min-height: 220px;
	padding: 24px;
	background: var(--paper);
}

.audience-card h3,
.support-card h3 {
	font-family: inherit;
	font-size: 1.1rem;
}

.soft-section {
	background: linear-gradient(180deg, var(--warm-white) 0%, var(--soft-blue-wash) 100%);
}

.support-section {
	background: linear-gradient(180deg, var(--sky-soft), var(--warm-white));
}

.support-card {
	background: rgba(255, 253, 247, 0.86);
}

.contact-band {
	background: var(--ink-blue);
	color: #fff;
}

.contact-band h2,
.contact-band .eyebrow {
	color: #fff;
}

.contact-band .eyebrow::before {
	background: var(--sky-blue);
}

.contact-band p {
	color: rgba(255, 255, 255, 0.78);
}

.contact-band__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
}

.contact-band__inner > div {
	max-width: 720px;
}

.page-hero {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(180deg, var(--warm-white) 0%, var(--soft-blue-wash) 100%);
	border-bottom: 1px solid var(--line);
}

.page-hero::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: -1px;
	left: 0;
	height: 92px;
	background: radial-gradient(110% 88% at 50% 100%, var(--warm-white) 0 58%, transparent 59%);
	pointer-events: none;
}

.page-hero > .container {
	position: relative;
	z-index: 1;
}

.page-hero p {
	max-width: 720px;
	color: #4d5c69;
	font-size: 1.1rem;
}

.founder-panel {
	padding: 32px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(240, 248, 253, 0.9)),
		var(--mist-blue-soft);
}

.founder-panel__identity {
	display: flex;
	align-items: center;
	gap: 18px;
	margin-bottom: 18px;
}

.founder-panel__identity p {
	margin-bottom: 0;
}

.founder-panel__photo {
	flex: 0 0 96px;
	width: 96px;
	height: 96px;
	border: 3px solid var(--paper);
	border-radius: var(--radius);
	object-fit: cover;
	object-position: center 36%;
	box-shadow: var(--shadow-small);
}

.founder-panel h2 {
	margin-bottom: 0.2em;
}

.prose {
	max-width: 780px;
}

.prose p {
	color: #445364;
}

.product-detail-list {
	display: grid;
	gap: 18px;
}

.product-detail {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 28px;
	background: var(--paper);
}

.product-detail > div {
	max-width: 780px;
}

.product-detail__media {
	flex: 0 0 176px;
	margin: 0;
}

.product-detail__media img {
	width: 176px;
	aspect-ratio: 4 / 3;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--warm-white);
	object-fit: cover;
	box-shadow: var(--shadow-small);
}

.product-detail--alfajor .product-detail__media img {
	object-fit: contain;
	padding: 8px;
}

.product-detail--alfajor {
	border-left: 8px solid var(--deep-blue);
}

.product-detail--matzati {
	border-left: 8px solid var(--sky-blue);
}

.product-detail--mipo {
	border-left: 8px solid var(--sage);
}

.pathway-list {
	display: grid;
	gap: 12px;
}

.pathway-list a {
	display: block;
	padding: 18px 20px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--paper);
	font-weight: 800;
	text-decoration: none;
	box-shadow: var(--shadow-small);
}

.pathway-list a:hover {
	transform: translateY(-2px);
	background: var(--sky-soft);
}

.contact-page {
	background: var(--warm-white);
}

.contact-details {
	align-self: start;
}

.contact-list {
	display: grid;
	gap: 12px;
	padding: 0;
	margin: 28px 0 0;
	list-style: none;
}

.contact-list li {
	padding: 16px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--paper);
}

.contact-list strong,
.contact-list span {
	display: block;
}

.contact-list strong {
	color: var(--ink-blue);
}

.contact-list span {
	color: var(--muted);
}

.contact-form-wrap {
	width: 100%;
	padding: 28px;
	background: var(--paper);
}

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

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

.field {
	margin: 0;
}

.field label {
	display: block;
	margin-bottom: 8px;
	color: var(--ink-blue);
	font-weight: 800;
}

.field input,
.field select,
.field textarea {
	width: 100%;
	border: 1px solid rgba(18, 63, 120, 0.24);
	border-radius: var(--radius);
	background: #fff;
	color: var(--text);
	font: inherit;
}

.field input,
.field select {
	min-height: 48px;
	padding: 10px 12px;
}

.field textarea {
	min-height: 150px;
	padding: 12px;
	resize: vertical;
}

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

.form-notice {
	padding: 14px 16px;
	margin-bottom: 18px;
	border-radius: var(--radius);
	font-weight: 800;
}

.form-notice--success {
	background: var(--sage-soft);
	color: #254b31;
}

.form-notice--error {
	background: var(--soft-blue-wash);
	color: var(--ink-blue);
}

.site-footer {
	padding-block: 44px 28px;
	background: #0c223c;
	color: #fff;
}

.site-footer__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: min(calc(100% - 40px), var(--container));
	margin-inline: auto;
	gap: 28px;
}

.footer-brand {
	display: inline-flex;
	width: 150px;
	padding: 8px;
	border-radius: var(--radius);
	background: #fff;
}

.footer-tagline {
	max-width: 420px;
	margin: 12px 0 0;
	color: rgba(255, 255, 255, 0.72);
}

.footer-menu {
	flex-wrap: wrap;
	justify-content: flex-end;
}

.footer-menu a {
	display: inline-flex;
	padding: 8px 10px;
	color: rgba(255, 255, 255, 0.78);
	text-decoration: none;
}

.footer-menu a:hover {
	color: #fff;
}

.site-footer__copy {
	width: min(calc(100% - 40px), var(--container));
	padding-top: 22px;
	margin: 28px auto 0;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
	color: rgba(255, 255, 255, 0.62);
	font-size: 0.92rem;
	text-align: center;
}

.js .section-reveal {
	opacity: 1;
	transform: none;
}

.js .section-reveal.is-visible {
	animation: tarbut-rise 520ms ease both;
}

@keyframes tarbut-rise {
	from {
		opacity: 0.92;
		transform: translateY(10px);
	}

	to {
		opacity: 1;
		transform: none;
	}
}

@media (max-width: 1020px) {
	h1 {
		font-size: 3.1rem;
	}

	h2 {
		font-size: 2.25rem;
	}

	.hero-section {
		min-height: auto;
		padding-block: 86px 92px;
	}

	.hero-content {
		margin-inline: auto;
	}

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

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

	.split-layout {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 820px) {
	body {
		font-size: 16px;
	}

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

	.primary-navigation {
		position: absolute;
		top: var(--header-height);
		right: 16px;
		left: 16px;
		display: none;
		padding: 14px;
		border: 1px solid var(--line);
		border-radius: var(--radius);
		background: var(--paper);
		box-shadow: var(--shadow);
	}

	.primary-navigation.is-open {
		display: block;
	}

	.primary-menu {
		display: grid;
		align-items: stretch;
		gap: 4px;
	}

	.primary-menu a {
		width: 100%;
	}

	.site-brand,
	.site-brand img {
		width: 150px;
	}

	.section-pad {
		padding-block: 68px;
	}

	.hero-section {
		padding-block: 62px 78px;
	}

	.hero-statement {
		font-size: 1.42rem;
	}

	.contact-band__inner,
	.product-detail,
	.site-footer__inner {
		align-items: flex-start;
		flex-direction: column;
	}

	.product-detail .button {
		width: 100%;
	}

	.product-detail__media,
	.product-detail__media img {
		width: 100%;
	}
}

@media (max-width: 640px) {
	html,
	body {
		max-width: 100%;
		overflow-x: hidden;
	}

	.container {
		width: calc(100vw - 28px);
		max-width: calc(100vw - 28px);
	}

	.site-header__inner {
		width: calc(100vw - 32px);
		max-width: calc(100vw - 32px);
	}

	h1 {
		max-width: 100%;
		font-size: clamp(1.5rem, 7.6vw, 1.78rem);
		line-height: 1.1;
		text-wrap: unset;
		overflow-wrap: anywhere;
	}

	.hero-content,
	.hero-statement,
	.hero-copy,
	.button-row {
		width: 100%;
		max-width: 100%;
		min-width: 0;
	}

	.hero-content.container {
		width: calc(100vw - 28px);
		max-width: calc(100vw - 28px);
		margin-inline: auto;
	}

	.hero-statement {
		font-size: clamp(1.18rem, 5.8vw, 1.42rem);
		text-wrap: unset;
	}

	.hero-copy {
		font-size: 1rem;
	}

	h2 {
		font-size: 1.9rem;
	}

	.button,
	.button-row .button {
		width: 100%;
		max-width: 100%;
		white-space: normal;
	}

	.button-row {
		display: grid;
		grid-template-columns: minmax(0, 1fr);
	}

	.product-grid,
	.value-grid,
	.audience-grid,
	.support-grid,
	.field-row,
	.stat-grid {
		grid-template-columns: 1fr;
	}

	.hero-section {
		padding-bottom: 72px;
	}

	.value-card,
	.audience-card,
	.support-card {
		min-height: auto;
	}

	.footer-menu {
		justify-content: flex-start;
	}
}

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

	.js .section-reveal {
		opacity: 1;
		transform: none;
	}

	.button:hover,
	.product-card:hover,
	.pathway-list a:hover {
		transform: none;
	}
}
