:root {
	--navy: #12356b;
	--navy-dark: #0a254f;
	--blue: #087ea4;
	--teal: #087e80;
	--yellow: #f7b500;
	--orange: #ed6b21;
	--green: #527d29;
	--pink: #d63868;
	--red: #b82045;
	--ink: #27364b;
	--muted: #64748b;
	--cream: #fff9ec;
	--pale-blue: #eff9fc;
	--line: #dbe4ea;
	--white: #fff;
	--shadow-sm: 0 8px 24px rgba(18, 53, 107, 0.09);
	--shadow-lg: 0 24px 65px rgba(18, 53, 107, 0.16);
	--radius-sm: 12px;
	--radius: 22px;
	--radius-lg: 36px;
	--wrap: 1180px;
	--font: "Trebuchet MS", "Avenir Next", Avenir, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
	scroll-behavior: smooth;
	text-size-adjust: 100%;
}

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

body.font-large {
	font-size: 1.125rem;
}

body.high-contrast {
	--navy: #001f4d;
	--navy-dark: #000;
	--blue: #005a78;
	--teal: #005c5c;
	--yellow: #ffd000;
	--orange: #b84200;
	--green: #315f00;
	--pink: #a9003d;
	--red: #a90022;
	--ink: #000;
	--muted: #292929;
	--cream: #fff;
	--pale-blue: #fff;
	--line: #000;
}

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

svg {
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

a {
	color: var(--blue);
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.18em;
}

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

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

button,
a {
	-webkit-tap-highlight-color: transparent;
}

:focus-visible {
	outline: 4px solid #7c3aed;
	outline-offset: 3px;
}

::selection {
	background: #ffe08a;
	color: var(--navy-dark);
}

h1,
h2,
h3,
h4 {
	color: var(--navy);
	font-weight: 800;
	letter-spacing: -0.025em;
	line-height: 1.14;
	margin: 0 0 0.65em;
}

h1 {
	font-size: clamp(2.35rem, 6vw, 4.75rem);
}

h2 {
	font-size: clamp(1.85rem, 4vw, 3.1rem);
}

h3 {
	font-size: clamp(1.2rem, 2vw, 1.5rem);
}

p {
	margin: 0 0 1rem;
}

.wrap {
	margin-inline: auto;
	max-width: calc(var(--wrap) + 40px);
	padding-inline: 20px;
	width: 100%;
}

.wrap--content {
	max-width: 860px;
}

.section {
	padding-block: clamp(4rem, 8vw, 7.5rem);
}

.section--compact {
	padding-block: clamp(2.5rem, 5vw, 4.5rem);
}

.section--cream {
	background: var(--cream);
}

.section--pale-blue {
	background: var(--pale-blue);
}

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

.skip-link {
	background: var(--navy-dark);
	border-radius: 0 0 8px 8px;
	color: #fff;
	font-weight: 800;
	left: 16px;
	padding: 12px 18px;
	position: fixed;
	top: -100px;
	z-index: 99999;
}

.skip-link:focus {
	color: #fff;
	top: 0;
}

.button {
	align-items: center;
	background: var(--navy);
	border: 2px solid var(--navy);
	border-radius: 999px;
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	font-weight: 800;
	gap: 9px;
	justify-content: center;
	line-height: 1.2;
	min-height: 52px;
	padding: 13px 24px;
	text-decoration: none;
	transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
	background: var(--navy-dark);
	border-color: var(--navy-dark);
	color: #fff;
	transform: translateY(-2px);
}

.button svg {
	height: 20px;
	width: 20px;
}

.button--small {
	font-size: 0.9rem;
	min-height: 42px;
	padding: 9px 17px;
}

.button--secondary {
	background: var(--yellow);
	border-color: var(--yellow);
	color: var(--navy-dark);
}

.button--secondary:hover {
	background: #e3a600;
	border-color: #e3a600;
	color: var(--navy-dark);
}

.button--outline {
	background: transparent;
	color: var(--navy);
}

.button--outline:hover {
	color: #fff;
}

.button--light {
	background: #fff;
	border-color: #fff;
	color: var(--navy);
}

.button--light:hover {
	background: var(--yellow);
	border-color: var(--yellow);
	color: var(--navy-dark);
}

.button--ghost {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.65);
	color: #fff;
}

.button--ghost:hover {
	background: #fff;
	border-color: #fff;
	color: var(--navy);
}

.button-row {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.text-link {
	align-items: center;
	color: var(--navy);
	display: inline-flex;
	font-weight: 800;
	gap: 7px;
	text-decoration: none;
}

.text-link:hover {
	color: var(--pink);
}

.text-link svg {
	height: 18px;
	transition: transform 180ms ease;
	width: 18px;
}

.text-link:hover svg {
	transform: translateX(3px);
}

.eyebrow {
	align-items: center;
	color: var(--orange);
	display: flex;
	font-size: 0.84rem;
	font-weight: 800;
	gap: 8px;
	letter-spacing: 0.1em;
	margin-bottom: 12px;
	text-transform: uppercase;
}

.eyebrow--pink {
	color: var(--pink);
}

.eyebrow--teal {
	color: var(--teal);
}

.eyebrow--orange {
	color: var(--orange);
}

.eyebrow--green {
	color: var(--green);
}

.eyebrow--blue {
	color: var(--blue);
}

.eyebrow--yellow {
	color: #ffde66;
}

.utility-bar {
	background: var(--navy);
	color: #fff;
	font-size: 0.82rem;
}

.utility-bar__inner {
	align-items: center;
	display: flex;
	justify-content: space-between;
	min-height: 38px;
}

.utility-bar p {
	margin: 0;
}

.accessibility-tools {
	align-items: center;
	display: flex;
	gap: 6px;
}

.tool-button {
	background: transparent;
	border: 0;
	border-left: 1px solid rgba(255, 255, 255, 0.35);
	color: #fff;
	cursor: pointer;
	font-size: 0.78rem;
	font-weight: 800;
	min-height: 32px;
	padding: 4px 10px;
}

.tool-button[aria-pressed="true"] {
	background: #fff;
	color: var(--navy-dark);
}

.site-header {
	background: rgba(255, 255, 255, 0.97);
	border-bottom: 1px solid rgba(18, 53, 107, 0.08);
	position: relative;
	z-index: 1000;
}

.site-header__inner {
	align-items: center;
	display: flex;
	gap: 28px;
	justify-content: space-between;
	min-height: 104px;
}

.brand__link,
.custom-logo-link {
	align-items: center;
	color: var(--navy);
	display: flex;
	gap: 13px;
	text-decoration: none;
}

.brand__logo,
.custom-logo {
	border-radius: 50%;
	height: 78px;
	object-fit: cover;
	width: 78px;
}

.brand__text {
	display: flex;
	flex-direction: column;
	line-height: 1.15;
}

.brand__text strong {
	font-size: 1.15rem;
}

.brand__text span {
	color: var(--green);
	font-size: 0.95rem;
	font-weight: 700;
	margin-top: 3px;
}

.site-nav {
	align-items: center;
	display: flex;
	flex: 1;
	gap: 25px;
	justify-content: flex-end;
}

.primary-menu {
	align-items: center;
	display: flex;
	gap: clamp(13px, 1.7vw, 26px);
	list-style: none;
	margin: 0;
	padding: 0;
}

.primary-menu > li {
	position: relative;
}

.primary-menu a {
	color: var(--ink);
	display: block;
	font-size: 0.94rem;
	font-weight: 800;
	padding: 12px 0;
	text-decoration: none;
}

.primary-menu a:hover,
.primary-menu .current-menu-item > a {
	color: var(--blue);
}

.primary-menu .current-menu-item > a::after {
	background: var(--yellow);
	border-radius: 3px;
	bottom: 4px;
	content: "";
	height: 3px;
	left: 0;
	position: absolute;
	right: 0;
}

.primary-menu .sub-menu {
	background: #fff;
	border-radius: var(--radius-sm);
	box-shadow: var(--shadow-lg);
	left: -18px;
	list-style: none;
	margin: 0;
	min-width: 230px;
	opacity: 0;
	padding: 9px 18px;
	position: absolute;
	top: calc(100% - 3px);
	transform: translateY(10px);
	transition: opacity 160ms ease, transform 160ms ease, visibility 160ms;
	visibility: hidden;
}

.primary-menu li:hover > .sub-menu,
.primary-menu li:focus-within > .sub-menu {
	opacity: 1;
	transform: translateY(0);
	visibility: visible;
}

.site-nav__actions {
	align-items: center;
	display: flex;
	gap: 9px;
}

.icon-button,
.menu-toggle {
	align-items: center;
	background: transparent;
	border: 0;
	color: var(--navy);
	cursor: pointer;
	justify-content: center;
}

.icon-button {
	border-radius: 50%;
	display: flex;
	height: 44px;
	width: 44px;
}

.icon-button:hover {
	background: var(--pale-blue);
}

.icon-button svg,
.menu-toggle svg {
	height: 23px;
	width: 23px;
}

.menu-toggle {
	display: none;
	font-weight: 800;
	gap: 6px;
	min-height: 44px;
}

.header-search {
	background: var(--pale-blue);
	border-top: 1px solid var(--line);
	padding-block: 22px;
}

.header-search[hidden] {
	display: none;
}

.search-form label {
	color: var(--navy);
	display: block;
	font-weight: 800;
	margin-bottom: 8px;
}

.search-form__row {
	display: flex;
	gap: 10px;
}

.search-form input[type="search"] {
	background: #fff;
	border: 2px solid #9ba9b7;
	border-radius: 999px;
	color: var(--ink);
	flex: 1;
	min-height: 52px;
	padding: 11px 21px;
	width: 100%;
}

.hero {
	background:
		radial-gradient(circle at 7% 14%, rgba(247, 181, 0, 0.12) 0 6px, transparent 7px),
		radial-gradient(circle at 91% 10%, rgba(214, 56, 104, 0.12) 0 7px, transparent 8px),
		linear-gradient(115deg, #fffdf7 0%, #fff 54%, #effbfc 100%);
	min-height: 660px;
	overflow: hidden;
	padding: clamp(4rem, 8vw, 7.2rem) 0 clamp(5rem, 8vw, 7rem);
	position: relative;
}

.hero__grid {
	align-items: center;
	display: grid;
	gap: clamp(40px, 7vw, 92px);
	grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.98fr);
	position: relative;
	z-index: 2;
}

.hero h1 {
	max-width: 700px;
}

.hero h1 span {
	color: var(--blue);
	position: relative;
}

.hero h1 span::after {
	background: url("data:image/svg+xml,%3Csvg width='260' height='14' viewBox='0 0 260 14' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 10C79 2 168 1 257 7' stroke='%23F7B500' stroke-width='6' stroke-linecap='round' fill='none'/%3E%3C/svg%3E") center/100% 100% no-repeat;
	bottom: -9px;
	content: "";
	height: 14px;
	left: 2%;
	position: absolute;
	width: 98%;
}

.hero__lead {
	font-size: clamp(1.05rem, 1.8vw, 1.22rem);
	max-width: 620px;
}

.hero .button-row {
	margin-top: 28px;
}

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

.hero__trust li {
	align-items: center;
	color: var(--navy);
	display: flex;
	font-size: 0.9rem;
	font-weight: 800;
	gap: 8px;
}

.hero__trust svg {
	color: var(--teal);
	height: 22px;
	width: 22px;
}

.hero__visual {
	aspect-ratio: 1 / 1;
	margin-inline: auto;
	max-width: 520px;
	position: relative;
	width: 100%;
}

.hero__blob {
	background: #dff5f3;
	border-radius: 44% 56% 63% 37% / 48% 39% 61% 52%;
	inset: 3% 2% 1% 8%;
	position: absolute;
	transform: rotate(-5deg);
}

.hero__blob::before,
.hero__blob::after {
	border-radius: 50%;
	content: "";
	position: absolute;
}

.hero__blob::before {
	background: #fff0be;
	height: 92px;
	right: 2%;
	top: 3%;
	width: 92px;
}

.hero__blob::after {
	background: #f9d8e3;
	bottom: 4%;
	height: 58px;
	left: 0;
	width: 58px;
}

.hero__logo-card {
	background: #fff;
	border: 8px solid #fff;
	border-radius: 50%;
	box-shadow: var(--shadow-lg);
	inset: 11%;
	overflow: hidden;
	position: absolute;
	transform: rotate(2deg);
}

.hero__logo-card img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.hero__badge {
	align-items: center;
	background: #fff;
	border-radius: 18px;
	box-shadow: var(--shadow-sm);
	color: var(--navy);
	display: flex;
	position: absolute;
	z-index: 3;
}

.hero__badge--age {
	bottom: 11%;
	flex-direction: column;
	left: -1%;
	line-height: 1;
	padding: 13px 18px;
	transform: rotate(-6deg);
}

.hero__badge--age strong {
	color: var(--pink);
	font-size: 1.65rem;
}

.hero__badge--age span {
	font-size: 0.8rem;
	font-weight: 700;
	margin-top: 4px;
}

.hero__badge--hours {
	gap: 10px;
	padding: 12px 15px;
	right: -4%;
	top: 15%;
}

.hero__badge--hours svg {
	background: #fff0be;
	border-radius: 50%;
	color: var(--orange);
	height: 40px;
	padding: 9px;
	width: 40px;
}

.hero__badge--hours span {
	display: flex;
	flex-direction: column;
	font-size: 0.75rem;
	line-height: 1.3;
}

.hero__badge--hours strong {
	font-size: 0.9rem;
}

.doodle {
	font-size: 1.7rem;
	position: absolute;
	z-index: 3;
}

.doodle--sun {
	color: var(--yellow);
	font-size: 3.3rem;
	left: 3%;
	top: 1%;
}

.doodle--heart {
	color: var(--pink);
	right: 6%;
	top: 3%;
	transform: rotate(12deg);
}

.doodle--spark {
	bottom: 7%;
	color: var(--teal);
	font-size: 2.7rem;
	right: 1%;
}

.hero__wave {
	background: var(--blue);
	bottom: -44px;
	height: 72px;
	left: -2%;
	opacity: 0.08;
	position: absolute;
	transform: rotate(-1deg);
	width: 104%;
}

.section-heading {
	margin-bottom: clamp(2rem, 4vw, 3.25rem);
}

.section-heading > p:last-child {
	color: var(--muted);
	font-size: 1.05rem;
	max-width: 660px;
}

.section-heading--center {
	align-items: center;
	display: flex;
	flex-direction: column;
	text-align: center;
}

.section-heading--inline,
.section-heading--split {
	align-items: end;
	display: flex;
	gap: 32px;
	justify-content: space-between;
}

.section-heading--inline h2,
.section-heading--split h2 {
	margin-bottom: 0;
}

.section-heading--split > p {
	max-width: 500px;
}

.announcement-grid {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(2, 1fr);
}

.announcement {
	align-items: center;
	background: #fff8dc;
	border: 1px solid #f2d06c;
	border-left: 6px solid var(--yellow);
	border-radius: var(--radius);
	display: grid;
	gap: 17px;
	grid-template-columns: auto 1fr auto;
	padding: 22px;
}

.announcement--urgent {
	background: #fff1f4;
	border-color: #eaa7b9;
	border-left-color: var(--pink);
}

.announcement__icon {
	align-items: center;
	background: #fff;
	border-radius: 50%;
	color: var(--navy);
	display: flex;
	height: 48px;
	justify-content: center;
	width: 48px;
}

.announcement__icon svg {
	height: 23px;
	width: 23px;
}

.announcement__label {
	color: var(--red);
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.09em;
	margin: 0 0 3px;
	text-transform: uppercase;
}

.announcement h3 {
	font-size: 1.1rem;
	margin-bottom: 4px;
}

.announcement h3 a {
	color: inherit;
	text-decoration: none;
}

.announcement p:last-child {
	font-size: 0.86rem;
	margin: 0;
}

.announcement__arrow {
	align-items: center;
	border: 2px solid currentColor;
	border-radius: 50%;
	color: var(--navy);
	display: flex;
	height: 39px;
	justify-content: center;
	width: 39px;
}

.announcement__arrow svg {
	height: 18px;
	width: 18px;
}

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

.quick-card {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	color: var(--ink);
	display: grid;
	gap: 2px;
	grid-template-columns: auto 1fr auto;
	grid-template-rows: auto auto;
	min-height: 128px;
	padding: 23px;
	text-decoration: none;
	transition: box-shadow 180ms ease, transform 180ms ease;
}

.quick-card:hover {
	box-shadow: var(--shadow-sm);
	color: var(--ink);
	transform: translateY(-4px);
}

.quick-card__icon {
	align-items: center;
	border-radius: 17px;
	display: flex;
	grid-row: 1 / 3;
	height: 58px;
	justify-content: center;
	margin-right: 14px;
	width: 58px;
}

.quick-card__icon svg {
	height: 28px;
	width: 28px;
}

.quick-card__icon strong {
	font-size: 1.35rem;
}

.quick-card > strong {
	align-self: end;
	color: var(--navy);
	font-size: 1.1rem;
}

.quick-card > span:not(.quick-card__icon) {
	color: var(--muted);
	font-size: 0.82rem;
}

.quick-card > svg {
	align-self: center;
	color: var(--navy);
	grid-column: 3;
	grid-row: 1 / 3;
	height: 21px;
	width: 21px;
}

.quick-card--yellow .quick-card__icon {
	background: #fff1ba;
	color: #9e6800;
}

.quick-card--blue .quick-card__icon {
	background: #d9f2fa;
	color: var(--blue);
}

.quick-card--teal .quick-card__icon {
	background: #d9f3ef;
	color: var(--teal);
}

.quick-card--pink .quick-card__icon {
	background: #fbe1e9;
	color: var(--pink);
}

.quick-card--green .quick-card__icon {
	background: #e7f2d6;
	color: var(--green);
}

.quick-card--orange .quick-card__icon {
	background: #ffe5d2;
	color: var(--orange);
}

.groups {
	position: relative;
}

.groups::before,
.groups::after {
	color: var(--yellow);
	content: "•";
	font-size: 4rem;
	opacity: 0.5;
	position: absolute;
}

.groups::before {
	left: 3vw;
	top: 10%;
}

.groups::after {
	bottom: 8%;
	color: var(--teal);
	right: 3vw;
}

.groups-grid {
	display: grid;
	gap: 23px;
	grid-template-columns: repeat(3, 1fr);
}

.group-card {
	background: #fff;
	border: 1px solid rgba(18, 53, 107, 0.08);
	border-radius: var(--radius-lg);
	box-shadow: 0 12px 35px rgba(18, 53, 107, 0.07);
	overflow: hidden;
	transition: box-shadow 180ms ease, transform 180ms ease;
}

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

.group-card__art {
	align-items: center;
	background: #e2f8f5;
	display: flex;
	height: 230px;
	justify-content: center;
	overflow: hidden;
	padding: 20px 30px 0;
	position: relative;
	text-decoration: none;
}

.group-card__art::before {
	background: #c6eeeb;
	border-radius: 50%;
	content: "";
	height: 210px;
	position: absolute;
	top: 30px;
	width: 210px;
}

.group-card__art img {
	height: 210px;
	object-fit: contain;
	position: relative;
	width: 260px;
	z-index: 2;
}

.group-card:nth-child(3n + 2) .group-card__art {
	background: #fff8d8;
}

.group-card:nth-child(3n + 2) .group-card__art::before {
	background: #fff1ae;
}

.group-card:nth-child(3n) .group-card__art {
	background: #ecf5df;
}

.group-card:nth-child(3n) .group-card__art::before {
	background: #dcecbf;
}

.group-card__placeholder {
	align-items: center;
	color: var(--teal);
	display: flex;
	height: 210px;
	justify-content: center;
	position: relative;
	width: 260px;
	z-index: 2;
}

.group-card__placeholder svg {
	height: 70px;
	width: 70px;
}

.group-card__body {
	padding: 27px 29px 31px;
}

.group-card h2,
.group-card h3 {
	font-size: 1.65rem;
	margin-bottom: 8px;
}

.group-card h2 a,
.group-card h3 a {
	color: inherit;
	text-decoration: none;
}

.group-card p {
	font-size: 0.92rem;
}

.why__grid {
	align-items: center;
	display: grid;
	gap: clamp(45px, 8vw, 100px);
	grid-template-columns: minmax(320px, 0.92fr) 1.08fr;
}

.why__visual {
	aspect-ratio: 1 / 1;
	background:
		radial-gradient(circle at 20% 20%, #fff1ba 0 8%, transparent 8.5%),
		radial-gradient(circle at 82% 74%, #d9f3ef 0 12%, transparent 12.5%),
		#fbe8ef;
	border-radius: 43% 57% 44% 56% / 55% 44% 56% 45%;
	max-width: 510px;
	padding: 12%;
	position: relative;
	transform: rotate(-2deg);
}

.why__circle {
	background: #fff;
	border: 7px solid #fff;
	border-radius: 50%;
	box-shadow: var(--shadow-lg);
	overflow: hidden;
	transform: rotate(2deg);
}

.why__note {
	align-items: center;
	background: #fff;
	border-radius: 50%;
	box-shadow: var(--shadow-sm);
	display: flex;
	height: 57px;
	justify-content: center;
	position: absolute;
	transform: rotate(2deg);
	width: 57px;
}

.why__note--one {
	color: var(--pink);
	left: 4%;
	top: 14%;
}

.why__note--two {
	bottom: 13%;
	color: var(--yellow);
	right: 3%;
}

.why__content > p:not(.eyebrow) {
	font-size: 1.05rem;
}

.feature-list {
	display: grid;
	gap: 19px;
	list-style: none;
	margin: 30px 0;
	padding: 0;
}

.feature-list li {
	align-items: flex-start;
	display: flex;
	gap: 15px;
}

.feature-list li > span {
	align-items: center;
	background: var(--pale-blue);
	border-radius: 14px;
	color: var(--teal);
	display: flex;
	flex: 0 0 auto;
	height: 47px;
	justify-content: center;
	width: 47px;
}

.feature-list svg {
	height: 24px;
	width: 24px;
}

.feature-list strong {
	color: var(--navy);
	font-size: 1.02rem;
}

.feature-list p {
	color: var(--muted);
	font-size: 0.88rem;
	margin: 2px 0 0;
}

.news-grid {
	display: grid;
	gap: 23px;
	grid-template-columns: repeat(3, 1fr);
}

.news-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: 0 7px 22px rgba(18, 53, 107, 0.06);
	overflow: hidden;
}

.news-card__media {
	background: #dff4f7;
	display: block;
	height: 215px;
	overflow: hidden;
}

.news-card__media img {
	height: 100%;
	object-fit: cover;
	transition: transform 400ms ease;
	width: 100%;
}

.news-card:hover .news-card__media img {
	transform: scale(1.035);
}

.news-card__placeholder {
	align-items: center;
	background:
		radial-gradient(circle at 30% 30%, #fff1ba 0 15%, transparent 15.5%),
		radial-gradient(circle at 75% 70%, #f7cedc 0 13%, transparent 13.5%),
		linear-gradient(135deg, #e3f7f5, #fff);
	display: flex;
	height: 100%;
	justify-content: center;
}

.news-card__placeholder svg {
	color: var(--pink);
	height: 54px;
	width: 54px;
}

.news-card__body {
	padding: 24px;
}

.content-type-label {
	color: var(--teal);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	margin: 0 0 5px;
	text-transform: uppercase;
}

.meta {
	align-items: center;
	color: var(--muted);
	display: flex;
	font-size: 0.8rem;
	gap: 7px;
}

.meta svg {
	height: 16px;
	width: 16px;
}

.news-card h3 a {
	color: inherit;
	text-decoration: none;
}

.news-card__body > p:not(.meta):not(.content-type-label) {
	color: var(--muted);
	font-size: 0.9rem;
}

.empty-state {
	background: #fff;
	border: 2px dashed var(--line);
	border-radius: var(--radius);
	grid-column: 1 / -1;
	padding: 50px 30px;
	text-align: center;
}

.empty-state > svg {
	color: var(--pink);
	height: 44px;
	margin: 0 auto 18px;
	width: 44px;
}

.contact-strip {
	background: var(--navy);
	color: #fff;
	overflow: hidden;
	position: relative;
}

.contact-strip::before,
.contact-strip::after {
	border: 30px solid rgba(255, 255, 255, 0.07);
	border-radius: 50%;
	content: "";
	height: 260px;
	position: absolute;
	width: 260px;
}

.contact-strip::before {
	left: -100px;
	top: -100px;
}

.contact-strip::after {
	bottom: -140px;
	right: -70px;
}

.contact-strip__inner {
	align-items: center;
	display: flex;
	gap: 50px;
	justify-content: space-between;
	position: relative;
	z-index: 2;
}

.contact-strip h2 {
	color: #fff;
}

.contact-strip p:not(.eyebrow) {
	max-width: 660px;
	opacity: 0.9;
}

.contact-strip__actions {
	display: flex;
	flex: 0 0 auto;
	flex-direction: column;
	gap: 11px;
	min-width: 230px;
}

.breadcrumbs {
	align-items: center;
	color: var(--muted);
	display: flex;
	font-size: 0.8rem;
	gap: 9px;
	padding-block: 16px;
}

.breadcrumbs a {
	color: var(--navy);
}

.page-main {
	min-height: 55vh;
	padding-bottom: clamp(4rem, 8vw, 7rem);
}

.entry__header,
.archive-header {
	padding-block: clamp(3rem, 7vw, 6rem) clamp(2rem, 4vw, 3rem);
}

.entry__header h1,
.archive-header h1 {
	font-size: clamp(2.3rem, 5vw, 4rem);
}

.entry__image {
	border-radius: var(--radius);
	margin: 0 0 2.5rem;
	overflow: hidden;
}

.entry__content {
	font-size: 1.05rem;
}

.entry__content > * {
	max-width: 100%;
}

.entry__content h2 {
	font-size: 2rem;
	margin-top: 2em;
}

.entry__content h3 {
	margin-top: 1.7em;
}

.entry__content a:not(.button) {
	font-weight: 700;
}

.entry__content blockquote {
	background: var(--cream);
	border-left: 6px solid var(--yellow);
	border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
	margin: 2rem 0;
	padding: 22px 28px;
}

.entry__content table {
	border-collapse: collapse;
	display: block;
	margin: 2rem 0;
	max-width: 100%;
	overflow-x: auto;
	width: max-content;
}

.entry__content th,
.entry__content td {
	border: 1px solid var(--line);
	padding: 11px 14px;
	text-align: left;
}

.entry__content th {
	background: var(--navy);
	color: #fff;
}

.entry__content ul li,
.entry__content ol li {
	margin-bottom: 0.45em;
}

.entry__footer {
	border-top: 1px solid var(--line);
	margin-top: 3rem;
	padding-top: 2rem;
}

.entry__content .lead {
	color: var(--navy);
	font-size: 1.25rem;
	font-weight: 700;
}

.entry__content .wp-block-columns {
	gap: 28px;
}

.entry__content .wp-block-group {
	margin-block: 2rem;
}

.assigned-groups {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	font-size: 0.9rem;
	gap: 8px;
	margin-top: 18px;
}

.assigned-groups > span {
	color: var(--muted);
	font-weight: 700;
}

.assigned-groups a {
	background: var(--cream);
	border-radius: 999px;
	color: var(--navy);
	font-weight: 800;
	padding: 6px 12px;
	text-decoration: none;
}

.group-detail__lead {
	color: var(--muted);
	font-size: 1.15rem;
	max-width: 720px;
}

.group-detail__content {
	margin-top: clamp(3rem, 7vw, 6rem);
}

.group-detail__section + .group-detail__section {
	margin-top: clamp(3.5rem, 7vw, 6rem);
}

.group-detail__section .section-heading {
	margin-bottom: 28px;
}

.group-detail__section .section-heading h2 {
	margin-bottom: 0;
}

.archive-header {
	max-width: 780px;
}

.archive-description {
	font-size: 1.05rem;
}

.pagination {
	margin-top: 3rem;
}

.nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	justify-content: center;
}

.page-numbers {
	align-items: center;
	border: 1px solid var(--line);
	border-radius: 50%;
	color: var(--navy);
	display: flex;
	font-weight: 800;
	height: 44px;
	justify-content: center;
	text-decoration: none;
	width: 44px;
}

.page-numbers.current {
	background: var(--navy);
	color: #fff;
}

.search-results-list {
	list-style: none;
	margin: 2rem 0;
	padding: 0;
}

.search-results-list li {
	border-bottom: 1px solid var(--line);
	padding: 24px 0;
}

.search-results-list h2 {
	font-size: 1.5rem;
}

.search-results-list h2 a {
	color: inherit;
}

.filter-links {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	margin: -1rem 0 2.5rem;
}

.filter-links a {
	border: 1px solid var(--line);
	border-radius: 999px;
	color: var(--navy);
	font-size: 0.88rem;
	font-weight: 800;
	padding: 8px 15px;
	text-decoration: none;
}

.filter-links a:hover,
.filter-links .is-current {
	background: var(--navy);
	border-color: var(--navy);
	color: #fff;
}

.document-list,
.meal-list {
	display: grid;
	gap: 14px;
}

.document-row {
	align-items: center;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	display: grid;
	gap: 20px;
	grid-template-columns: auto 1fr auto;
	padding: 23px;
}

.document-row__icon,
.meal-card__icon {
	align-items: center;
	background: var(--pale-blue);
	border-radius: 17px;
	color: var(--blue);
	display: flex;
	height: 58px;
	justify-content: center;
	width: 58px;
}

.document-row__icon svg,
.meal-card__icon svg {
	height: 29px;
	width: 29px;
}

.document-row__category {
	color: var(--teal);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	margin: 0;
	text-transform: uppercase;
}

.document-row h2,
.meal-card h2 {
	font-size: 1.25rem;
	margin: 3px 0 5px;
}

.document-row__content > p:not(.document-row__category, .document-row__meta) {
	color: var(--muted);
	font-size: 0.9rem;
	margin-bottom: 6px;
}

.document-row__meta {
	color: var(--muted);
	font-size: 0.76rem;
	margin: 0;
}

.document-row__actions {
	align-items: flex-end;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.meal-card {
	align-items: center;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	display: grid;
	gap: 20px;
	grid-template-columns: auto 1fr;
	padding: 25px;
}

.meal-card h2 a {
	color: inherit;
	text-decoration: none;
}

.contact-form-wrap {
	margin-top: 3rem;
}

.contact-form {
	background: var(--pale-blue);
	border-radius: var(--radius);
	padding: clamp(22px, 5vw, 42px);
}

.required-info {
	color: var(--muted);
	font-size: 0.86rem;
}

.form-field {
	margin-bottom: 20px;
}

.form-field label {
	color: var(--navy);
	display: block;
	font-weight: 800;
	margin-bottom: 7px;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field textarea {
	background: #fff;
	border: 2px solid #93a4b6;
	border-radius: var(--radius-sm);
	color: var(--ink);
	padding: 11px 13px;
	width: 100%;
}

.form-field--checkbox {
	display: grid;
	gap: 5px 10px;
	grid-template-columns: auto 1fr;
}

.form-field--checkbox input {
	height: 22px;
	margin-top: 3px;
	width: 22px;
}

.form-field--checkbox label {
	font-weight: 500;
}

.form-field--checkbox .field-error {
	grid-column: 2;
}

.field-error {
	color: var(--red);
	display: block;
	font-size: 0.86rem;
	font-weight: 800;
	margin-top: 5px;
}

.form-message {
	border-radius: var(--radius-sm);
	margin-bottom: 20px;
	padding: 17px 20px;
}

.form-message--success {
	background: #e7f4da;
	border-left: 5px solid var(--green);
}

.form-message--error {
	background: #fff0f3;
	border-left: 5px solid var(--red);
}

.form-message--error ul {
	margin-bottom: 0;
}

.contact-hp {
	left: -9999px;
	position: absolute;
}

.not-found {
	padding-block: clamp(4rem, 10vw, 9rem);
	text-align: center;
}

.not-found__code {
	color: #dceff4;
	font-size: clamp(6rem, 18vw, 12rem);
	font-weight: 900;
	letter-spacing: -0.08em;
	line-height: 0.8;
	margin-bottom: 2rem;
}

.not-found .eyebrow {
	justify-content: center;
}

.not-found > p:not(.not-found__code, .eyebrow) {
	margin-inline: auto;
	max-width: 600px;
}

.not-found .search-form {
	margin: 2.5rem auto;
	max-width: 650px;
	text-align: left;
}

.site-footer {
	background: #0b2952;
	color: rgba(255, 255, 255, 0.84);
	padding-top: 18px;
	position: relative;
}

.footer-art {
	display: flex;
	gap: 16px;
	justify-content: center;
	margin-top: -31px;
}

.footer-art span {
	background: var(--yellow);
	border-radius: 50%;
	height: 16px;
	width: 16px;
}

.footer-art span:nth-child(2) {
	background: var(--teal);
}

.footer-art span:nth-child(3) {
	background: var(--pink);
}

.footer-art span:nth-child(4) {
	background: var(--blue);
}

.footer-art span:nth-child(5) {
	background: var(--orange);
}

.site-footer__grid {
	display: grid;
	gap: 55px;
	grid-template-columns: 1.25fr 1fr 0.75fr;
	padding-block: 65px 55px;
}

.site-footer h2 {
	color: #fff;
	font-size: 1.08rem;
	margin-bottom: 20px;
}

.footer-brand {
	align-items: center;
	display: flex;
	gap: 18px;
}

.footer-brand img {
	border-radius: 50%;
	flex: 0 0 auto;
	height: 100px;
	width: 100px;
}

.footer-brand strong {
	color: #fff;
	font-size: 1.2rem;
}

.footer-brand p {
	font-size: 0.87rem;
	margin: 6px 0 0;
	max-width: 330px;
}

.footer-list,
.footer-menu,
.site-footer .primary-menu {
	display: grid;
	gap: 11px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-list li {
	align-items: flex-start;
	display: flex;
	gap: 9px;
}

.footer-list svg {
	flex: 0 0 auto;
	height: 19px;
	margin-top: 3px;
	width: 19px;
}

.site-footer a {
	color: #fff;
}

.footer-menu a,
.site-footer .primary-menu a {
	font-size: 0.9rem;
	font-weight: 500;
	padding: 0;
}

.site-footer__bottom {
	background: #071f40;
	font-size: 0.78rem;
}

.site-footer__bottom .wrap {
	align-items: center;
	display: flex;
	justify-content: space-between;
	min-height: 65px;
}

.site-footer__bottom p {
	margin: 0;
}

.site-footer__bottom nav {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
}

.site-footer__bottom a {
	color: rgba(255, 255, 255, 0.85);
}

.high-contrast img {
	filter: contrast(115%);
}

@media (max-width: 1100px) {
	.brand__text {
		display: none;
	}

	.site-nav {
		gap: 15px;
	}

	.primary-menu {
		gap: 13px;
	}

	.site-nav__actions .button--outline {
		display: none;
	}
}

@media (max-width: 900px) {
	.utility-bar p {
		font-size: 0.76rem;
	}

	.site-header__inner {
		min-height: 84px;
	}

	.brand__logo,
	.custom-logo {
		height: 65px;
		width: 65px;
	}

	.menu-toggle {
		display: flex;
	}

	.site-nav {
		align-items: stretch;
		background: #fff;
		border-top: 1px solid var(--line);
		box-shadow: var(--shadow-lg);
		display: none;
		flex-direction: column;
		gap: 15px;
		left: 0;
		padding: 18px 20px 25px;
		position: absolute;
		right: 0;
		top: 100%;
	}

	.site-nav.is-open {
		display: flex;
	}

	.primary-menu {
		align-items: stretch;
		flex-direction: column;
		gap: 0;
	}

	.primary-menu a {
		border-bottom: 1px solid var(--line);
		padding: 13px 5px;
	}

	.primary-menu .sub-menu {
		box-shadow: none;
		left: auto;
		opacity: 1;
		padding: 0 0 0 20px;
		position: static;
		transform: none;
		visibility: visible;
	}

	.site-nav__actions {
		flex-wrap: wrap;
	}

	.site-nav__actions .button {
		flex: 1;
	}

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

	.hero__content {
		max-width: 760px;
	}

	.hero__visual {
		max-width: 480px;
	}

	.announcement-grid,
	.groups-grid,
	.news-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.group-card:last-child,
	.news-card:last-child {
		grid-column: 1 / -1;
		max-width: calc(50% - 12px);
		width: 100%;
	}

	.quick-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.why__grid {
		grid-template-columns: 0.82fr 1.18fr;
	}

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

	.footer-brand {
		grid-column: 1 / -1;
	}
}

@media (max-width: 680px) {
	body {
		font-size: 0.98rem;
	}

	.utility-bar__inner {
		justify-content: flex-end;
	}

	.utility-bar p {
		display: none;
	}

	.hero {
		padding-top: 3.5rem;
	}

	.hero__grid {
		gap: 38px;
	}

	.hero__lead {
		font-size: 1rem;
	}

	.hero .button {
		width: 100%;
	}

	.hero__trust {
		gap: 12px;
	}

	.hero__visual {
		max-width: 390px;
	}

	.hero__badge--hours {
		right: 0;
	}

	.hero__badge--age {
		left: 0;
	}

	.section-heading--inline,
	.section-heading--split {
		align-items: flex-start;
		flex-direction: column;
		gap: 14px;
	}

	.announcement-grid,
	.quick-grid,
	.groups-grid,
	.news-grid {
		grid-template-columns: 1fr;
	}

	.announcement {
		align-items: start;
		grid-template-columns: auto 1fr;
	}

	.announcement__arrow {
		grid-column: 2;
	}

	.group-card:last-child,
	.news-card:last-child {
		grid-column: auto;
		max-width: none;
	}

	.quick-card {
		min-height: 110px;
		padding: 18px;
	}

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

	.why__visual {
		margin-inline: auto;
		max-width: 410px;
		width: 100%;
	}

	.contact-strip__inner {
		align-items: stretch;
		flex-direction: column;
	}

	.contact-strip__actions {
		min-width: 0;
	}

	.site-footer__grid {
		gap: 38px;
		grid-template-columns: 1fr;
	}

	.footer-brand {
		align-items: flex-start;
		grid-column: auto;
	}

	.footer-brand img {
		height: 78px;
		width: 78px;
	}

	.site-footer__bottom .wrap {
		align-items: flex-start;
		flex-direction: column;
		gap: 10px;
		padding-block: 19px;
	}

	.site-footer__bottom nav {
		gap: 9px 15px;
	}

	.search-form__row {
		flex-direction: column;
	}

	.document-row {
		align-items: start;
		grid-template-columns: auto 1fr;
	}

	.document-row__actions {
		align-items: stretch;
		grid-column: 1 / -1;
	}
}

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

@media print {
	.utility-bar,
	.site-header,
	.site-footer,
	.breadcrumbs,
	.button,
	.hero__visual,
	.contact-strip {
		display: none !important;
	}

	body {
		color: #000;
		font-size: 12pt;
	}

	a {
		color: #000;
		text-decoration: underline;
	}

	.wrap,
	.wrap--content {
		max-width: none;
		padding: 0;
	}
}
