/**
 * CuraReach site-specific styles (Healen layouts, blog, contact, footer, etc.).
 *
 * @package CuraReach
 */

/* Align page gutter with navbar (.cr-header__inner → container-xs).
 * Healen sets container-xs on body at breakpoints; force 16px for all phones
 * so mobile matches the header (Healen uses 20px from 480–767). */
@media screen and (max-width: 767px) {
	body {
		--_perimeters---containers--container-xs: 16px;
	}
}

/* -------------------------------------------------------------------------
   Shared page column — matches navbar (.cr-header__inner)
   1340px max, gutters outside the column (not padding inside 1340)

   Use container-xs directly (not a :root-computed intermediate). Custom props
   inherit as computed values, so a :root --cr-container-gutter stayed stuck
   at 30px while the navbar (which reads container-xs on .cr-header) updated.
   ------------------------------------------------------------------------- */

:root {
	--cr-container-max: var(--_perimeters---containers--container-lg, 1340px);
	--cr-container-md: 1064px;
}

/* Keep a gutter token for feature-scroll / insights — resolve on body so it
   tracks Healen + our mobile container-xs overrides. */
body {
	--cr-container-gutter: var(--_perimeters---containers--container-xs, 30px);
}

.cr-container,
.cr-section__inner,
.cr-manifesto__inner,
.cr-page__inner,
.cr-glass-spotlight__inner {
	width: min(
		calc(100% - (2 * var(--_perimeters---containers--container-xs, 30px))),
		var(--cr-container-max)
	);
	max-width: none;
	margin-right: auto;
	margin-left: auto;
	padding-inline: 0;
	box-sizing: border-box;
}

/* -------------------------------------------------------------------------
   Footer CTA (full-viewport banner)
   ------------------------------------------------------------------------- */

.cr-footer-cta {
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100vh;
	min-height: 100vh;
	min-height: 100svh;
	padding: var(--_perimeters---spaces--space-8xl, 48px)
		var(--_perimeters---containers--container-xs, 30px);
	box-sizing: border-box;
	background-color: #3a1408;
	text-align: center;
}

.cr-footer-cta__media {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	overflow: hidden;
}

.cr-footer-cta__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgb(20 8 4 / 0.42) 0%,
		rgb(20 8 4 / 0.52) 50%,
		rgb(20 8 4 / 0.58) 100%
	);
}

.cr-footer-cta__bg {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	filter: none;
}

.cr-footer-cta__inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	max-width: 58rem;
}

.cr-footer-cta__title {
	margin: 0;
	width: 100%;
	max-width: 58rem;
	color: var(--white, #fff);
	font-size: clamp(2.5rem, 5.5vw, 4.5rem);
	line-height: 1.1;
	letter-spacing: -0.02em;
	text-wrap: balance;
	text-shadow: 0 1px 2px rgb(0 0 0 / 0.35);
}

.cr-footer-cta__title br {
	display: block;
}

.cr-footer-cta__body {
	margin: var(--_perimeters---spaces--space-3xl, 24px) 0 0;
	width: 100%;
	max-width: 28rem;
	color: rgb(255 255 255 / 0.88);
	font-size: clamp(1.125rem, 1.6vw, 1.375rem);
	line-height: 1.55;
	text-wrap: pretty;
	text-shadow: 0 1px 2px rgb(0 0 0 / 0.3);
}

.cr-footer-cta__btn.button-01 {
	margin-top: var(--_perimeters---spaces--space-5xl, 36px);
	background-color: var(--black, #020202);
	color: var(--white, #fff);
	font-size: 1.0625rem;
	border: 0;
	cursor: pointer;
	text-decoration: none;
}

.cr-footer-cta__btn.button-01:hover,
.cr-footer-cta__btn.button-01:focus-visible {
	background-color: var(--white, #fff);
	color: var(--black, #020202);
	text-decoration: none;
}

@media screen and (min-width: 768px) and (max-width: 991px) {
	.cr-footer-cta {
		height: 70vh;
		min-height: 70vh;
		min-height: 70svh;
	}
}

@media screen and (max-width: 767px) {
	.cr-footer-cta {
		height: 50vh;
		min-height: 50vh;
		min-height: 50svh;
		padding-left: var(--_perimeters---containers--container-xs, 16px);
		padding-right: var(--_perimeters---containers--container-xs, 16px);
	}

	.cr-footer-cta__title {
		font-size: clamp(2rem, 8vw, 2.75rem);
		line-height: 1.12;
	}

	.cr-footer-cta__body {
		font-size: 0.9375rem;
		line-height: 1.5;
	}
}

/* -------------------------------------------------------------------------
   Global footer (Healen layout)
   ------------------------------------------------------------------------- */

.cr-site-footer {
	margin-top: 0;
}

.footer-wrapper {
	background-color: var(--dark-bg, #0e0e0e);
}

.footer.container-full {
	flex-direction: column;
	align-items: center;
	width: 100%;
	padding-left: var(--_perimeters---containers--container-xs, 30px);
	padding-right: var(--_perimeters---containers--container-xs, 30px);
	box-sizing: border-box;
}

.footer-content {
	width: 100%;
}

.footer-left-top {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.footer-left .heading-03 {
	color: var(--white, #fff);
	margin: 0;
}

.footer-left .button-01 {
	align-self: flex-start;
	border: 0;
	cursor: pointer;
}

.footer-left .button-01:hover,
.footer-left .button-01:focus-visible {
	background-color: var(--white, #fff);
	color: var(--black, #020202);
}

/* -------------------------------------------------------------------------
   Healen button text flip (dual-label clip)
   ------------------------------------------------------------------------- */

.button-01 .button-outside-01 {
	display: block;
	height: 22px;
	overflow: hidden;
}

.button-01 .button-inside {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.button-01 .button-text-01 {
	display: block;
	flex: none;
	line-height: 22px;
	white-space: nowrap;
	transform: translate3d(0, 0%, 0);
	transform-style: preserve-3d;
	transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	will-change: transform;
}

.button-01:hover .button-text-01,
.button-01:focus-visible .button-text-01 {
	transform: translate3d(0, -100%, 0);
}

@media (prefers-reduced-motion: reduce) {
	.button-01 .button-text-01 {
		transition: none;
	}

	.button-01:hover .button-text-01,
	.button-01:focus-visible .button-text-01 {
		transform: none;
	}
}

.footer-social-link {
	color: var(--white, #fff);
	text-decoration: none;
}

.footer-social-link:hover,
.footer-social-link:focus {
	text-decoration: none;
}

.footer-social-ico {
	display: block;
	width: 20px;
	height: 20px;
	font-size: 18px;
	line-height: 20px;
	text-align: center;
}

.footer-link-wrap {
	overflow: hidden;
	width: fit-content;
	max-width: 100%;
}

.footer-body {
	min-width: 0;
}

.footer-link {
	text-decoration: none;
	white-space: normal;
	overflow-wrap: break-word;
}

.footer-link:hover,
.footer-link:focus {
	text-decoration: none;
}

.footer-link-line {
	background-color: var(--white, #fff);
	width: 100% !important;
	height: 1px;
	margin-top: -1px;
	transform: translate3d(-101%, 0, 0);
	transform-style: preserve-3d;
	will-change: transform;
}

.footer-subscriber-head .heading-03 {
	color: var(--white, #fff);
	margin: 0;
}

.footer-copyright-text {
	margin: 0;
}

.footer-copyright-text a,
.cp-link {
	color: var(--primary, #e4ff60);
	text-decoration: none;
}

.subscribe-form-block {
	width: 100%;
}

.subscribe-field {
	box-sizing: border-box;
	outline: none;
	border: 0;
	border-radius: 70px;
}

.subsribe-submit {
	appearance: none;
	-webkit-appearance: none;
	border: 0;
	outline: none;
	cursor: pointer;
}

.subsribe-submit:disabled {
	opacity: 0.7;
	cursor: wait;
}

.cr-subscribe-hp {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.cr-subscribe-status {
	width: 100%;
	margin: 10px 0 0;
	font-size: 0.875rem;
	line-height: 1.4;
	color: var(--white-60, rgba(255, 255, 255, 0.6));
}

.cr-subscribe-status.is-success {
	color: var(--primary, #e4ff60);
}

.cr-subscribe-status.is-error {
	color: #ff8f8f;
}

.footer-btm-img {
	display: block;
	width: 100%;
	max-width: none;
	height: auto;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	background-color: transparent;
	object-fit: contain;
	object-position: center bottom;
}

@media screen and (max-width: 991px) {
	.footer-body {
		max-width: none;
	}
}

@media screen and (max-width: 767px) {
	.footer-left-socials {
		width: 100%;
		max-width: 260px;
	}

	.extra-links {
		flex-wrap: wrap;
	}

	.footer-copyright-text,
	.footer-copyright-wrap .footer-link {
		font-size: 0.8125rem;
		line-height: 1.4;
	}
}

/* Keep footer subscribe inline (desktop pill) on small screens */
@media screen and (max-width: 479px) {
	.subscribe-form {
		flex-flow: row;
		height: 52px;
		border-radius: 70px;
		grid-column-gap: 0;
		grid-row-gap: 0;
	}

	.subscribe-field {
		border-radius: 70px;
		height: 100%;
		padding: 6px 110px 6px 18px;
		font-size: 0.9375rem;
	}

	.subsribe-submit {
		background-color: var(--black, #000);
		width: auto;
		min-width: 0;
		height: 40px;
		padding: 8px 12px;
		font-size: 12px;
		line-height: 1.2;
		letter-spacing: 0;
		color: var(--white, #fff);
		font-weight: var(--_typography---font-weight--bold, 700);
		border-radius: 60px;
		position: absolute;
		inset: 6px 6px 6px auto;
		white-space: nowrap;
	}

	.subsribe-submit:hover {
		background-color: var(--secondary, #7c8cff);
		color: var(--white, #fff);
	}
}

/* -------------------------------------------------------------------------
   Single blog post (Healen layout)
   ------------------------------------------------------------------------- */

.cr-single-healen .blog-hero-single-subtext a {
	color: inherit;
	text-decoration: none;
}

.cr-single-healen .blog-hero-single-subtext a:hover,
.cr-single-healen .blog-hero-single-subtext a:focus {
	text-decoration: underline;
}

.cr-single-healen .blog-hero-single-thumb-img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.cr-single-healen .blog-owner {
	align-items: center;
}

.cr-single-healen .blog-owner .p2-medium {
	margin: 0;
	line-height: 1.2;
}

.cr-single-healen .blog-owner-img {
	border-radius: 50%;
	object-fit: cover;
	display: block;
	flex: none;
}

.cr-single-author {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.cr-single-author-bio {
	margin: 0;
	color: var(--grey, #6e6e6e);
}

.cr-single-meta-line {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin: 0;
}

.cr-single-healen .blog-hero-single-title-block {
	display: flex;
	flex-direction: column;
	gap: 12px;
	width: 100%;
}

.cr-single-healen .blog-hero-single-title-block .heading-01 {
	margin: 0;
}

.cr-single-healen .blog-hero-single-meta-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	width: 100%;
}

.cr-single-healen .blog-hero-single-meta {
	color: var(--grey, #6e6e6e);
	flex: 1 1 auto;
	min-width: 0;
}

.cr-single-healen .blog-hero-single-share {
	display: flex;
	align-items: center;
	gap: 4px;
	flex: none;
}

.cr-single-healen .blog-hero-single-share__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	color: var(--grey, #6e6e6e);
	text-decoration: none;
	border-radius: 50%;
	transition: color 0.2s ease, background-color 0.2s ease;
}

.cr-single-healen .blog-hero-single-share__link:hover,
.cr-single-healen .blog-hero-single-share__link:focus-visible {
	color: var(--black, #020202);
	background-color: var(--black-10, #0202021a);
	outline: none;
}

.cr-single-healen .blog-hero-single-share__link i {
	font-size: 14px;
	line-height: 1;
}

.cr-single-meta-sep {
	flex: none;
}

.cr-single-healen .blog-single-info {
	position: static;
	height: auto;
	align-self: stretch;
	top: auto;
	max-width: 320px;
}

@media screen and (max-width: 991px) {
	.cr-single-healen .blog-single-content {
		flex-flow: column;
	}

	.cr-single-healen .blog-single-info {
		max-width: 100%;
	}

	.cr-single-healen .blog-single-details-wrap {
		max-width: 100%;
	}
}

@media screen and (max-width: 767px) {
	.cr-single-healen .blog-single-info {
		max-width: 100%;
	}
}

.cr-single-toc {
	box-sizing: border-box;
	width: 100%;
	margin: 0;
	padding: 16px 18px;
	border: 1px solid var(--black-10, #0202021a);
	border-radius: 16px;
	background-color: var(--white, #fff);
	position: sticky;
	top: 24px;
}

.cr-single-toc__details {
	margin: 0;
}

.cr-single-toc__summary {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 8px;
	margin: 0;
	color: var(--black, #020202);
	cursor: pointer;
	list-style: none;
	user-select: none;
}

.cr-single-toc__summary::-webkit-details-marker {
	display: none;
}

.cr-single-toc__summary::marker {
	content: '';
}

.cr-single-toc__summary-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.cr-single-toc__title-text {
	display: block;
	min-width: 0;
}

.cr-single-toc__chevron {
	flex: none;
	width: 8px;
	height: 8px;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: rotate(45deg);
	transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cr-single-toc__details:not([open]) .cr-single-toc__chevron {
	transform: rotate(-45deg);
}

.cr-single-toc__details[open] .cr-single-toc__summary {
	margin-bottom: 14px;
}

.cr-single-toc__title-line {
	display: block;
	width: 36px;
	height: 2px;
	border-radius: 1px;
	background-color: var(--secondary, #af7c54);
	transform: scaleX(0);
	transform-origin: left center;
	animation: cr-toc-title-line 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.12s forwards;
}

@keyframes cr-toc-title-line {
	to {
		transform: scaleX(1);
	}
}

@media (prefers-reduced-motion: reduce) {
	.cr-single-toc__title-line {
		transform: none;
		animation: none;
	}

	.cr-single-toc__chevron {
		transition: none;
	}
}

.cr-single-toc__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.cr-single-toc__item {
	margin: 0;
}

.cr-single-toc__link {
	display: block;
	color: var(--grey, #6e6e6e);
	font-size: 16px;
	line-height: var(--_typography---p2--line-height, 150%);
	letter-spacing: var(--_typography---p2--letter-spacing, -0.32px);
	text-decoration: none;
	transition: color 0.25s ease;
}

.cr-single-toc__link:hover,
.cr-single-toc__link:focus-visible {
	color: var(--secondary, #af7c54);
}

.cr-single-healen .blog-single-details h2,
.cr-single-healen .blog-single-details h3,
.cr-single-healen .blog-single-details h4,
.cr-single-healen .blog-single-details h5,
.cr-single-healen .blog-single-details h6 {
	scroll-margin-top: 32px;
	font-family: var(--_typography---font-family--helvetica-now-display);
	color: var(--black);
	font-weight: var(--_typography---font-weight--regular);
}

.cr-single-healen .blog-single-details h2 {
	font-size: var(--_typography---h4--font-size);
	line-height: var(--_typography---h4--line-height);
	letter-spacing: var(--_typography---h4--letter-spacing);
	margin-top: 16px;
	margin-bottom: 12px;
	padding-top: 8px;
}

.cr-single-healen .blog-single-details h3 {
	font-size: var(--_typography---h5--font-size);
	line-height: var(--_typography---h5--line-height);
	letter-spacing: var(--_typography---h5--letter-spacing);
	margin-top: 16px;
	margin-bottom: 12px;
	padding-top: 6px;
}

.cr-single-healen .blog-single-details h4 {
	font-size: 20px;
	line-height: 130%;
	letter-spacing: -0.4px;
	margin-top: 14px;
	margin-bottom: 10px;
	padding-top: 4px;
}

.cr-single-healen .blog-single-details h5 {
	font-size: 18px;
	line-height: 130%;
	letter-spacing: -0.36px;
	margin-top: 12px;
	margin-bottom: 8px;
	padding-top: 4px;
}

.cr-single-healen .blog-single-details h6 {
	font-size: 16px;
	line-height: 130%;
	letter-spacing: -0.32px;
	margin-top: 12px;
	margin-bottom: 8px;
	padding-top: 4px;
}

.cr-single-healen .blog-single-details a {
	color: var(--secondary, #af7c54);
}

.cr-single-healen .blog-single-details blockquote,
.cr-single-healen .blog-single-details .wp-block-quote {
	box-sizing: border-box;
	margin: 36px 0;
	padding: 28px 32px;
	border: 0;
	border-left: 3px solid var(--secondary, #af7c54);
	border-radius: 0 16px 16px 0;
	background-color: var(--dawn-pink, #f2e9df);
	color: var(--black, #020202);
	font-family: var(--_typography---font-family--helvetica-now-display, Helveticanowdisplay, Arial, sans-serif);
	font-size: var(--_typography---h5--font-size, 24px);
	line-height: var(--_typography---h5--line-height, 120%);
	font-weight: var(--_typography---font-weight--regular, 400);
	letter-spacing: var(--_typography---h5--letter-spacing, -0.48px);
	font-style: normal;
}

.cr-single-healen .blog-single-details blockquote p,
.cr-single-healen .blog-single-details .wp-block-quote p {
	margin: 0 0 12px;
	color: inherit;
	font-size: inherit;
	line-height: inherit;
	font-weight: inherit;
	letter-spacing: inherit;
}

.cr-single-healen .blog-single-details blockquote p:last-child,
.cr-single-healen .blog-single-details .wp-block-quote p:last-child {
	margin-bottom: 0;
}

.cr-single-healen .blog-single-details blockquote cite,
.cr-single-healen .blog-single-details .wp-block-quote cite,
.cr-single-healen .blog-single-details .wp-block-quote__citation {
	display: block;
	margin-top: 16px;
	color: var(--grey, #6e6e6e);
	font-size: var(--_typography---caption--font-size, 14px);
	line-height: var(--_typography---caption--line-height, 140%);
	letter-spacing: var(--_typography---caption--letter-spacing, -0.28px);
	font-style: normal;
	font-weight: var(--_typography---font-weight--medium, 500);
}

.cr-single-healen .blog-single-details blockquote cite::before,
.cr-single-healen .blog-single-details .wp-block-quote cite::before,
.cr-single-healen .blog-single-details .wp-block-quote__citation::before {
	content: '— ';
}

.cr-single-healen .blog-single-details .wp-block-pullquote {
	margin: 40px 0;
	padding: 0;
	border: 0;
	text-align: left;
}

.cr-single-healen .blog-single-details .wp-block-pullquote blockquote {
	margin: 0;
}

.cr-single-healen .blog-single-details ul,
.cr-single-healen .blog-single-details ol {
	color: var(--grey, #6e6e6e);
	margin: 0 0 16px;
	padding-left: 1.25em;
}

.cr-single-healen .blog-single-details li {
	margin-bottom: 0.35em;
}

/* Tables (core + Gutenberg .wp-block-table) */
.cr-single-healen .blog-single-details .wp-block-table,
.cr-single-healen .blog-single-details .wp-block-table.alignwide,
.cr-single-healen .blog-single-details .wp-block-table.alignfull {
	margin: 36px 0 48px;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.cr-single-healen .blog-single-details > table,
.cr-single-healen .blog-single-details figure.wp-block-table {
	margin-bottom: 48px;
}

.cr-single-healen .blog-single-details table,
.cr-single-healen .blog-single-details .wp-block-table table {
	width: 100%;
	min-width: 480px;
	border-collapse: separate;
	border-spacing: 0;
	border: 1px solid var(--secondary-20, #af7c5433);
	border-radius: 16px;
	overflow: hidden;
	background-color: var(--white, #fff);
	font-family: var(--_typography---font-family--helvetica-now-display, Helveticanowdisplay, Arial, sans-serif);
	font-size: 16px;
	line-height: 150%;
	letter-spacing: -0.32px;
}

.cr-single-healen .blog-single-details thead th,
.cr-single-healen .blog-single-details .wp-block-table thead th {
	background-color: var(--secondary, #af7c54);
	color: var(--white, #fff);
	font-weight: var(--_typography---font-weight--medium, 500);
	text-align: left;
	padding: 14px 18px;
	border: 0;
	border-bottom: 1px solid var(--secondary-20, #af7c5433);
	vertical-align: middle;
}

.cr-single-healen .blog-single-details tbody td,
.cr-single-healen .blog-single-details .wp-block-table tbody td,
.cr-single-healen .blog-single-details tfoot td,
.cr-single-healen .blog-single-details .wp-block-table tfoot td {
	color: var(--grey, #6e6e6e);
	padding: 14px 18px;
	border: 0;
	border-bottom: 1px solid var(--secondary-20, #af7c5433);
	background-color: var(--white, #fff);
	vertical-align: top;
}

.cr-single-healen .blog-single-details tbody tr:last-child td,
.cr-single-healen .blog-single-details .wp-block-table tbody tr:last-child td {
	border-bottom: 0;
}

.cr-single-healen .blog-single-details th.has-text-align-center,
.cr-single-healen .blog-single-details td.has-text-align-center,
.cr-single-healen .blog-single-details .wp-block-table th.has-text-align-center,
.cr-single-healen .blog-single-details .wp-block-table td.has-text-align-center {
	text-align: center;
}

.cr-single-healen .blog-single-details th.has-text-align-right,
.cr-single-healen .blog-single-details td.has-text-align-right,
.cr-single-healen .blog-single-details .wp-block-table th.has-text-align-right,
.cr-single-healen .blog-single-details .wp-block-table td.has-text-align-right {
	text-align: right;
}

.cr-single-healen .blog-single-details .wp-block-table figcaption {
	margin-top: 12px;
	color: var(--grey, #6e6e6e);
	font-size: var(--_typography---caption--font-size, 14px);
	line-height: var(--_typography---caption--line-height, 140%);
	letter-spacing: var(--_typography---caption--letter-spacing, -0.28px);
	text-align: center;
}

@media screen and (max-width: 767px) {
	.cr-single-healen .blog-single-details table,
	.cr-single-healen .blog-single-details .wp-block-table table {
		font-size: 15px;
	}

	.cr-single-healen .blog-single-details thead th,
	.cr-single-healen .blog-single-details .wp-block-table thead th,
	.cr-single-healen .blog-single-details tbody td,
	.cr-single-healen .blog-single-details .wp-block-table tbody td,
	.cr-single-healen .blog-single-details tfoot td,
	.cr-single-healen .blog-single-details .wp-block-table tfoot td {
		padding: 12px 14px;
	}
}

/* -------------------------------------------------------------------------
   Rank Math FAQ — match site FAQ accordion language
   ------------------------------------------------------------------------- */

.cr-single-healen .blog-single-details #rank-math-faq,
.cr-single-healen .blog-single-details .rank-math-block {
	margin: 40px 0 8px;
}

.cr-single-healen .blog-single-details .rank-math-list {
	margin: 0;
	padding: 0;
	min-width: 0;
}

.cr-single-healen .blog-single-details .rank-math-list-item {
	margin: 0;
	border-bottom: 1px solid var(--black-10, rgb(2 2 2 / 0.1));
}

.cr-single-healen .blog-single-details .rank-math-list-item:last-child {
	border-bottom: none;
}

.cr-single-healen .blog-single-details .rank-math-question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.25rem;
	margin: 0;
	padding: 1.35rem 0;
	color: var(--black, #020202);
	font-family: var(--_typography---font-family--helvetica-now-display, Helveticanowdisplay, Arial, sans-serif);
	font-size: clamp(1.05rem, 1.5vw, 1.25rem);
	font-weight: var(--_typography---font-weight--regular, 400);
	line-height: 1.35;
	letter-spacing: -0.02em;
	cursor: pointer;
	user-select: none;
}

.cr-single-healen .blog-single-details .rank-math-question:focus-visible {
	outline: 3px solid var(--primary, #e4ff60);
	outline-offset: 4px;
	border-radius: 2px;
}

.cr-single-healen .blog-single-details .rank-math-question__icon {
	position: relative;
	flex: none;
	width: 1rem;
	height: 1rem;
}

.cr-single-healen .blog-single-details .rank-math-question__icon-bar {
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	background-color: currentColor;
	border-radius: 1px;
	transform: translate(-50%, -50%);
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.cr-single-healen .blog-single-details .rank-math-question__icon-bar--h {
	width: 100%;
	height: 1.5px;
}

.cr-single-healen .blog-single-details .rank-math-question__icon-bar--v {
	width: 1.5px;
	height: 100%;
}

.cr-single-healen .blog-single-details .rank-math-list-item.is-open .rank-math-question__icon-bar--v {
	opacity: 0;
	transform: translate(-50%, -50%) scaleY(0);
}

.cr-single-healen .blog-single-details .rank-math-answer {
	overflow: hidden;
	padding: 0 2.5rem 0 0;
	max-height: none;
}

.cr-single-healen .blog-single-details #rank-math-faq.is-enhanced .rank-math-answer {
	max-height: 0;
	padding-right: 2.5rem;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition:
		max-height 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
		opacity 0.25s ease,
		visibility 0.25s ease;
}

.cr-single-healen .blog-single-details #rank-math-faq.is-enhanced .rank-math-list-item.is-open .rank-math-answer {
	max-height: 40rem;
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.cr-single-healen .blog-single-details .rank-math-answer > *:first-child {
	margin-top: 0;
}

.cr-single-healen .blog-single-details .rank-math-answer > *:last-child {
	margin-bottom: 0;
	padding-bottom: 1.5rem;
}

.cr-single-healen .blog-single-details .rank-math-answer,
.cr-single-healen .blog-single-details .rank-math-answer p {
	max-width: 38rem;
	color: var(--grey, #6e6e6e);
	font-family: var(--_typography---font-family--helvetica-now-display, Helveticanowdisplay, Arial, sans-serif);
	font-size: clamp(0.9375rem, 1.2vw, 1.0625rem);
	font-weight: var(--_typography---font-weight--regular, 400);
	line-height: 1.55;
}

.cr-single-healen .blog-single-details .rank-math-answer p {
	margin: 0 0 0.75rem;
}

.cr-single-healen .blog-single-details .rank-math-answer p:last-child {
	margin-bottom: 0;
}

@media screen and (max-width: 599px) {
	.cr-single-healen .blog-single-details .rank-math-question {
		padding: 1.15rem 0;
		gap: 1rem;
	}

	.cr-single-healen .blog-single-details .rank-math-answer {
		padding-right: 0;
	}

	.cr-single-healen .blog-single-details .rank-math-answer > *:last-child {
		padding-bottom: 1.25rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.cr-single-healen .blog-single-details .rank-math-question__icon-bar,
	.cr-single-healen .blog-single-details #rank-math-faq.is-enhanced .rank-math-answer {
		transition: none;
	}
}

.cr-single-healen .cr-single-tags {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px 10px;
	margin-top: 40px;
	padding-top: 28px;
	border-top: 1px solid var(--secondary-20, rgba(175, 124, 84, 0.2));
}

.cr-single-healen .cr-single-tags__label {
	color: var(--grey, #6e6e6e);
	flex-shrink: 0;
}

.cr-single-healen .cr-single-tags__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.cr-single-healen .cr-single-tags__item {
	margin: 0;
}

.cr-single-healen .cr-single-tags__pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 32px;
	padding: 6px 14px;
	border-radius: 999px;
	background-color: var(--dawn-pink, #f2e9df);
	color: var(--black, #020202);
	font-family: var(--_typography---font-family--helvetica-now-display, Helveticanowdisplay, Arial, sans-serif);
	font-size: 14px;
	font-weight: var(--_typography---font-weight--medium, 500);
	line-height: 1.2;
	letter-spacing: -0.28px;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.cr-single-healen .cr-single-tags__pill:hover,
.cr-single-healen .cr-single-tags__pill:focus-visible {
	background-color: var(--secondary, #af7c54);
	color: #fff;
	text-decoration: none;
}

.cr-related-articles__title {
	text-align: center;
	margin-bottom: var(--_perimeters---gaps--gap-11xl, 48px);
	color: var(--black, #020202);
}

.cr-related-articles.blogs.container-full {
	padding-top: var(--_perimeters---spaces--space-10xl, 64px);
	padding-bottom: var(--_perimeters---spaces--space-10xl, 64px);
	background-color: #fffcfa;
}

.cr-related-articles .blog-item-thumb._02 {
	position: relative;
	display: block;
	width: 100%;
	max-width: none;
	flex: 0 0 auto;
	align-self: stretch;
	height: 0 !important;
	padding-bottom: 56.25%; /* 16:9 */
	aspect-ratio: auto;
	overflow: hidden;
	border-radius: 20px;
}

.cr-related-articles .blog-item-thumb._02 .blog-item-img,
.cr-related-articles .blog-item-thumb._02 img {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
	object-position: center;
}

.cr-related-articles .blog-item._02 {
	height: 100%;
}

.cr-related-articles .collection-link {
	display: flex;
	flex-direction: column;
	height: 100%;
	gap: var(--_perimeters---gaps--gap-xxl, 20px);
}

.cr-related-articles .blog-item-info._02 {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	max-width: none;
	height: 100%;
}

.cr-related-articles__date {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin: 0;
	margin-top: auto;
	color: var(--grey, #6e6e6e);
}

.cr-related-articles__meta-sep {
	flex: none;
}

.cr-related-articles__cta {
	margin-top: var(--_perimeters---spaces--space-8xl, 48px);
}

/* Default: dark text header (blog/archive style). Light (white text) only when
   body has .cr-header-light — opt in via `curareach_header_light` filter.
   Must live in @layer components so !important can override Tailwind parent rules. */
@layer components {
	body.cr-header-dark .cr-header--overlay {
		color: var(--black, #020202);
	}

	/* Solid bar on blog archive shells only */
	body.blog.cr-header-dark .cr-header,
	body.blog.cr-header-dark .cr-header--overlay,
	body.archive.cr-header-dark .cr-header,
	body.archive.cr-header-dark .cr-header--overlay,
	body.category.cr-header-dark .cr-header,
	body.category.cr-header-dark .cr-header--overlay,
	body.tag.cr-header-dark .cr-header,
	body.tag.cr-header-dark .cr-header--overlay,
	body.author.cr-header-dark .cr-header,
	body.author.cr-header-dark .cr-header--overlay,
	body.date.cr-header-dark .cr-header,
	body.date.cr-header-dark .cr-header--overlay {
		background-color: var(--white, #fff);
	}

	body.cr-header-dark .cr-header__logo,
	body.cr-header-dark .cr-header__logo a,
	body.cr-header-dark .cr-header__logo .wp-block-site-title a {
		color: var(--black, #020202) !important;
	}

	body.cr-header-dark .cr-header__logo a:hover,
	body.cr-header-dark .cr-header__logo .wp-block-site-title a:hover {
		color: var(--secondary, #af7c54) !important;
	}

	/*
	 * Mobile menu logo/toggle — driven by nav shutter classes so chrome
	 * never paints ahead of the clip-path. No separate dark header bar:
	 * the nav panel’s own background shutters underneath the logo.
	 */
	@media (max-width: 1099px) {
		body:has(.cr-header__nav.is-open.is-visible) .cr-header__logo,
		body:has(.cr-header__nav.is-open.is-visible) .cr-header__logo a,
		body:has(.cr-header__nav.is-open.is-visible) .cr-header__logo .wp-block-site-title a,
		body:has(.cr-header__nav.is-open.is-closing) .cr-header__logo,
		body:has(.cr-header__nav.is-open.is-closing) .cr-header__logo a,
		body:has(.cr-header__nav.is-open.is-closing) .cr-header__logo .wp-block-site-title a {
			color: var(--white, #fff) !important;
		}

		body:has(.cr-header__nav.is-open.is-visible) .cr-header__logo a:hover,
		body:has(.cr-header__nav.is-open.is-visible) .cr-header__logo .wp-block-site-title a:hover,
		body:has(.cr-header__nav.is-open.is-closing) .cr-header__logo a:hover,
		body:has(.cr-header__nav.is-open.is-closing) .cr-header__logo .wp-block-site-title a:hover,
		body.cr-header-dark:has(.cr-header__nav.is-open.is-visible) .cr-header__logo a:hover,
		body.cr-header-dark:has(.cr-header__nav.is-open.is-closing) .cr-header__logo a:hover {
			color: var(--primary, #e4ff60) !important;
		}

		body:has(.cr-header__nav.is-open.is-visible) .cr-header__bar,
		body:has(.cr-header__nav.is-open.is-closing) .cr-header__bar {
			position: relative;
			z-index: 160;
			background-color: transparent;
		}

		body:has(.cr-header__nav.is-open.is-visible) .cr-header__brand,
		body:has(.cr-header__nav.is-open.is-visible) .cr-header__right,
		body:has(.cr-header__nav.is-open.is-closing) .cr-header__brand,
		body:has(.cr-header__nav.is-open.is-closing) .cr-header__right {
			position: relative;
			z-index: 161;
		}

		body:has(.cr-header__nav.is-open.is-visible) .cr-header__toggle,
		body:has(.cr-header__nav.is-open.is-closing) .cr-header__toggle {
			border-color: transparent !important;
			color: var(--white, #fff) !important;
			background-color: rgba(255, 255, 255, 0.12) !important;
		}
	}

	/* Desktop horizontal nav only — slide-out (≤1099px) keeps homepage lime active */
	@media (min-width: 1100px) {
		body.cr-header-dark .cr-header__menu a,
		body.cr-header-dark .cr-header__nav .wp-block-navigation-item__content {
			color: var(--black, #020202) !important;
		}

		body.cr-header-dark .cr-header__menu a:hover,
		body.cr-header-dark .cr-header__menu a:focus-visible,
		body.cr-header-dark .cr-header__menu .current-menu-item > a,
		body.cr-header-dark .cr-header__menu .current-menu-ancestor > a,
		body.cr-header-dark .cr-header__nav .wp-block-navigation-item__content:hover,
		body.cr-header-dark .cr-header__nav .wp-block-navigation-item__content:focus-visible,
		body.cr-header-dark .cr-header__nav .current-menu-item > .wp-block-navigation-item__content,
		body.cr-header-dark .cr-header__nav .current-menu-ancestor > .wp-block-navigation-item__content {
			color: var(--secondary, #af7c54) !important;
		}

		.cr-header__menu-arrow {
			transform-origin: center center;
			transition: transform 0.3s ease;
		}

		.cr-header__menu .menu-item-has-children:hover > .cr-header__submenu-toggle .cr-header__menu-arrow,
		.cr-header__menu .menu-item-has-children:focus-within > .cr-header__submenu-toggle .cr-header__menu-arrow,
		.cr-header__menu .menu-item-has-children.is-submenu-open > .cr-header__submenu-toggle .cr-header__menu-arrow,
		.cr-header__submenu-toggle[aria-expanded='true'] .cr-header__menu-arrow {
			transform: rotate(180deg);
		}
	}

	body.cr-header-dark .cr-header__cta {
		color: var(--black, #020202) !important;
	}

	body.cr-header-dark .cr-header__cta:hover,
	body.cr-header-dark .cr-header__cta:focus-visible {
		color: var(--black, #020202) !important;
	}

	body.cr-header-dark .cr-header__cta-line {
		background-color: currentColor;
	}

	body.cr-header-dark .cr-header__toggle {
		border-color: rgb(2 2 2 / 0.12) !important;
		color: var(--black, #020202) !important;
		background-color: rgb(2 2 2 / 0.06) !important;
	}

	/* Open mobile menu matches homepage on every page */
	@media (max-width: 1099px) {
		body.cr-nav-open .cr-header__submenu-toggle,
		body.cr-nav-open .cr-header__menu-arrow {
			color: var(--white, #fff) !important;
		}

		body.cr-nav-open .cr-header__submenu-toggle[aria-expanded='true'],
		body.cr-nav-open .cr-header__submenu-toggle[aria-expanded='true'] .cr-header__menu-arrow {
			color: var(--black, #020202) !important;
		}

		/* Flip chevron when submenu is open (keep on site.css so filemtime cache-bust applies) */
		body.cr-nav-open .cr-header__menu-arrow {
			transform-origin: center center;
			transition: transform 0.3s ease;
		}

		body.cr-nav-open .cr-header__menu .menu-item-has-children.is-submenu-open > .cr-header__submenu-toggle .cr-header__menu-arrow,
		body.cr-nav-open .cr-header__submenu-toggle[aria-expanded='true'] .cr-header__menu-arrow {
			transform: rotate(180deg);
		}

		body.cr-nav-open .cr-header__menu-arrow svg,
		body.cr-nav-open .cr-header__menu-arrow svg path {
			stroke: currentColor;
			color: inherit;
		}

		body.cr-nav-open .cr-header__menu > .menu-item > a,
		body.cr-nav-open .cr-header__nav .wp-block-navigation-item__content {
			color: var(--white, #fff) !important;
		}

		body.cr-nav-open .cr-header__menu > .menu-item > a:hover,
		body.cr-nav-open .cr-header__menu > .menu-item > a:focus-visible,
		body.cr-nav-open .cr-header__menu > .current-menu-item > a,
		body.cr-nav-open .cr-header__menu > .current-menu-ancestor > a,
		body.cr-nav-open .cr-header__nav .wp-block-navigation-item__content:hover,
		body.cr-nav-open .cr-header__nav .wp-block-navigation-item__content:focus-visible,
		body.cr-nav-open .cr-header__nav .current-menu-item > .wp-block-navigation-item__content,
		body.cr-nav-open .cr-header__nav .current-menu-ancestor > .wp-block-navigation-item__content {
			color: var(--primary, #e4ff60) !important;
		}

		body.cr-nav-open .cr-header__menu .sub-menu a {
			color: rgb(255 255 255 / 0.72) !important;
		}

		body.cr-nav-open .cr-header__menu .sub-menu a:hover,
		body.cr-nav-open .cr-header__menu .sub-menu a:focus-visible,
		body.cr-nav-open .cr-header__menu .sub-menu .current-menu-item > a {
			color: var(--primary, #e4ff60) !important;
		}
	}
}

/* -------------------------------------------------------------------------- */
/* Default pages — match header width (1340px + side gutters)                 */
/* -------------------------------------------------------------------------- */

.cr-page-shell {
	width: 100%;
	padding-top: calc(76px + var(--_perimeters---spaces--space-8xl, 48px));
	padding-bottom: var(--_perimeters---spaces--space-12xl, 96px);
	box-sizing: border-box;
}

.cr-page__header {
	margin: 0 0 var(--_perimeters---spaces--space-7xl, 40px);
}

.cr-page__title {
	margin: 0;
	color: var(--black, #020202);
	font-family: var(--_typography---font-family--helvetica-now-display, Helveticanowdisplay, Arial, sans-serif);
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 500;
	letter-spacing: -0.02em;
	line-height: 1.15;
}

.cr-page__content {
	color: var(--grey, #6e6e6e);
}

.cr-page__content > *:first-child {
	margin-top: 0;
}

.cr-page__content > *:last-child {
	margin-bottom: 0;
}

@media screen and (max-width: 767px) {
	.cr-page-shell {
		padding-top: calc(64px + var(--_perimeters---spaces--space-6xl, 32px));
		padding-bottom: var(--_perimeters---spaces--space-9xl, 80px);
	}

	.cr-page__header {
		margin-bottom: var(--_perimeters---spaces--space-5xl, 24px);
	}
}

/* Horizontal inset for Healen blog shells */
.cr-single-healen .blog-single.container-full,
.cr-related-articles.container-full,
.cr-blog-archive .blogs.container-full {
	padding-left: var(--_perimeters---containers--container-xs, 30px);
	padding-right: var(--_perimeters---containers--container-xs, 30px);
	box-sizing: border-box;
}

/* Single hero — match header column (1340px + side gutters) */
.cr-single-healen .blog-hero-single.container-full {
	padding-top: var(--_perimeters---spaces--space-9xl, 80px);
	padding-left: 0;
	padding-right: 0;
	box-sizing: border-box;
}

.cr-single-healen .blog-hero-single-content {
	width: 100%;
	max-width: var(--_perimeters---containers--container-lg, 1340px);
	margin-right: var(--_perimeters---containers--container-xs, 30px);
	margin-left: var(--_perimeters---containers--container-xs, 30px);
	padding-top: var(--_perimeters---spaces--space-9xl, 80px);
	box-sizing: border-box;
}

/* Blog archive hero — full-bleed white, content aligns to navbar width */
.cr-blog-archive .blog-hero.container-full {
	padding-top: 76px; /* clear absolute header */
	padding-bottom: 0;
	padding-left: 0;
	padding-right: 0;
	box-sizing: border-box;
	background-color: var(--white, #fff);
}

.cr-blog-archive .blog-hero-content {
	width: 100%;
	max-width: var(--_perimeters---containers--container-lg, 1340px);
	margin-right: var(--_perimeters---containers--container-xs, 30px);
	margin-left: var(--_perimeters---containers--container-xs, 30px);
	padding-top: var(--_perimeters---spaces--space-9xl);
	padding-bottom: var(--_perimeters---spaces--space-8xl);
	box-sizing: border-box;
	background-color: var(--white, #fff);
}

.cr-blog-archive .blogs.container-full {
	padding-top: var(--_perimeters---spaces--space-12xl);
	padding-bottom: var(--_perimeters---spaces--space-12xl);
	background-color: transparent;
}

.cr-blog-archive .blog-tabs-menu {
	box-shadow: 0 8px 28px rgba(2, 2, 2, 0.06), 0 2px 8px rgba(2, 2, 2, 0.04);
}

.cr-blog-archive .blog-tabs-link {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	box-sizing: border-box;
	text-decoration: none;
	font-weight: 400;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.cr-blog-archive .blog-tabs-link.w--current {
	font-weight: 400;
}

.cr-blog-archive .blog-tabs-link:hover,
.cr-blog-archive .blog-tabs-link:focus-visible {
	color: var(--black, #020202);
	border-color: var(--black, #020202);
}

.cr-blog-archive .blog-tabs-link.w--current:hover,
.cr-blog-archive .blog-tabs-link.w--current:focus-visible {
	color: var(--white, #fff);
	border-color: var(--black, #020202);
}

.cr-blog-archive .blog-item > .collection-link {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	gap: var(--_perimeters---gaps--gap-4xl, 24px);
	width: 100%;
	color: inherit;
	text-decoration: none;
}

.cr-blog-archive .blog-item-info {
	grid-column-gap: 10px;
	grid-row-gap: 10px;
	justify-content: space-between;
}

.cr-blog-archive .blog-item-head {
	grid-column-gap: 6px;
	grid-row-gap: 6px;
}

.cr-blog-archive .blog-item-category.p2-regular,
.cr-blog-archive .blog-item-text,
.cr-blog-archive .blog-item-text.c1-text {
	margin: 0;
}

.cr-blog-archive .blog-item-thumb {
	position: relative;
	flex: 0 0 280px;
	align-self: stretch;
	width: 280px;
	max-width: 280px;
	min-height: 140px;
	height: auto !important;
	aspect-ratio: auto;
	overflow: hidden;
	border-radius: 12px;
}

.cr-blog-archive .blog-item-img {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
	object-position: center;
	transform: scale(1);
	transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
	will-change: transform;
}

.cr-blog-archive .blog-item > .collection-link:hover .blog-item-img,
.cr-blog-archive .blog-item > .collection-link:focus-visible .blog-item-img {
	transform: scale(1.06);
}

@media (prefers-reduced-motion: reduce) {
	.cr-blog-archive .blog-item-img {
		transition: none;
		will-change: auto;
	}

	.cr-blog-archive .blog-item > .collection-link:hover .blog-item-img,
	.cr-blog-archive .blog-item > .collection-link:focus-visible .blog-item-img {
		transform: none;
	}
}

.cr-blog-archive .blog-item-title {
	margin: 0;
	transition: color 0.2s ease;
}

.cr-blog-archive .blog-item > .collection-link:hover .blog-item-title,
.cr-blog-archive .blog-item > .collection-link:focus-visible .blog-item-title {
	color: var(--secondary, #af7c54);
}

.cr-blog-archive__date {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin: 0;
	color: var(--black, #020202);
}

.cr-blog-archive__meta-sep {
	flex: none;
}

.cr-blog-archive__pagination {
	margin-top: var(--_perimeters---spaces--space-8xl, 48px);
}

.cr-blog-archive__pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
}

.cr-blog-archive__pagination a,
.cr-blog-archive__pagination .current {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	padding: 8px 14px;
	border: 1px solid var(--secondary-20, rgba(175, 124, 84, 0.2));
	border-radius: 8px;
	color: var(--grey, #6e6e6e);
	text-decoration: none;
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: var(--_typography---p2--font-size, 16px);
	line-height: 1.4;
}

.cr-blog-archive__pagination a:hover,
.cr-blog-archive__pagination a:focus-visible {
	color: var(--black, #020202);
	border-color: var(--black, #020202);
}

.cr-blog-archive__pagination .current {
	background-color: var(--black, #020202);
	border-color: var(--black, #020202);
	color: var(--white, #fff);
}

@media screen and (max-width: 991px) {
	.cr-blog-archive .blog-item > .collection-link {
		flex-flow: wrap-reverse;
	}

	.cr-blog-archive .blog-item-thumb {
		flex: 0 0 auto;
		align-self: stretch;
		width: 100%;
		max-width: 100%;
		min-height: 0;
		height: auto !important;
		aspect-ratio: 16 / 9;
	}
}

@media screen and (max-width: 767px) {
	.cr-related-articles__title {
		text-align: left;
		margin-bottom: var(--_perimeters---spaces--space-4xl, 32px);
	}

	.cr-blog-archive .blog-hero.container-full {
		padding-top: 64px;
	}
}

/* -------------------------------------------------------------------------
   Care dial (homepage statement)
   ------------------------------------------------------------------------- */

.cr-care-dial {
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100vh;
	min-height: 100vh;
	background-color: var(--white, #fff);
	padding: 0 var(--_perimeters---containers--container-xs, 30px);
	box-sizing: border-box;
}

.cr-care-dial__stage {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: min(85vh, 100%, 56rem);
	aspect-ratio: 1;
	height: auto;
	max-height: 85vh;
	margin: 0 auto;
	container-type: size;
	container-name: care-dial;
}

.cr-care-dial__dial-wrap {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.cr-care-dial__dial {
	width: 100%;
	height: 100%;
	will-change: transform, opacity, filter;
	/* Soft angular fade over the tick ring (replaces SVG foreignObject conic fill). */
	-webkit-mask-image: conic-gradient(
		from 90deg,
		#000 0deg,
		rgb(0 0 0 / 0.12) 360deg
	);
	mask-image: conic-gradient(
		from 90deg,
		#000 0deg,
		rgb(0 0 0 / 0.12) 360deg
	);
}

.cr-care-dial__dial svg {
	display: block;
	width: 100%;
	height: 100%;
}

/* Keep copy inside the dial’s open center (~inner hole ≈ 80% of ring). */
.cr-care-dial__content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: clamp(0.65rem, 3.2cqmin, 1.5rem);
	width: 52%;
	max-width: none;
	max-height: 58%;
	padding: clamp(0.35rem, 1.8cqmin, 1rem);
	text-align: center;
	box-sizing: border-box;
}

.cr-care-dial__title {
	margin: 0;
	width: 100%;
	max-width: none;
	color: var(--black, #020202);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: clamp(1.15rem, 5.8cqmin, 2.5rem);
	font-weight: 700;
	line-height: 1.12;
	letter-spacing: -0.02em;
}

.cr-care-dial__lede {
	margin: 0;
	width: 100%;
	max-width: none;
	color: var(--grey, #6e6e6e);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: clamp(0.8rem, 2.35cqmin, 1.125rem);
	font-weight: 400;
	line-height: 1.45;
}

.cr-care-dial__actions {
	margin-top: clamp(0.15rem, 1.2cqmin, 0.65rem);
	flex-shrink: 0;
}

.cr-care-dial__actions .wp-block-button__link {
	min-width: 0;
	padding-inline: clamp(1rem, 4cqmin, 1.75rem);
	font-size: clamp(0.8rem, 2.1cqmin, 1rem);
	background-color: var(--black, #020202) !important;
	color: var(--white, #fff) !important;
}

.cr-care-dial__actions .wp-block-button__link:hover,
.cr-care-dial__actions .wp-block-button__link:focus-visible {
	background-color: var(--black, #020202) !important;
	color: var(--white, #fff) !important;
	opacity: 0.88;
}

.cr-care-dial [data-care-dial-fade] {
	will-change: transform, opacity, filter;
}

@media screen and (max-width: 767px) {
	.cr-care-dial {
		height: auto;
		min-height: 0;
		background-color: transparent;
		background-image: radial-gradient(
			ellipse 85% 75% at 50% 48%,
			rgb(242 233 223 / 0.85) 0%,
			rgb(242 233 223 / 0.35) 42%,
			transparent 72%
		);
		padding-top: var(--_perimeters---spaces--space-5xl, 48px);
		padding-bottom: var(--_perimeters---spaces--space-5xl, 48px);
	}

	.cr-care-dial__stage {
		width: min(92vw, 28rem);
		max-height: none;
	}

	.cr-care-dial__stage::before {
		content: "";
		position: absolute;
		inset: 8% 10%;
		z-index: 0;
		border-radius: 50%;
		background: radial-gradient(
			circle at 50% 50%,
			rgb(228 255 96 / 0.22) 0%,
			rgb(228 255 96 / 0.08) 38%,
			transparent 68%
		);
		pointer-events: none;
	}

	.cr-care-dial__content {
		width: 54%;
		max-height: 60%;
		gap: clamp(0.55rem, 3cqmin, 1.1rem);
	}
}

@media (prefers-reduced-motion: reduce) {
	.cr-care-dial__dial,
	.cr-care-dial [data-care-dial-fade] {
		will-change: auto;
	}
}

/* -------------------------------------------------------------------------
   Glass spotlight (homepage — photo backdrop + overlay cards)
   ------------------------------------------------------------------------- */

.cr-glass-spotlight {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	padding-top: var(--_perimeters---spaces--space-12xl);
	padding-bottom: var(--_perimeters---spaces--space-12xl);
	padding-left: 0;
	padding-right: 0;
	box-sizing: border-box;
	color: var(--white, #fff);
}

.cr-glass-spotlight__media {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
}

.cr-glass-spotlight__bg {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 62% 42%;
}

.cr-glass-spotlight__veil {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgb(2 2 2 / 0.42) 0%, rgb(2 2 2 / 0.18) 38%, rgb(2 2 2 / 0.28) 100%);
}

.cr-glass-spotlight__wash {
	position: absolute;
	inset: auto 0 0;
	height: 42%;
	background: linear-gradient(
		180deg,
		transparent 0%,
		rgb(175 124 84 / 0.28) 45%,
		rgb(144 96 57 / 0.55) 100%
	);
}

.cr-glass-spotlight__inner {
	position: relative;
	z-index: 1;
}

.cr-glass-spotlight__intro {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: clamp(8rem, 16vw, 13rem);
	max-width: 40rem;
	margin: 0 auto clamp(2.5rem, 5vw, 3.75rem);
	text-align: center;
}

.cr-glass-spotlight__title {
	margin: 0;
	color: var(--white, #fff);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: clamp(1.85rem, 4.2vw, 3rem);
	font-weight: 400;
	line-height: 1.15;
	letter-spacing: -0.02em;
	text-wrap: balance;
}

.cr-glass-spotlight__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	margin-top: 0;
}

.cr-glass-spotlight__actions .wp-block-button__link {
	min-width: 9.5rem;
}

.cr-glass-spotlight__actions .wp-block-button:not(.is-style-outline) .wp-block-button__link {
	background-color: var(--primary, #e4ff60) !important;
	color: var(--black, #020202) !important;
}

.cr-glass-spotlight__actions .wp-block-button:not(.is-style-outline) .wp-block-button__link:hover,
.cr-glass-spotlight__actions .wp-block-button:not(.is-style-outline) .wp-block-button__link:focus-visible {
	background-color: var(--black, #020202) !important;
	color: var(--white, #fff) !important;
}

.cr-glass-spotlight__cta--light .wp-block-button__link {
	border-color: var(--white, #fff) !important;
	background-color: var(--white, #fff) !important;
	color: var(--black, #020202) !important;
}

.cr-glass-spotlight__cta--light .wp-block-button__link:hover,
.cr-glass-spotlight__cta--light .wp-block-button__link:focus-visible {
	border-color: var(--black, #020202) !important;
	background-color: var(--black, #020202) !important;
	color: var(--white, #fff) !important;
}

.cr-glass-spotlight__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
	grid-template-rows: minmax(0, 1fr) minmax(0, 1fr);
	gap: 1rem;
	align-items: stretch;
	width: 100%;
	max-width: 1064px;
	margin-left: auto;
	margin-right: auto;
}

.cr-glass-card {
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	min-height: 0;
	border: 1px solid rgb(255 255 255 / 0.22);
	border-radius: 28px;
	background: rgb(255 255 255 / 0.12);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	box-shadow: 0 18px 48px rgb(2 2 2 / 0.18);
}

.cr-glass-card--tall {
	grid-row: 1 / span 2;
	min-height: 42rem;
	border: 0;
}

.cr-glass-card--tall .cr-glass-card__photo {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.cr-glass-card--tall .cr-glass-card__photo::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgb(2 2 2 / 0.55) 0%, rgb(2 2 2 / 0.15) 42%, rgb(2 2 2 / 0.62) 100%);
}

.cr-glass-card--tall .cr-glass-card__photo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
}

.cr-glass-card--tall .cr-glass-card__body {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: var(--_perimeters---spaces--space-4xl, 32px);
	background:
		radial-gradient(
			ellipse 130% 110% at 0% 0%,
			rgb(2 2 2 / 0.58) 0%,
			rgb(2 2 2 / 0.32) 32%,
			rgb(2 2 2 / 0.12) 58%,
			transparent 78%
		),
		linear-gradient(
			145deg,
			rgb(2 2 2 / 0.28) 0%,
			rgb(2 2 2 / 0.1) 42%,
			transparent 72%
		);
}

.cr-glass-card--tall .cr-glass-card__title {
	max-width: 21rem;
}

.cr-glass-card--tall .cr-glass-card__text {
	max-width: 17.5rem;
}

.cr-glass-card--tall .cr-glass-card__cta {
	margin-top: auto;
	padding-top: 1.5rem;
	text-align: left;
	width: 100%;
}

.cr-glass-card--tall .cr-glass-card__cta .wp-block-button {
	width: 100%;
}

.cr-glass-card--tall .cr-glass-card__cta .wp-block-button__link {
	display: inline-flex;
	width: 100%;
	justify-content: center;
	padding-block: 1.15rem;
	padding-inline: 1.5rem;
	font-size: 1.0625rem;
	background-color: var(--black, #020202) !important;
	color: var(--white, #fff) !important;
}

.cr-glass-card--tall .cr-glass-card__cta .wp-block-button__link:hover,
.cr-glass-card--tall .cr-glass-card__cta .wp-block-button__link:focus-visible {
	background-color: var(--primary, #e4ff60) !important;
	color: var(--black, #020202) !important;
}

.cr-glass-card--split {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
	min-height: 0;
	height: 100%;
	background: rgb(90 55 30 / 0.28);
}

.cr-glass-card--split .cr-glass-card__copy {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
	padding: var(--_perimeters---spaces--space-4xl, 32px);
}

.cr-glass-card--split .cr-glass-card__title {
	font-size: clamp(1.2rem, 2.2vw, 1.55rem);
}

.cr-glass-card--split .cr-glass-card__text {
	margin: 0;
	max-width: 11.5rem;
	font-size: clamp(0.8125rem, 1.1vw, 0.875rem);
	line-height: 1.45;
	color: rgb(255 255 255 / 0.78);
}

.cr-glass-card--split .cr-glass-card__photo {
	position: relative;
	align-self: stretch;
	min-height: 0;
	overflow: hidden;
	padding-top: 1.25rem;
}

.cr-glass-card--split .cr-glass-card__photo::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background: radial-gradient(
		ellipse 95% 85% at 100% 100%,
		rgb(2 2 2 / 0.55) 0%,
		rgb(2 2 2 / 0.28) 32%,
		rgb(2 2 2 / 0.08) 58%,
		transparent 78%
	);
}

.cr-glass-card--split .cr-glass-card__photo img {
	position: absolute;
	top: auto;
	right: 0.75rem;
	bottom: 0;
	left: 0;
	display: block;
	width: auto;
	max-width: calc(100% - 0.75rem);
	height: 93%;
	margin-inline: auto 0;
	object-fit: contain;
	object-position: right bottom;
}

.cr-glass-card__photo--tone {
	background:
		radial-gradient(ellipse at 30% 40%, rgb(255 214 196 / 0.85) 0%, transparent 55%),
		radial-gradient(ellipse at 70% 70%, rgb(196 140 110 / 0.75) 0%, transparent 50%),
		linear-gradient(145deg, #d4a574 0%, #8f5e42 55%, #6b4030 100%);
}

.cr-glass-card--chart {
	justify-content: space-between;
	gap: 0.85rem;
	min-height: 0;
	height: 100%;
	padding: var(--_perimeters---spaces--space-4xl, 32px);
	background: rgb(90 55 30 / 0.32);
}

.cr-glass-card--chart .cr-glass-card__text {
	margin: 0;
	max-width: 28rem;
}

.cr-glass-card__title {
	margin: 0;
	color: var(--white, #fff);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: clamp(1.4rem, 2.6vw, 1.85rem);
	font-weight: 400;
	line-height: 1.25;
	letter-spacing: -0.02em;
}

.cr-glass-card__text {
	margin: 0.65rem 0 0;
	color: rgb(255 255 255 / 0.88);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: clamp(0.9rem, 1.3vw, 1rem);
	font-weight: 400;
	line-height: 1.45;
}

.cr-glass-card__chart {
	position: relative;
	width: 100%;
}

.cr-glass-card__chart img {
	display: block;
	width: 100%;
	height: auto;
}

@media screen and (max-width: 991px) {
	.cr-glass-spotlight__grid {
		grid-template-columns: 1fr 1fr;
	}

	.cr-glass-card--tall {
		min-height: 30rem;
	}
}

@media screen and (min-width: 768px) and (max-width: 991px) {
	.cr-glass-card--tall .cr-glass-card__photo img {
		object-position: center;
	}
}

@media screen and (max-width: 767px) {
	.cr-glass-spotlight {
		padding-top: 3.25rem;
		padding-bottom: 3.25rem;
	}

	.cr-glass-spotlight__intro {
		margin-bottom: 1.75rem;
	}

	.cr-glass-spotlight__grid {
		grid-template-columns: 1fr;
		grid-template-rows: none;
		gap: 0.85rem;
	}

	.cr-glass-card--tall {
		grid-row: auto;
		min-height: 26rem;
	}

	.cr-glass-card--split {
		grid-template-columns: 1.1fr 0.9fr;
		height: auto;
		min-height: 14.5rem;
	}

	.cr-glass-card--tall .cr-glass-card__body,
	.cr-glass-card--split .cr-glass-card__copy,
	.cr-glass-card--chart {
		padding: 1.25rem;
	}

	.cr-glass-card--split .cr-glass-card__copy {
		gap: 0.65rem;
		justify-content: space-between;
	}

	.cr-glass-card--split .cr-glass-card__title {
		font-size: 1.1rem;
		line-height: 1.25;
	}

	.cr-glass-card--split .cr-glass-card__text {
		font-size: 0.8125rem;
		line-height: 1.4;
		max-width: none;
	}

	.cr-glass-card--split .cr-glass-card__photo {
		padding-top: 0;
	}

	.cr-glass-card--split .cr-glass-card__photo img {
		height: 100%;
		max-width: 100%;
		right: 0;
	}

	.cr-glass-card--chart {
		min-height: 11.5rem;
	}

	.cr-glass-card {
		border-radius: 22px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.cr-glass-spotlight,
	.cr-glass-card {
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
	}
}

/* -------------------------------------------------------------------------
   Feature scroll (homepage — bleed visuals + fading copy)
   ------------------------------------------------------------------------- */

.cr-feature-scroll {
	position: relative;
	background-color: #fdfaf6;
	color: var(--black, #020202);
}

.cr-feature-scroll__pin {
	position: relative;
	width: 100%;
}

.cr-feature-scroll__layout {
	position: relative;
	width: 100%;
}

.cr-feature-scroll__panel {
	display: flex;
	flex-direction: column;
	gap: 1.15rem;
}

.cr-feature-scroll__figure {
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.cr-feature-scroll__figure img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: contain;
	user-select: none;
	pointer-events: none;
}

.cr-feature-scroll__step {
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
}

.cr-feature-scroll__title {
	margin: 0;
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-weight: 700;
	letter-spacing: -0.025em;
	line-height: 1.12;
}

.cr-feature-scroll__desc {
	margin: 0;
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-weight: 400;
	line-height: 1.55;
}

.cr-feature-scroll__progress {
	display: none;
}

.cr-feature-scroll__dot {
	display: block;
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 999px;
	background-color: rgba(253, 250, 246, 0.28);
	transition: width 0.35s ease, background-color 0.35s ease;
}

.cr-feature-scroll__dot.is-active {
	width: 1.65rem;
	background-color: #fdfaf6;
}

/* Mobile — stacked image + details */
@media screen and (max-width: 767px) {
	.cr-feature-scroll__layout {
		display: flex;
		flex-direction: column;
		gap: 0;
		padding:
			2rem
			var(--cr-container-gutter)
			calc(2.75rem + env(safe-area-inset-bottom, 0px));
		min-height: 0;
	}

	.cr-feature-scroll__panel {
		align-items: center;
		gap: 1.15rem;
		padding-block: 2.25rem;
	}

	.cr-feature-scroll__panel + .cr-feature-scroll__panel {
		border-top: 1px solid rgb(2 2 2 / 0.1);
	}

	.cr-feature-scroll__figure {
		padding: 0;
		opacity: 1;
		visibility: visible;
		width: 100%;
		max-width: 22rem;
	}

	.cr-feature-scroll__figure img {
		max-height: min(52vw, 280px);
		object-position: center center;
	}

	.cr-feature-scroll__step {
		align-items: center;
		gap: 0.75rem;
		width: 100%;
		max-width: 20rem;
		margin-inline: auto;
		text-align: center;
		opacity: 1;
		visibility: visible;
	}

	.cr-feature-scroll__title {
		color: var(--black, #020202);
		font-size: clamp(1.4rem, 5.8vw, 1.85rem);
		text-align: center;
	}

	.cr-feature-scroll__desc {
		max-width: none;
		color: rgba(2, 2, 2, 0.62);
		font-size: clamp(0.95rem, 3.5vw, 1.0625rem);
		text-align: center;
	}

	.cr-feature-scroll__progress {
		display: none;
	}
}

/* Tablet — mobile look, side-by-side rows (no pin / brown panel) */
@media screen and (min-width: 768px) and (max-width: 991px) {
	.cr-feature-scroll__layout {
		display: flex;
		flex-direction: column;
		gap: 0;
		padding:
			2.5rem
			var(--cr-container-gutter)
			calc(3rem + env(safe-area-inset-bottom, 0px));
		min-height: 0;
	}

	.cr-feature-scroll__panel {
		display: grid;
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		align-items: center;
		gap: 1.75rem 2rem;
		width: 100%;
		padding-block: 2.5rem;
	}

	.cr-feature-scroll__panel + .cr-feature-scroll__panel {
		border-top: 1px solid rgb(2 2 2 / 0.1);
	}

	.cr-feature-scroll__figure {
		position: relative;
		width: 100%;
		max-width: none;
		padding: 0;
		opacity: 1;
		visibility: visible;
		background: transparent;
	}

	.cr-feature-scroll__figure img {
		width: 100%;
		height: auto;
		max-height: min(42vw, 320px);
		object-fit: contain;
		object-position: center center;
	}

	.cr-feature-scroll__step {
		position: relative;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		justify-content: space-between;
		gap: 1.25rem;
		width: 100%;
		max-width: 22rem;
		min-height: 12rem;
		padding: 0;
		margin: 0;
		text-align: left;
		color: var(--black, #020202);
		opacity: 1;
		visibility: visible;
	}

	.cr-feature-scroll__title {
		color: var(--black, #020202);
		font-size: clamp(1.35rem, 2.8vw, 1.75rem);
		text-align: left;
	}

	.cr-feature-scroll__desc {
		max-width: none;
		color: rgba(2, 2, 2, 0.62);
		font-size: clamp(0.92rem, 1.8vw, 1.05rem);
		text-align: left;
	}

	.cr-feature-scroll__progress {
		display: none;
	}
}

/* Desktop — pinned split layout */
@media screen and (min-width: 992px) {
	.cr-feature-scroll__layout {
		position: relative;
		min-height: 100vh;
		min-height: 100svh;
	}

	.cr-feature-scroll__layout::after {
		content: '';
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		width: 47.5%;
		background-color: var(--secondary, #af7c54);
		z-index: 0;
		pointer-events: none;
	}

	.cr-feature-scroll__panel {
		display: contents;
	}

	.cr-feature-scroll__figure {
		position: absolute;
		top: 0;
		left: 0;
		bottom: 0;
		z-index: 1;
		width: 52.5%;
		padding: clamp(1.5rem, 4vw, 3.5rem) 0 clamp(1.5rem, 4vw, 3.5rem) clamp(0.75rem, 2vw, 1.5rem);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		will-change: opacity;
		background-color: #fdfaf6;
	}

	.cr-feature-scroll__figure.is-active {
		pointer-events: none;
	}

	.cr-feature-scroll__figure img {
		width: 100%;
		height: 100%;
		max-height: min(88vh, 920px);
		object-position: center left;
	}

	.cr-feature-scroll__step {
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		z-index: 1;
		width: 47.5%;
		justify-content: center;
		gap: 0;
		min-height: 0;
		overflow: hidden;
		padding:
			clamp(2rem, 5vh, 3.5rem)
			max(var(--cr-container-gutter), calc((100vw - var(--cr-container-max)) / 2))
			clamp(2rem, 5vh, 3.5rem)
			clamp(1.75rem, 4vw, 3.5rem);
		box-sizing: border-box;
		color: #fdfaf6;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		will-change: opacity;
	}

	.cr-feature-scroll__step::before {
		content: "";
		position: absolute;
		inset: 0;
		z-index: 0;
		pointer-events: none;
		background: radial-gradient(
			ellipse 120% 110% at 100% 100%,
			rgb(2 2 2 / 0.48) 0%,
			rgb(2 2 2 / 0.28) 32%,
			rgb(2 2 2 / 0.1) 58%,
			transparent 78%
		);
	}

	.cr-feature-scroll__step.is-active {
		pointer-events: auto;
	}

	.cr-feature-scroll__step .cr-feature-scroll__title,
	.cr-feature-scroll__step .cr-feature-scroll__desc {
		position: relative;
		z-index: 1;
		max-width: 28rem;
	}

	.cr-feature-scroll__title {
		color: #fdfaf6;
		font-size: clamp(1.85rem, 3.2vw, 2.65rem);
		padding-bottom: var(--_perimeters---spaces--space-8xl, 48px);
	}

	.cr-feature-scroll__desc {
		max-width: 26rem;
		color: rgba(253, 250, 246, 0.72);
		font-size: clamp(1rem, 1.4vw, 1.125rem);
	}

	.cr-feature-scroll__progress {
		display: flex;
		align-items: center;
		justify-content: flex-end;
		gap: 0.5rem;
		position: absolute;
		z-index: 2;
		left: calc(52.5% + clamp(1.75rem, 4vw, 3.5rem));
		bottom: clamp(2.5rem, 6vh, 4.5rem);
		width: min(28rem, calc(47.5% - 4rem));
		margin: 0;
		pointer-events: none;
	}

	/* Pre-JS / no-JS fallback: show first panel only */
	.cr-feature-scroll:not(.is-ready) .cr-feature-scroll__figure.is-active,
	.cr-feature-scroll:not(.is-ready) .cr-feature-scroll__step.is-active {
		opacity: 1;
		visibility: visible;
	}
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
	.cr-feature-scroll__layout::after,
	.cr-feature-scroll__step {
		width: 50%;
	}

	.cr-feature-scroll__figure {
		width: 50%;
	}

	.cr-feature-scroll__step {
		padding-left: clamp(1.25rem, 3vw, 2.25rem);
		padding-right: clamp(1.25rem, 3vw, 2rem);
		min-height: min(22rem, 52vh);
	}

	.cr-feature-scroll__title {
		font-size: clamp(1.55rem, 2.6vw, 2.25rem);
	}

	.cr-feature-scroll__progress {
		left: calc(50% + clamp(1.25rem, 3vw, 2.25rem));
		width: min(24rem, calc(50% - 3rem));
	}
}

@media screen and (min-width: 992px) and (max-height: 720px) {
	.cr-feature-scroll__figure {
		padding-block: clamp(0.75rem, 3vh, 1.75rem);
	}

	.cr-feature-scroll__step {
		justify-content: flex-start;
		gap: 1.25rem;
		min-height: min(16rem, 46vh);
		padding-block: clamp(1.25rem, 4vh, 2.5rem);
	}

	.cr-feature-scroll__title {
		font-size: clamp(1.4rem, 3.2vh, 2rem);
	}

	.cr-feature-scroll__progress {
		bottom: clamp(1.25rem, 4vh, 2.5rem);
	}
}

@media (prefers-reduced-motion: reduce) {
	.cr-feature-scroll__figure,
	.cr-feature-scroll__step,
	.cr-feature-scroll__dot {
		will-change: auto;
		transition: none;
	}
}

@media screen and (min-width: 992px) and (prefers-reduced-motion: reduce) {
	.cr-feature-scroll.is-reduced-motion .cr-feature-scroll__layout {
		display: flex;
		flex-direction: column;
		min-height: 0;
		gap: 2.5rem;
		padding: 3rem max(var(--cr-container-gutter), calc((100vw - var(--cr-container-max)) / 2));
	}

	.cr-feature-scroll.is-reduced-motion .cr-feature-scroll__layout::after {
		display: none;
	}

	.cr-feature-scroll.is-reduced-motion .cr-feature-scroll__panel {
		display: flex;
		flex-direction: row;
		align-items: center;
		gap: 2rem;
	}

	.cr-feature-scroll.is-reduced-motion .cr-feature-scroll__figure,
	.cr-feature-scroll.is-reduced-motion .cr-feature-scroll__step {
		position: relative;
		top: auto;
		left: auto;
		right: auto;
		bottom: auto;
		width: 50%;
		height: auto;
		min-height: 0;
		opacity: 1;
		visibility: visible;
		padding: 0;
	}

	.cr-feature-scroll.is-reduced-motion .cr-feature-scroll__step {
		color: var(--black, #020202);
	}

	.cr-feature-scroll.is-reduced-motion .cr-feature-scroll__title {
		color: var(--black, #020202);
	}

	.cr-feature-scroll.is-reduced-motion .cr-feature-scroll__desc {
		color: rgba(2, 2, 2, 0.62);
	}

	.cr-feature-scroll.is-reduced-motion .cr-feature-scroll__progress {
		display: none;
	}
}

/* -------------------------------------------------------------------------- */
/* Legal documents (Terms / Privacy) — Healen .terms layout                   */
/* -------------------------------------------------------------------------- */

.cr-legal .terms.container-full {
	background-color: var(--background, #faf5ef);
}

.cr-legal .terms-item {
	align-items: center;
	text-align: center;
}

.cr-legal .terms-item .heading-01 {
	color: var(--black, #020202);
}

.cr-legal .terms-item-text {
	margin: 0;
}

.cr-legal .terms-content {
	color: var(--grey, #6e6e6e);
}

.cr-legal .terms-content > *:first-child {
	margin-top: 0;
}

.cr-legal .terms-content h2,
.cr-legal .terms-content .wp-block-heading {
	margin: 48px 0 14px;
	color: var(--black, #020202);
	font-family: var(--_typography---font-family--helvetica-now-display, Helveticanowdisplay, Arial, sans-serif);
	font-size: var(--_typography---h5--font-size, 24px);
	line-height: var(--_typography---h5--line-height, 120%);
	font-weight: var(--_typography---font-weight--medium, 500);
	letter-spacing: var(--_typography---h5--letter-spacing, -0.48px);
}

.cr-legal .terms-content h2:first-child,
.cr-legal .terms-content .wp-block-heading:first-child {
	margin-top: 0;
}

.cr-legal .terms-content p {
	margin: 0 0 0;
	color: var(--grey, #6e6e6e);
	font-family: var(--_typography---font-family--helvetica-now-display, Helveticanowdisplay, Arial, sans-serif);
	font-size: var(--_typography---p2--font-size, 16px);
	line-height: var(--_typography---p2--line-height, 140%);
	font-weight: var(--_typography---font-weight--regular, 400);
	letter-spacing: var(--_typography---p2--letter-spacing, -0.32px);
}

.cr-legal .terms-content p + p {
	margin-top: 12px;
}

.cr-legal .terms-content a {
	color: var(--secondary, #af7c54);
}

.cr-legal .terms-content a:hover,
.cr-legal .terms-content a:focus-visible {
	color: var(--black, #020202);
}

.cr-legal .terms-content ul,
.cr-legal .terms-content ol {
	margin: 0;
	padding-left: 1.25em;
	color: var(--grey, #6e6e6e);
}

.cr-legal .terms-content li {
	margin-bottom: 0.35em;
}

.cr-legal .terms-content li:last-child {
	margin-bottom: 0;
}

@media screen and (max-width: 767px) {
	.cr-legal .terms.container-full {
		padding-top: 100px;
		padding-bottom: 80px;
	}

	.cr-legal .terms-body {
		padding-left: 20px;
		padding-right: 20px;
	}

	.cr-legal .terms-content h2,
	.cr-legal .terms-content .wp-block-heading {
		margin-top: 36px;
		font-size: 20px;
	}

	.cr-legal .terms-content h2:first-child,
	.cr-legal .terms-content .wp-block-heading:first-child {
		margin-top: 0;
	}
}

/* -------------------------------------------------------------------------- */
/* Contact / booking page                                                     */
/* -------------------------------------------------------------------------- */

.cr-contact .appointment-hero {
	display: flex;
	align-items: flex-end;
	min-height: 630px;
	height: 700px;
	padding-bottom: var(--_perimeters---spaces--space-9xl);
	box-sizing: border-box;
}

.cr-contact__hero-media {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
}

.cr-contact__hero-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	transform-origin: center center;
	will-change: transform, opacity, filter;
}

.cr-contact__hero-veil {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgb(2 2 2 / 0.72) 0%,
		rgb(2 2 2 / 0.35) 28%,
		transparent 55%,
		rgb(2 2 2 / 0.35) 72%,
		rgb(2 2 2 / 0.72) 100%
	);
	pointer-events: none;
}

.cr-contact .appointments-hero {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
	padding-left: var(--_perimeters---containers--container-xs, 30px);
	padding-right: var(--_perimeters---containers--container-xs, 30px);
	box-sizing: border-box;
}

.cr-contact .appointments-hero.container-full {
	height: 100%;
	align-items: flex-end;
}

.cr-contact .appointment-hero-body {
	width: 100%;
	max-width: var(--_perimeters---containers--container-lg, 1340px);
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
}

.cr-contact .appoint-card-help .heading-03 {
	margin: 0;
}

.cr-contact .appoint-card-help-ico {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.cr-contact .appoint-card-help-link:hover,
.cr-contact .appoint-card-help-link:focus-visible {
	opacity: 0.72;
}

/* Hide animatable nodes until GSAP starts (avoids visible → hide → animate flash) */
@media (prefers-reduced-motion: no-preference) {
	.cr-contact.cr-contact--js [data-cr-enter],
	.cr-contact.cr-contact--js .cr-contact__form .gfield,
	.cr-contact.cr-contact--js .cr-contact__form .gform_footer {
		opacity: 0;
		visibility: hidden;
	}

	.cr-contact.cr-contact--js [data-cr-enter="image"] {
		transform: scale(1.08);
		filter: blur(14px);
	}

	.cr-contact.cr-contact--js [data-cr-enter="title"] {
		transform: translate3d(0, 36px, 0);
		filter: blur(14px);
	}

	.cr-contact.cr-contact--js [data-cr-enter="lede"] {
		transform: translate3d(0, 24px, 0);
		filter: blur(14px);
	}

	.cr-contact.cr-contact--js [data-cr-enter="item"],
	.cr-contact.cr-contact--js .cr-contact__form .gfield,
	.cr-contact.cr-contact--js .cr-contact__form .gform_footer {
		transform: translate3d(0, 28px, 0);
		filter: blur(14px);
	}
}

.cr-contact .appoint.container-full {
	padding-left: var(--_perimeters---containers--container-xs, 30px);
	padding-right: var(--_perimeters---containers--container-xs, 30px);
	box-sizing: border-box;
}

.cr-contact .appoint-content {
	width: 100%;
	max-width: 880px;
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
}

.cr-contact .appoint-item {
	width: 100%;
	box-sizing: border-box;
}

.cr-contact .appoint-item-left {
	max-width: 520px;
}

.cr-contact .appoint-item-left,
.cr-contact .appointment-item-right {
	box-sizing: border-box;
	min-width: 0;
}

/* Book a Call — ACF calendar embed below hero */
.cr-contact__booking {
	padding-top: var(--_perimeters---spaces--space-5xl, 64px);
	padding-bottom: var(--_perimeters---spaces--space-7xl, 96px);
}

.cr-contact .appoint-content.cr-contact__booking-inner {
	max-width: var(--cr-container-md, 1064px);
}

.cr-contact__booking-embed {
	width: 100%;
	min-height: 640px;
	box-sizing: border-box;
}

.cr-contact__booking-embed iframe,
.cr-contact__booking-embed .calendly-inline-widget {
	display: block;
	width: 100%;
	min-height: 640px;
	border: 0;
}

/* Gravity Forms — light UI floating labels */
.cr-contact__form .gform_wrapper,
.cr-contact__form .gform_wrapper.gravity-theme {
	margin: 0;
}

.cr-contact__form .gform_wrapper.gravity-theme .gform_heading,
.cr-contact__form .gform_wrapper .gform_heading {
	display: none;
}

.cr-contact__form .gform_wrapper .gform_required_legend {
	display: none;
}

.cr-contact__form .gform_wrapper.gravity-theme .gform_fields,
.cr-contact__form .gform_wrapper .gform_body .gform_fields {
	display: flex !important;
	flex-direction: column;
	gap: 20px;
	row-gap: 20px;
}

.cr-contact__form .gform_wrapper.gravity-theme .gfield,
.cr-contact__form .gform_wrapper .gfield {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 0;
	margin: 0;
	padding: 0;
	width: 100% !important;
	max-width: 100% !important;
	grid-column: auto !important;
}

.cr-contact__form .gform_wrapper.gravity-theme .ginput_container,
.cr-contact__form .gform_wrapper .ginput_container {
	position: relative;
	width: 100% !important;
	max-width: 100% !important;
}

.cr-contact__form .gform_wrapper.gravity-theme .ginput_complex,
.cr-contact__form .gform_wrapper .ginput_complex {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.cr-contact__form .gform_wrapper.gravity-theme .ginput_complex span,
.cr-contact__form .gform_wrapper .ginput_complex span {
	position: relative;
	display: block;
	width: 100%;
	margin: 0 !important;
	padding: 0 !important;
}

/* Screen-reader only: parent Name label (First/Last float instead) */
.cr-contact__form .gform_wrapper .gfield--type-name > .gfield_label {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px !important;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* Static labels for non-text fields (checkbox, radio, etc.) */
.cr-contact__form .gform_wrapper .gfield:is(
	.gfield--type-checkbox,
	.gfield--type-radio,
	.gfield--type-html,
	.gfield--type-section,
	.gfield--type-captcha
) > .gfield_label {
	position: static;
	transform: none;
	pointer-events: auto;
	font-family: var(--_typography---font-family--helvetica-now-display);
	font-size: var(--_typography---p1--font-size, 16px);
	line-height: var(--_typography---p1--line-height, 1.4);
	font-weight: var(--_typography---font-weight--medium, 500);
	color: var(--black);
	margin: 0 0 8px !important;
}

/* Consent — hide field label, checkbox + text inline */
.cr-contact__form .gform_wrapper .gfield--type-consent > .gfield_label,
.cr-contact__form .gform_wrapper .gfield--type-consent > legend.gfield_label,
.cr-contact__form .gform_wrapper .gfield--input-type-consent > .gfield_label,
.cr-contact__form .gform_wrapper .gfield--input-type-consent > legend.gfield_label {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px !important;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.cr-contact__form .gform_wrapper .gfield--type-consent,
.cr-contact__form .gform_wrapper .gfield--input-type-consent {
	gap: 0;
}

.cr-contact__form .gform_wrapper .gfield--type-consent .ginput_container_consent,
.cr-contact__form .gform_wrapper .gfield--input-type-consent .ginput_container_consent {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 10px;
	width: 100%;
}

.cr-contact__form .gform_wrapper .gfield--type-consent .ginput_container_consent input[type="checkbox"],
.cr-contact__form .gform_wrapper .gfield--input-type-consent .ginput_container_consent input[type="checkbox"] {
	flex: none;
	width: 18px;
	height: 18px;
	margin: 2px 0 0;
	padding: 0;
	appearance: none;
	-webkit-appearance: none;
	background-color: var(--white);
	border: 1.5px solid var(--dawn-pink, #e8e0d6);
	border-radius: 50%;
	cursor: pointer;
	transition: background-color 0.15s ease, border-color 0.15s ease;
}

.cr-contact__form .gform_wrapper .gfield--type-consent .ginput_container_consent input[type="checkbox"]:checked,
.cr-contact__form .gform_wrapper .gfield--input-type-consent .ginput_container_consent input[type="checkbox"]:checked {
	background-color: var(--black);
	border-color: var(--black);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2.5 6.2L4.8 8.5L9.5 3.5' stroke='%23fff' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 12px 12px;
}

.cr-contact__form .gform_wrapper .gfield--type-consent .ginput_container_consent input[type="checkbox"]:focus-visible,
.cr-contact__form .gform_wrapper .gfield--input-type-consent .ginput_container_consent input[type="checkbox"]:focus-visible {
	outline: 2px solid var(--black);
	outline-offset: 2px;
}

.cr-contact__form .gform_wrapper .gfield--type-consent .ginput_container_consent label,
.cr-contact__form .gform_wrapper .gfield--type-consent .ginput_container_consent .gfield_consent_label,
.cr-contact__form .gform_wrapper .gfield--input-type-consent .ginput_container_consent label,
.cr-contact__form .gform_wrapper .gfield--input-type-consent .ginput_container_consent .gfield_consent_label {
	position: static;
	display: inline;
	margin: 0 !important;
	padding: 0;
	transform: none;
	pointer-events: auto;
	font-family: var(--_typography---font-family--helvetica-now-display);
	font-size: var(--_typography---p2--font-size, 14px);
	line-height: 1.45;
	font-weight: var(--_typography---font-weight--regular, 400);
	color: var(--black);
	cursor: pointer;
}

.cr-contact__form .gform_wrapper .gfield--type-consent .ginput_container_consent label::after,
.cr-contact__form .gform_wrapper .gfield--type-consent .ginput_container_consent .gfield_consent_label::after,
.cr-contact__form .gform_wrapper .gfield--input-type-consent .ginput_container_consent label::after,
.cr-contact__form .gform_wrapper .gfield--input-type-consent .ginput_container_consent .gfield_consent_label::after {
	content: "*";
	color: #e11d48;
	margin-left: 0.15em;
}

.cr-contact__form .gform_wrapper .gfield--type-consent .ginput_container_consent a,
.cr-contact__form .gform_wrapper .gfield--input-type-consent .ginput_container_consent a {
	color: var(--black);
	text-decoration: underline;
	text-underline-offset: 2px;
}

/* Floating labels — resting (placeholder-like) */
.cr-contact__form .gform_wrapper.gravity-theme .gfield:not(.gfield--type-name):not(.gfield--type-consent):not(.gfield--type-checkbox):not(.gfield--type-radio):not(.gfield--type-html):not(.gfield--type-section):not(.gfield--type-captcha) > .gfield_label,
.cr-contact__form .gform_wrapper .gfield:not(.gfield--type-name):not(.gfield--type-consent):not(.gfield--type-checkbox):not(.gfield--type-radio):not(.gfield--type-html):not(.gfield--type-section):not(.gfield--type-captcha) > .gfield_label,
.cr-contact__form .gform_wrapper.gravity-theme .ginput_complex .gform-field-label,
.cr-contact__form .gform_wrapper .ginput_complex label {
	position: absolute;
	left: 16px;
	right: 16px;
	top: 50%;
	z-index: 2;
	margin: 0 !important;
	padding: 0;
	transform: translateY(-50%);
	transform-origin: left center;
	pointer-events: none;
	font-family: var(--_typography---font-family--helvetica-now-display);
	font-size: var(--_typography---p1--font-size, 16px);
	line-height: 1.25;
	font-weight: var(--_typography---font-weight--medium, 500);
	letter-spacing: normal;
	color: var(--smokey-grey, #757575);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	transition:
		top 0.2s ease,
		transform 0.2s ease,
		font-size 0.2s ease,
		color 0.2s ease;
}

/* Textarea — keep label at top (never vertically centered) */
.cr-contact__form .gform_wrapper.gravity-theme .gfield:not(.gfield--type-name):not(.gfield--type-consent):not(.gfield--type-checkbox):not(.gfield--type-radio):not(.gfield--type-html):not(.gfield--type-section):not(.gfield--type-captcha):has(textarea) > .gfield_label,
.cr-contact__form .gform_wrapper .gfield:not(.gfield--type-name):not(.gfield--type-consent):not(.gfield--type-checkbox):not(.gfield--type-radio):not(.gfield--type-html):not(.gfield--type-section):not(.gfield--type-captcha):has(textarea) > .gfield_label,
.cr-contact__form .gform_wrapper.gravity-theme .gfield--type-textarea > .gfield_label,
.cr-contact__form .gform_wrapper .gfield--type-textarea > .gfield_label {
	top: 18px !important;
	transform: none !important;
}

/* Textarea floated — slightly higher, still top-aligned */
.cr-contact__form .gform_wrapper.gravity-theme .gfield--type-textarea.is-floating > .gfield_label,
.cr-contact__form .gform_wrapper .gfield--type-textarea.is-floating > .gfield_label,
.cr-contact__form .gform_wrapper.gravity-theme .gfield--type-textarea:focus-within > .gfield_label,
.cr-contact__form .gform_wrapper .gfield--type-textarea:focus-within > .gfield_label,
.cr-contact__form .gform_wrapper.gravity-theme .gfield:has(textarea:not(:placeholder-shown)) > .gfield_label,
.cr-contact__form .gform_wrapper .gfield:has(textarea:not(:placeholder-shown)) > .gfield_label {
	top: 10px !important;
	transform: none !important;
	font-size: 11px !important;
	line-height: 1.2 !important;
	color: var(--grey, #6e6e6e) !important;
}

/*
 * Floated state — must match/exceed resting specificity.
 * Triggers: focus, .is-floating (JS), or filled (!:placeholder-shown).
 */
.cr-contact__form .gform_wrapper.gravity-theme .gfield.is-floating:not(.gfield--type-name) > .gfield_label,
.cr-contact__form .gform_wrapper .gfield.is-floating:not(.gfield--type-name) > .gfield_label,
.cr-contact__form .gform_wrapper.gravity-theme .gfield:not(.gfield--type-name):focus-within > .gfield_label,
.cr-contact__form .gform_wrapper .gfield:not(.gfield--type-name):focus-within > .gfield_label,
.cr-contact__form .gform_wrapper.gravity-theme .gfield:has(
	> .ginput_container input:not([type="hidden"]):not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not(:placeholder-shown),
	> .ginput_container textarea:not(:placeholder-shown),
	> .ginput_container select:not([value=""])
) > .gfield_label,
.cr-contact__form .gform_wrapper .gfield:has(
	> .ginput_container input:not([type="hidden"]):not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not(:placeholder-shown),
	> .ginput_container textarea:not(:placeholder-shown),
	> .ginput_container select:not([value=""])
) > .gfield_label,
.cr-contact__form .gform_wrapper.gravity-theme .ginput_complex span.is-floating > .gform-field-label,
.cr-contact__form .gform_wrapper .ginput_complex span.is-floating > .gform-field-label,
.cr-contact__form .gform_wrapper.gravity-theme .ginput_complex span:focus-within > .gform-field-label,
.cr-contact__form .gform_wrapper .ginput_complex span:focus-within > .gform-field-label,
.cr-contact__form .gform_wrapper.gravity-theme .ginput_complex span:has(input:not(:placeholder-shown)) > .gform-field-label,
.cr-contact__form .gform_wrapper .ginput_complex span:has(input:not(:placeholder-shown)) > .gform-field-label,
.cr-contact__form .gform_wrapper.gravity-theme .ginput_complex span.is-floating > label,
.cr-contact__form .gform_wrapper .ginput_complex span.is-floating > label,
.cr-contact__form .gform_wrapper.gravity-theme .ginput_complex span:focus-within > label,
.cr-contact__form .gform_wrapper .ginput_complex span:focus-within > label,
.cr-contact__form .gform_wrapper.gravity-theme .ginput_complex span:has(input:not(:placeholder-shown)) > label,
.cr-contact__form .gform_wrapper .ginput_complex span:has(input:not(:placeholder-shown)) > label {
	top: 8px !important;
	transform: none !important;
	font-size: 11px !important;
	line-height: 1.2 !important;
	color: var(--grey, #6e6e6e) !important;
}

.cr-contact__form .gform_wrapper.gravity-theme .gfield_required,
.cr-contact__form .gform_wrapper .gfield_required,
.cr-contact__form .gform_wrapper.gravity-theme .gfield_required.gfield_required_asterisk,
.cr-contact__form .gform_wrapper .gfield_required.gfield_required_asterisk {
	color: #e11d48;
}

.cr-contact__form .gform_wrapper.gravity-theme .gfield_required.gfield_required_text,
.cr-contact__form .gform_wrapper .gfield_required.gfield_required_text {
	font-size: 0;
}

.cr-contact__form .gform_wrapper.gravity-theme .gfield_required.gfield_required_text::before,
.cr-contact__form .gform_wrapper .gfield_required.gfield_required_text::before {
	content: "*";
	font-size: inherit;
	color: #e11d48;
}

/* Name sub-labels are required with the parent Name field */
.cr-contact__form .gform_wrapper .gfield--type-name .gform-field-label--type-sub::after {
	content: "*";
	color: #e11d48;
	margin-left: 0.15em;
}

.cr-contact__form .gform_wrapper.gravity-theme input[type="text"],
.cr-contact__form .gform_wrapper.gravity-theme input[type="email"],
.cr-contact__form .gform_wrapper.gravity-theme input[type="tel"]:not(.iti__tel-input),
.cr-contact__form .gform_wrapper.gravity-theme input[type="url"],
.cr-contact__form .gform_wrapper.gravity-theme input[type="number"],
.cr-contact__form .gform_wrapper.gravity-theme select,
.cr-contact__form .gform_wrapper.gform-theme input[type="text"],
.cr-contact__form .gform_wrapper.gform-theme input[type="email"],
.cr-contact__form .gform_wrapper.gform-theme input[type="tel"]:not(.iti__tel-input),
.cr-contact__form .gform_wrapper.gform-theme input[type="url"],
.cr-contact__form .gform_wrapper.gform-theme input[type="number"],
.cr-contact__form .gform_wrapper.gform-theme select,
.cr-contact__form .gform_wrapper input[type="text"],
.cr-contact__form .gform_wrapper input[type="email"],
.cr-contact__form .gform_wrapper input[type="tel"]:not(.iti__tel-input),
.cr-contact__form .gform_wrapper input[type="url"],
.cr-contact__form .gform_wrapper input[type="number"],
.cr-contact__form .gform_wrapper select,
.cr-contact__form .gform_wrapper .gfield--type-website input,
.cr-contact__form .gform_wrapper .ginput_container_website input {
	width: 100% !important;
	height: 60px !important;
	min-height: 60px !important;
	margin: 0 !important;
	padding: 18px 16px !important;
	background-color: var(--white) !important;
	border: 1px solid var(--dawn-pink, #e8e0d6) !important;
	border-radius: 12px !important;
	box-shadow: none !important;
	font-family: var(--_typography---font-family--helvetica-now-display) !important;
	font-size: var(--_typography---p2--font-size) !important;
	line-height: var(--_typography---p2--line-height) !important;
	font-weight: var(--_typography---font-weight--regular) !important;
	color: var(--black) !important;
	appearance: none !important;
	-webkit-appearance: none !important;
	transition:
		border-color 0.2s ease,
		padding 0.2s ease,
		background-color 0.2s ease;
}

/* Extra top padding once label floats — match gravity-theme specificity */
.cr-contact__form .gform_wrapper.gravity-theme .gfield.is-floating input[type="text"],
.cr-contact__form .gform_wrapper.gravity-theme .gfield.is-floating input[type="email"],
.cr-contact__form .gform_wrapper.gravity-theme .gfield.is-floating input[type="tel"]:not(.iti__tel-input),
.cr-contact__form .gform_wrapper.gravity-theme .gfield.is-floating input[type="url"],
.cr-contact__form .gform_wrapper.gravity-theme .gfield.is-floating input[type="number"],
.cr-contact__form .gform_wrapper.gravity-theme .gfield.is-floating select,
.cr-contact__form .gform_wrapper.gravity-theme .gfield:focus-within:not(.gfield--type-name) input[type="text"],
.cr-contact__form .gform_wrapper.gravity-theme .gfield:focus-within:not(.gfield--type-name) input[type="email"],
.cr-contact__form .gform_wrapper.gravity-theme .gfield:focus-within:not(.gfield--type-name) input[type="tel"]:not(.iti__tel-input),
.cr-contact__form .gform_wrapper.gravity-theme .gfield:focus-within:not(.gfield--type-name) input[type="url"],
.cr-contact__form .gform_wrapper.gravity-theme .gfield:focus-within:not(.gfield--type-name) input[type="number"],
.cr-contact__form .gform_wrapper.gravity-theme .gfield:focus-within:not(.gfield--type-name) select,
.cr-contact__form .gform_wrapper.gravity-theme .gfield:has(
	> .ginput_container input:not([type="hidden"]):not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not(:placeholder-shown)
) input[type="text"],
.cr-contact__form .gform_wrapper.gravity-theme .gfield:has(
	> .ginput_container input:not([type="hidden"]):not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not(:placeholder-shown)
) input[type="email"],
.cr-contact__form .gform_wrapper.gravity-theme .gfield:has(
	> .ginput_container input:not([type="hidden"]):not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not(:placeholder-shown)
) input[type="tel"]:not(.iti__tel-input),
.cr-contact__form .gform_wrapper.gravity-theme .gfield:has(
	> .ginput_container input:not([type="hidden"]):not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not(:placeholder-shown)
) input[type="url"],
.cr-contact__form .gform_wrapper.gravity-theme .gfield:has(
	> .ginput_container input:not([type="hidden"]):not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not(:placeholder-shown)
) input[type="number"],
.cr-contact__form .gform_wrapper .gfield.is-floating input[type="text"],
.cr-contact__form .gform_wrapper .gfield.is-floating input[type="email"],
.cr-contact__form .gform_wrapper .gfield.is-floating input[type="tel"]:not(.iti__tel-input),
.cr-contact__form .gform_wrapper .gfield.is-floating input[type="url"],
.cr-contact__form .gform_wrapper .gfield.is-floating input[type="number"],
.cr-contact__form .gform_wrapper .gfield.is-floating select,
.cr-contact__form .gform_wrapper .gfield:focus-within:not(.gfield--type-name) input[type="text"],
.cr-contact__form .gform_wrapper .gfield:focus-within:not(.gfield--type-name) input[type="email"],
.cr-contact__form .gform_wrapper .gfield:focus-within:not(.gfield--type-name) input[type="tel"]:not(.iti__tel-input),
.cr-contact__form .gform_wrapper .gfield:focus-within:not(.gfield--type-name) input[type="url"],
.cr-contact__form .gform_wrapper .gfield:focus-within:not(.gfield--type-name) input[type="number"],
.cr-contact__form .gform_wrapper .gfield:focus-within:not(.gfield--type-name) select,
.cr-contact__form .gform_wrapper.gravity-theme .ginput_complex span.is-floating input,
.cr-contact__form .gform_wrapper.gravity-theme .ginput_complex span:focus-within input,
.cr-contact__form .gform_wrapper.gravity-theme .ginput_complex span:has(input:not(:placeholder-shown)) input,
.cr-contact__form .gform_wrapper .ginput_complex span.is-floating input,
.cr-contact__form .gform_wrapper .ginput_complex span:focus-within input,
.cr-contact__form .gform_wrapper .ginput_complex span:has(input:not(:placeholder-shown)) input {
	padding-top: 28px !important;
	padding-bottom: 8px !important;
}

.cr-contact__form .gform_wrapper.gravity-theme textarea,
.cr-contact__form .gform_wrapper.gform-theme textarea,
.cr-contact__form .gform_wrapper textarea,
.cr-contact__form .gform_wrapper .ginput_container_textarea textarea,
.cr-contact__form .gform_wrapper textarea.textarea,
.cr-contact__form .gform_wrapper textarea.small,
.cr-contact__form .gform_wrapper textarea.medium,
.cr-contact__form .gform_wrapper textarea.large {
	width: 100% !important;
	height: 140px !important;
	min-height: 140px !important;
	max-height: none !important;
	max-width: 100% !important;
	margin: 0 !important;
	padding: 20px 16px 16px !important;
	background-color: var(--white) !important;
	border: 1px solid var(--dawn-pink, #e8e0d6) !important;
	border-radius: 12px !important;
	box-shadow: none !important;
	font-family: var(--_typography---font-family--helvetica-now-display) !important;
	font-size: var(--_typography---p2--font-size) !important;
	line-height: var(--_typography---p2--line-height) !important;
	font-weight: var(--_typography---font-weight--regular) !important;
	color: var(--black) !important;
	appearance: none !important;
	-webkit-appearance: none !important;
	resize: vertical;
}

.cr-contact__form .gform_wrapper.gravity-theme .gfield.is-floating textarea,
.cr-contact__form .gform_wrapper.gravity-theme .gfield:focus-within textarea,
.cr-contact__form .gform_wrapper.gravity-theme .gfield:has(textarea:not(:placeholder-shown)) textarea,
.cr-contact__form .gform_wrapper .gfield.is-floating textarea,
.cr-contact__form .gform_wrapper .gfield:focus-within textarea,
.cr-contact__form .gform_wrapper .gfield:has(textarea:not(:placeholder-shown)) textarea {
	padding-top: 34px !important;
	padding-bottom: 14px !important;
}

/* Label acts as placeholder — hide native placeholders (incl. phone hints) */
.cr-contact__form .gform_wrapper.gravity-theme input::placeholder,
.cr-contact__form .gform_wrapper.gravity-theme textarea::placeholder,
.cr-contact__form .gform_wrapper input::placeholder,
.cr-contact__form .gform_wrapper textarea::placeholder,
.cr-contact__form .gform_wrapper input::-webkit-input-placeholder,
.cr-contact__form .gform_wrapper textarea::-webkit-input-placeholder,
.cr-contact__form .gform_wrapper input::-moz-placeholder,
.cr-contact__form .gform_wrapper textarea::-moz-placeholder {
	color: transparent !important;
	opacity: 0 !important;
}

/* Phone + intl-tel-input (country flag / dial code)
 * Sibling .gfield nodes are position:relative (+ GSAP transform), so each
 * creates a stacking context. Raise the phone field while its picker is open
 * or the country list paints behind later fields. */
.cr-contact__form .gform_wrapper .gform_body,
.cr-contact__form .gform_wrapper .gform_fields,
.cr-contact__form .gform_wrapper .gfield--type-phone,
.cr-contact__form .gform_wrapper .gfield:has(> .ginput_container_phone),
.cr-contact__form .gform_wrapper .ginput_container_phone {
	overflow: visible !important;
}

.cr-contact__form .gform_wrapper .gfield--type-phone,
.cr-contact__form .gform_wrapper .gfield:has(> .ginput_container_phone) {
	position: relative;
	z-index: 1;
}

.cr-contact__form .gform_wrapper .gfield--type-phone:focus-within,
.cr-contact__form .gform_wrapper .gfield--type-phone.cr-phone-dropdown-open,
.cr-contact__form .gform_wrapper .gfield:has(> .ginput_container_phone):focus-within,
.cr-contact__form .gform_wrapper .gfield:has(> .ginput_container_phone).cr-phone-dropdown-open {
	z-index: 100;
}

.cr-contact__form .gform_wrapper .ginput_container_phone {
	position: relative;
	width: 100%;
}

.cr-contact__form .gform_wrapper .ginput_container_phone .iti {
	position: relative;
	display: block;
	width: 100% !important;
	overflow: visible !important;
}

.cr-contact__form .gform_wrapper .gfield--type-phone.cr-phone-dropdown-open .iti,
.cr-contact__form .gform_wrapper .gfield:has(> .ginput_container_phone).cr-phone-dropdown-open .iti {
	overflow: visible !important;
}

.cr-contact__form .gform_wrapper .ginput_container_phone .iti__tel-input,
.cr-contact__form .gform_wrapper .ginput_container_phone input.iti__tel-input {
	position: relative;
	z-index: 0;
	width: 100% !important;
	height: 60px !important;
	min-height: 60px !important;
	margin: 0 !important;
	/* --cr-phone-prefix: fixed dial chip + gap */
	padding: 18px 16px 18px var(--cr-phone-prefix, 96px) !important;
	background-color: var(--white) !important;
	border: 1px solid var(--dawn-pink, #e8e0d6) !important;
	border-radius: 12px !important;
	box-shadow: none !important;
	font-family: var(--_typography---font-family--helvetica-now-display) !important;
	font-size: var(--_typography---p2--font-size) !important;
	line-height: var(--_typography---p2--line-height) !important;
	color: var(--black) !important;
	appearance: none !important;
	-webkit-appearance: none !important;
}

.cr-contact__form .gform_wrapper .gfield--type-phone.is-floating .iti__tel-input,
.cr-contact__form .gform_wrapper .gfield--type-phone:focus-within .iti__tel-input {
	padding-top: 28px !important;
	padding-bottom: 8px !important;
	padding-left: var(--cr-phone-prefix, 96px) !important;
	padding-right: 16px !important;
}

.cr-contact__form .gform_wrapper .ginput_container_phone .iti__tel-input:focus {
	outline: none !important;
	border-color: var(--black) !important;
	box-shadow: none !important;
}

/* Flag / dial-code control — inset inside the input, no outer border (avoids raised card) */
.cr-contact__form .gform_wrapper .ginput_container_phone .iti__flag-container,
.cr-contact__form .gform_wrapper .ginput_container_phone .iti__country-container {
	position: static !important;
	z-index: auto;
	overflow: visible !important;
	padding: 0 !important;
	margin: 0 !important;
}

.cr-contact__form .gform_wrapper .ginput_container_phone .iti__selected-flag,
.cr-contact__form .gform_wrapper .ginput_container_phone .iti__selected-country {
	position: absolute !important;
	top: 1px !important;
	right: auto !important;
	bottom: auto !important;
	left: 1px !important;
	z-index: 2;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 86px !important;
	min-width: 86px !important;
	max-width: 86px !important;
	height: 58px !important;
	max-height: 58px !important;
	margin: 0 !important;
	padding: 0 6px 0 10px !important;
	box-sizing: border-box !important;
	overflow: hidden !important;
	transform: none !important;
	background: var(--white-smoke, #f6f6f6) !important;
	border: 0 !important;
	border-right: 1px solid var(--dawn-pink, #e8e0d6) !important;
	border-radius: 11px 0 0 11px !important;
	box-shadow: none !important;
}

.cr-contact__form .gform_wrapper .ginput_container_phone .iti__selected-flag:hover,
.cr-contact__form .gform_wrapper .ginput_container_phone .iti__selected-flag:focus,
.cr-contact__form .gform_wrapper .ginput_container_phone .iti__selected-flag:focus-visible,
.cr-contact__form .gform_wrapper .ginput_container_phone .iti__selected-country:hover,
.cr-contact__form .gform_wrapper .ginput_container_phone .iti__selected-country:focus,
.cr-contact__form .gform_wrapper .ginput_container_phone .iti__selected-country:focus-visible {
	background: #ececec !important;
	outline: none !important;
	box-shadow: none !important;
}

.cr-contact__form .gform_wrapper .ginput_container_phone .iti__selected-dial-code {
	font-family: var(--_typography---font-family--helvetica-now-display);
	font-size: 14px;
	line-height: 1;
	font-weight: 500;
	color: var(--black);
	margin-left: 6px;
}

.cr-contact__form .gform_wrapper .ginput_container_phone .iti__arrow {
	border-top-color: var(--smokey-grey, #757575) !important;
	margin-left: 6px;
}

/* Full-width country picker — JS pins with position:fixed to the input box.
 * Absolute fallback keeps layout sane before/without JS. */
.cr-contact__form .gform_wrapper .ginput_container_phone .iti__dropdown-content {
	position: absolute !important;
	top: calc(100% + 8px) !important;
	bottom: auto !important;
	left: 0 !important;
	right: 0 !important;
	width: 100% !important;
	max-width: 100% !important;
	min-width: 0 !important;
	margin: 0 !important;
	transform: none !important;
	z-index: 10000 !important;
	box-sizing: border-box !important;
	border: 1px solid var(--dawn-pink, #e8e0d6) !important;
	border-radius: 12px !important;
	box-shadow: 0 10px 28px rgb(2 2 2 / 0.1) !important;
	font-family: var(--_typography---font-family--helvetica-now-display);
	background: var(--white) !important;
	overscroll-behavior: contain;
	pointer-events: auto !important;
	overflow: hidden !important;
}

/* Legacy: list is the dropdown itself (no .iti__dropdown-content wrapper) */
.cr-contact__form .gform_wrapper .ginput_container_phone .iti > .iti__country-list,
.cr-contact__form .gform_wrapper .ginput_container_phone .iti__flag-container > .iti__country-list {
	position: absolute !important;
	top: calc(100% + 10px) !important;
	bottom: auto !important;
	left: 0 !important;
	right: 0 !important;
	width: 100% !important;
	max-width: 100% !important;
	margin: 0 !important;
	transform: none !important;
	z-index: 30 !important;
	box-sizing: border-box !important;
	border: 1px solid var(--dawn-pink, #e8e0d6) !important;
	border-radius: 12px !important;
	box-shadow: 0 10px 28px rgb(2 2 2 / 0.1) !important;
	background: var(--white) !important;
	max-height: 220px !important;
	overflow-x: hidden !important;
	overflow-y: auto !important;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior: contain;
	pointer-events: auto !important;
}

.cr-contact__form .gform_wrapper .gfield--type-phone.cr-phone-dropdown-open .iti,
.cr-contact__form .gform_wrapper .gfield:has(> .ginput_container_phone).cr-phone-dropdown-open .iti {
	/* Keep auto so the field label (sibling) can paint above the input.
	 * Only the dropdown list needs a high z-index. */
	z-index: auto;
}

.cr-contact__form .gform_wrapper .gfield--type-phone.cr-phone-dropdown-open .iti__tel-input,
.cr-contact__form .gform_wrapper .gfield:has(> .ginput_container_phone).cr-phone-dropdown-open .iti__tel-input {
	z-index: 0;
}

.cr-contact__form .gform_wrapper .gfield--type-phone.cr-phone-dropdown-open .iti__selected-flag,
.cr-contact__form .gform_wrapper .gfield--type-phone.cr-phone-dropdown-open .iti__selected-country,
.cr-contact__form .gform_wrapper .gfield:has(> .ginput_container_phone).cr-phone-dropdown-open .iti__selected-flag,
.cr-contact__form .gform_wrapper .gfield:has(> .ginput_container_phone).cr-phone-dropdown-open .iti__selected-country {
	z-index: 1;
}

.cr-contact__form .gform_wrapper .ginput_container_phone .iti__dropdown-content .iti__country-list {
	position: relative !important;
	top: auto !important;
	left: auto !important;
	right: auto !important;
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 6px 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	max-height: 220px !important;
	overflow-x: hidden !important;
	overflow-y: auto !important;
	-webkit-overflow-scrolling: touch;
	z-index: auto !important;
	pointer-events: auto !important;
}

/* Body-portaled ITI dropdown (escapes Lenis transforms / form stacking) */
.iti--container {
	z-index: 10000 !important;
}

.iti--container .iti__country-list,
.iti--container .iti__dropdown-content {
	max-height: 220px;
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior: contain;
}

.cr-phone-dropdown-portaled {
	z-index: 10000 !important;
	box-sizing: border-box !important;
	border: 1px solid var(--dawn-pink, #e8e0d6) !important;
	border-radius: 12px !important;
	box-shadow: 0 10px 28px rgb(2 2 2 / 0.1) !important;
	font-family: var(--_typography---font-family--helvetica-now-display);
	background: var(--white) !important;
	overscroll-behavior: contain;
	pointer-events: auto !important;
	overflow: hidden !important;
}

.cr-phone-dropdown-portaled .iti__country-list {
	position: relative !important;
	top: auto !important;
	left: auto !important;
	right: auto !important;
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 6px 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	max-height: 220px !important;
	overflow-x: hidden !important;
	overflow-y: auto !important;
	-webkit-overflow-scrolling: touch;
	z-index: auto !important;
	pointer-events: auto !important;
}

.cr-phone-dropdown-portaled .iti__country,
.cr-contact__form .gform_wrapper .ginput_container_phone .iti__country {
	display: flex !important;
	align-items: center !important;
	justify-content: flex-start !important;
	gap: 8px;
	width: 100%;
	box-sizing: border-box;
	pointer-events: auto !important;
	cursor: pointer;
}

.cr-phone-dropdown-portaled .iti__country.iti__highlight,
.cr-phone-dropdown-portaled .iti__country:hover,
.cr-contact__form .gform_wrapper .ginput_container_phone .iti__country.iti__highlight,
.cr-contact__form .gform_wrapper .ginput_container_phone .iti__country:hover {
	background: var(--white-smoke, #f6f6f6) !important;
}

.cr-phone-dropdown-portaled .iti__country .iti__country-name,
.cr-contact__form .gform_wrapper .ginput_container_phone .iti__country .iti__country-name {
	flex: 1 1 auto;
	min-width: 0;
}

.cr-phone-dropdown-portaled .iti__country .iti__dial-code,
.cr-contact__form .gform_wrapper .ginput_container_phone .iti__country .iti__dial-code {
	margin-left: auto !important;
	margin-right: 0 !important;
	flex: 0 0 auto;
	text-align: right;
	color: var(--smokey-grey, #757575);
}

/* Floating label aligned to the text area (right of dial code) */
.cr-contact__form .gform_wrapper .gfield--type-phone > .gfield_label,
.cr-contact__form .gform_wrapper .gfield:has(> .ginput_container_phone) > .gfield_label {
	display: block !important;
	opacity: 1 !important;
	visibility: visible !important;
	position: absolute !important;
	top: 50% !important;
	left: var(--cr-phone-prefix, 96px) !important;
	right: 16px !important;
	transform: translateY(-50%) !important;
	z-index: 3 !important;
	margin: 0 !important;
	padding: 0 !important;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: calc(100% - var(--cr-phone-prefix, 96px) - 16px);
	pointer-events: none;
	clip: auto !important;
	width: auto !important;
	height: auto !important;
	font-family: var(--_typography---font-family--helvetica-now-display);
	font-size: var(--_typography---p1--font-size, 16px) !important;
	line-height: 1.25 !important;
	font-weight: var(--_typography---font-weight--medium, 500);
	color: var(--smokey-grey, #757575) !important;
}

.cr-contact__form .gform_wrapper .gfield--type-phone.is-floating > .gfield_label,
.cr-contact__form .gform_wrapper .gfield--type-phone:focus-within > .gfield_label,
.cr-contact__form .gform_wrapper .gfield:has(> .ginput_container_phone).is-floating > .gfield_label,
.cr-contact__form .gform_wrapper .gfield:has(> .ginput_container_phone):focus-within > .gfield_label {
	top: 8px !important;
	transform: none !important;
	font-size: 11px !important;
	line-height: 1.2 !important;
	color: var(--grey, #6e6e6e) !important;
}

.cr-contact__form .gform_wrapper.gravity-theme input:focus,
.cr-contact__form .gform_wrapper.gravity-theme select:focus,
.cr-contact__form .gform_wrapper.gravity-theme textarea:focus,
.cr-contact__form .gform_wrapper.gform-theme input:focus,
.cr-contact__form .gform_wrapper.gform-theme select:focus,
.cr-contact__form .gform_wrapper.gform-theme textarea:focus,
.cr-contact__form .gform_wrapper input:focus,
.cr-contact__form .gform_wrapper select:focus,
.cr-contact__form .gform_wrapper textarea:focus {
	outline: none !important;
	border-color: var(--black) !important;
	box-shadow: none !important;
}

.cr-contact__form .gform_wrapper.gravity-theme .gform_footer,
.cr-contact__form .gform_wrapper.gravity-theme .gform_page_footer,
.cr-contact__form .gform_wrapper .gform_footer {
	display: block;
	width: 100%;
	margin: 12px 0 0;
	padding: 0;
}

.cr-contact__form .gform_wrapper.gravity-theme .gform_footer .gform_button,
.cr-contact__form .gform_wrapper.gravity-theme .gform_button,
.cr-contact__form .gform_wrapper .gform_button,
.cr-contact__form .gform_wrapper.gravity-theme input[type="submit"].gform_button,
.cr-contact__form input#gform_submit_button_1,
.cr-contact__form .cr-contact__submit {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: 100% !important;
	max-width: 100% !important;
	height: auto !important;
	min-height: 58px !important;
	margin: 0 !important;
	padding: 16px 40px !important;
	border: 0 !important;
	border-radius: 50px !important;
	background: var(--primary) !important;
	background-color: var(--primary) !important;
	background-image: none !important;
	box-shadow: none !important;
	color: var(--black) !important;
	font-family: var(--_typography---font-family--helvetica-now-display) !important;
	font-size: var(--_typography---p2--font-size) !important;
	line-height: var(--_typography---p2--line-height) !important;
	font-weight: var(--_typography---font-weight--medium) !important;
	letter-spacing: var(--_typography---p2--letter-spacing) !important;
	text-transform: none !important;
	cursor: pointer;
	transition: color 0.4s, background-color 0.4s;
}

.cr-contact__form .cr-contact__submit .button-outside-01 {
	display: block;
	height: 22px;
	overflow: hidden;
}

.cr-contact__form .cr-contact__submit .button-inside {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.cr-contact__form .cr-contact__submit .button-text-01 {
	display: block;
	flex: none;
	line-height: 22px;
	white-space: nowrap;
	color: inherit;
	transform: translate3d(0, 0%, 0);
	transform-style: preserve-3d;
	transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	will-change: transform;
}

.cr-contact__form .gform_wrapper.gravity-theme .gform_button:hover,
.cr-contact__form .gform_wrapper .gform_button:hover,
.cr-contact__form .gform_wrapper.gravity-theme input[type="submit"]:hover,
.cr-contact__form input#gform_submit_button_1:hover,
.cr-contact__form .cr-contact__submit:hover,
.cr-contact__form .cr-contact__submit:focus-visible {
	opacity: 1;
	background: var(--black) !important;
	background-color: var(--black) !important;
	color: var(--white) !important;
}

.cr-contact__form .cr-contact__submit:hover .button-text-01,
.cr-contact__form .cr-contact__submit:focus-visible .button-text-01 {
	transform: translate3d(0, -100%, 0);
}

.cr-contact__form .gform_wrapper.gravity-theme .gform_button:focus-visible,
.cr-contact__form .gform_wrapper .gform_button:focus-visible,
.cr-contact__form input#gform_submit_button_1:focus-visible,
.cr-contact__form .cr-contact__submit:focus-visible {
	outline: 2px solid var(--black);
	outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
	.cr-contact__form .cr-contact__submit .button-text-01 {
		transition: none;
	}

	.cr-contact__form .cr-contact__submit:hover .button-text-01,
	.cr-contact__form .cr-contact__submit:focus-visible .button-text-01 {
		transform: none;
	}
}

.cr-contact__form .gform_wrapper .gfield_description,
.cr-contact__form .gform_wrapper .charleft,
.cr-contact__form .gform_wrapper .character-counter {
	display: none;
}

.cr-contact__form .gform_wrapper.gravity-theme .validation_message,
.cr-contact__form .gform_wrapper .validation_message,
.cr-contact__form .gform_wrapper.gravity-theme .gfield_validation_message {
	font-size: 13px;
	margin-top: 6px;
	color: #e11d48;
}

.cr-contact__form .gform_wrapper .gfield_error input[type="text"],
.cr-contact__form .gform_wrapper .gfield_error input[type="email"],
.cr-contact__form .gform_wrapper .gfield_error input[type="tel"],
.cr-contact__form .gform_wrapper .gfield_error input[type="url"],
.cr-contact__form .gform_wrapper .gfield_error input[type="number"],
.cr-contact__form .gform_wrapper .gfield_error select,
.cr-contact__form .gform_wrapper .gfield_error textarea,
.cr-contact__form .gform_wrapper.gravity-theme .gfield_error input[type="text"],
.cr-contact__form .gform_wrapper.gravity-theme .gfield_error input[type="email"],
.cr-contact__form .gform_wrapper.gravity-theme .gfield_error input[type="tel"],
.cr-contact__form .gform_wrapper.gravity-theme .gfield_error select,
.cr-contact__form .gform_wrapper.gravity-theme .gfield_error textarea {
	background-color: #fff5f5 !important;
	border-color: #e11d48 !important;
}

.cr-contact__form .gform_wrapper .gfield_error input:focus,
.cr-contact__form .gform_wrapper .gfield_error select:focus,
.cr-contact__form .gform_wrapper .gfield_error textarea:focus,
.cr-contact__form .gform_wrapper.gravity-theme .gfield_error input:focus,
.cr-contact__form .gform_wrapper.gravity-theme .gfield_error select:focus,
.cr-contact__form .gform_wrapper.gravity-theme .gfield_error textarea:focus {
	border-color: #e11d48 !important;
	background-color: #fff5f5 !important;
}

.cr-contact__form .gform_confirmation_message {
	font-family: var(--_typography---font-family--helvetica-now-display);
	font-size: var(--_typography---p2--font-size);
	line-height: var(--_typography---p2--line-height);
	color: var(--black);
}

@media screen and (max-width: 991px) {
	.cr-contact__form .gform_wrapper.gravity-theme .ginput_complex,
	.cr-contact__form .gform_wrapper .ginput_complex {
		grid-template-columns: 1fr;
	}

	.cr-contact .appointment-hero {
		height: 500px;
		min-height: 500px;
	}

	.cr-contact .appoint-item-left,
	.cr-contact .appointment-item-right,
	.cr-contact .appoint-card-help {
		max-width: 100%;
		width: 100%;
	}
}

@media screen and (max-width: 767px) {
	.cr-contact .appointment-hero {
		height: auto;
		min-height: 420px;
		padding-top: 96px;
		padding-bottom: var(--_perimeters---spaces--space-8xl, 48px);
	}

	.cr-contact__hero-veil {
		background: linear-gradient(
			180deg,
			rgb(2 2 2 / 0.72) 0%,
			rgb(2 2 2 / 0.35) 22%,
			transparent 42%,
			rgb(2 2 2 / 0.28) 55%,
			rgb(2 2 2 / 0.55) 72%,
			rgb(2 2 2 / 0.82) 100%
		);
	}

	.cr-contact .appointments-hero,
	.cr-contact .appointments-hero.container-full {
		height: auto;
		min-height: 280px;
		padding-left: var(--_perimeters---containers--container-xs, 16px);
		padding-right: var(--_perimeters---containers--container-xs, 16px);
	}

	.cr-contact .appointment-hero-body {
		width: 100%;
		margin-left: 0;
		margin-right: 0;
	}

	.cr-contact .appoint.container-full {
		padding-top: 48px;
		padding-bottom: 48px;
		padding-left: var(--_perimeters---containers--container-xs, 16px);
		padding-right: var(--_perimeters---containers--container-xs, 16px);
	}

	.cr-contact .appoint-item-left {
		padding: var(--_perimeters---spaces--space-lg, 16px);
	}
}

/* -------------------------------------------------------------------------
   Insights carousel (homepage)
   ------------------------------------------------------------------------- */

.cr-insights__header {
	align-items: center;
	margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.cr-insights__header #cr-insights-heading {
	margin: 0;
	line-height: 1.2;
}

.cr-insights__nav {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-shrink: 0;
}

.cr-insights__cta {
	display: flex;
	justify-content: center;
	margin-top: var(--_perimeters---spaces--space-8xl, 48px);
}

.cr-insights__btn.button-01 {
	background-color: var(--black, #020202);
	color: var(--white, #fff);
}

.cr-insights__btn.button-01:hover,
.cr-insights__btn.button-01:focus-visible {
	background-color: var(--primary, #e4ff60);
	color: var(--black, #020202);
	text-decoration: none;
}

.cr-insights__arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	padding: 0;
	border: 1px solid var(--black-10, rgb(2 2 2 / 0.1));
	border-radius: 50%;
	background: transparent;
	color: var(--black, #020202);
	cursor: pointer;
	transition: background-color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

.cr-insights__arrow:hover:not(:disabled),
.cr-insights__arrow:focus-visible:not(:disabled) {
	background-color: var(--black-10, rgb(2 2 2 / 0.1));
}

.cr-insights__arrow:focus-visible {
	outline: 3px solid var(--primary, #e4ff60);
	outline-offset: 3px;
}

.cr-insights__arrow:disabled {
	opacity: 0.35;
	cursor: default;
}

.cr-insights__arrow-icon {
	display: flex;
	line-height: 0;
}

.cr-insights-section {
	overflow-x: clip;
	padding-block: clamp(3.5rem, 8vw, 6rem);
	/* White so it contrasts with cream FAQ above */
	background-color: var(--white, #fff);
}

.cr-insights-section .cr-section__inner {
	overflow: visible;
}

.cr-insights {
	--cr-insights-gap: var(--_perimeters---gaps--gap-4xl, 24px);
	/* Distance from viewport edge → navbar column */
	--cr-insights-gutter: max(
		var(--cr-container-gutter),
		calc((100vw - var(--cr-container-max)) / 2)
	);
	--cr-insights-content: calc(100vw - (2 * var(--cr-insights-gutter)));
	position: relative;
	/* Full-bleed both sides; start inset comes from track spacers */
	width: calc(100% + (2 * var(--cr-insights-gutter)));
	max-width: none;
	margin-left: calc(-1 * var(--cr-insights-gutter));
	margin-right: calc(-1 * var(--cr-insights-gutter));
}

.cr-insights__track {
	display: flex;
	gap: var(--cr-insights-gap);
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: none;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior-x: contain;
	touch-action: pan-x pan-y;
	scrollbar-width: none;
	padding-bottom: 4px;
	outline: none;
}

/* When scrolled, leave room so a card peeks on the left (not flush to the edge) */
.cr-insights.is-scrolled .cr-insights__track {
	scroll-padding-left: var(--cr-insights-left-peek, 0px);
}

/* Spacers keep start/end on the page column; scrolling lets cards bleed both edges */
.cr-insights__spacer {
	flex: 0 0 var(--cr-insights-gutter);
	scroll-snap-align: start;
	pointer-events: none;
}

/* Cancel flex gap after/before spacers so inset matches the page gutter exactly */
.cr-insights__spacer--start {
	margin-inline-end: calc(var(--cr-insights-gap) * -1);
}

.cr-insights__spacer--end {
	margin-inline-start: calc(var(--cr-insights-gap) * -1);
}

.cr-insights__track::-webkit-scrollbar {
	display: none;
}

/* ~3.2 cards across the normal content column */
.cr-insights__slide {
	flex: 0 0 calc((var(--cr-insights-content) - (3 * var(--cr-insights-gap))) / 3.2);
	min-width: 0;
	scroll-snap-align: start;
	margin: 0;
}

.cr-insights__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	gap: var(--_perimeters---gaps--gap-xxl, 20px);
	color: var(--black, #020202);
	text-decoration: none;
}

.cr-insights__link:hover,
.cr-insights__link:focus-visible {
	color: var(--black, #020202);
	text-decoration: none;
}

.cr-insights__thumb {
	overflow: hidden;
	border-radius: 20px;
	aspect-ratio: 3 / 2;
	background-color: var(--soft, #efefef);
}

.cr-insights__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cr-insights__link:hover .cr-insights__img,
.cr-insights__link:focus-visible .cr-insights__img {
	transform: scale(1.04);
}

.cr-insights__body {
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex: 1;
}

.cr-insights__category {
	margin: 0;
	color: var(--secondary, #af7c54);
}

.cr-insights__title {
	margin: 0;
	max-width: 18rem;
	transition: color 0.2s ease;
}

.cr-insights__link:hover .cr-insights__title,
.cr-insights__link:focus-visible .cr-insights__title {
	color: var(--secondary, #af7c54);
}

.cr-insights__excerpt {
	margin: 0;
	color: var(--grey, #6e6e6e);
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.cr-insights__date {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin: 0;
	margin-top: auto;
	color: var(--grey, #6e6e6e);
}

.cr-insights__meta-sep {
	flex: none;
}

@media screen and (max-width: 991px) {
	.cr-insights__slide {
		flex-basis: calc((var(--cr-insights-content) - (2 * var(--cr-insights-gap))) / 2.2);
	}

	.cr-insights__thumb {
		border-radius: 14px;
	}

	.cr-insights__category {
		font-size: 0.8125rem;
		line-height: 1.35;
	}
}

@media screen and (max-width: 767px) {
	.cr-insights {
		--cr-insights-gap: 12px;
	}

	.cr-insights__header {
		flex-wrap: nowrap;
		margin-bottom: 2rem;
		gap: 0.75rem;
	}

	.cr-insights__header #cr-insights-heading {
		flex: 1 1 auto;
		min-width: 0;
		font-size: clamp(1.25rem, 5.2vw, 1.5rem);
		white-space: nowrap;
	}

	.cr-insights__arrow {
		width: 40px;
		height: 40px;
	}

	.cr-insights__track {
		scroll-snap-type: x mandatory;
		scroll-padding-inline: var(--cr-insights-gutter);
	}

	.cr-insights.is-scrolled .cr-insights__track {
		scroll-padding-left: max(var(--cr-insights-left-peek, 0px), 12px);
	}

	.cr-insights__slide {
		flex-basis: calc(var(--cr-insights-content) * 0.86);
		scroll-snap-stop: always;
	}

	.cr-insights__link {
		gap: 14px;
	}

	.cr-insights__body {
		gap: 8px;
	}

	.cr-insights__thumb {
		border-radius: 12px;
		aspect-ratio: 16 / 10;
	}

	.cr-insights__title {
		max-width: none;
		font-size: 1.125rem;
		line-height: 1.3;
	}

	.cr-insights__excerpt {
		-webkit-line-clamp: 2;
	}

	.cr-insights__cta {
		margin-top: var(--_perimeters---spaces--space-6xl, 32px);
	}
}

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

	.cr-insights__img,
	.cr-insights__arrow {
		transition: none;
	}

	.cr-insights__link:hover .cr-insights__img,
	.cr-insights__link:focus-visible .cr-insights__img {
		transform: none;
	}
}

/* -------------------------------------------------------------------------
   Manifesto — large type that darkens on scroll
   ------------------------------------------------------------------------- */

.cr-manifesto {
	width: 100%;
	padding-top: var(--_perimeters---spaces--space-10xl, 64px);
	padding-bottom: var(--_perimeters---spaces--space-12xl, 96px);
	background-color: var(--white, #fff);
	box-sizing: border-box;
}

.cr-manifesto__inner {
	display: flex;
	flex-direction: column;
	gap: clamp(1.75rem, 3.5vw, 2.75rem);
}

.cr-manifesto__p {
	margin: 0;
	color: var(--cr-manifesto-from, #cfc7bc);
	font-family: var(--_typography---font-family--helvetica-now-display, Helveticanowdisplay, Arial, sans-serif);
	font-size: clamp(1.5rem, 3.2vw, 2.375rem);
	font-weight: 500;
	letter-spacing: -0.03em;
	line-height: 1.28;
}

.cr-manifesto__word {
	display: inline-block;
	white-space: nowrap;
}

.cr-manifesto__char {
	display: inline-block;
	color: inherit;
	will-change: color;
}

@media screen and (max-width: 767px) {
	.cr-manifesto {
		padding-top: var(--_perimeters---spaces--space-8xl, 48px);
		padding-bottom: var(--_perimeters---spaces--space-9xl, 80px);
	}

	.cr-manifesto__inner {
		gap: 1.5rem;
	}

	.cr-manifesto__p {
		font-size: clamp(1.35rem, 5.5vw, 1.65rem);
		line-height: 1.32;
	}
}

@media (prefers-reduced-motion: reduce) {
	.cr-manifesto__p,
	.cr-manifesto__char {
		color: var(--black, #020202);
		will-change: auto;
	}
}

/* -------------------------------------------------------------------------
   Trust metrics — spacing + digit flip counter
   ------------------------------------------------------------------------- */

.cr-metrics {
	display: grid;
	width: 100%;
	margin-top: var(--_perimeters---spaces--space-8xl, 48px);
	row-gap: var(--_perimeters---spaces--space-8xl, 48px);
	column-gap: var(--_perimeters---gaps--gap-4xl, 24px);
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media screen and (min-width: 768px) {
	.cr-metrics {
		display: flex;
		flex-wrap: nowrap;
		justify-content: space-between;
		align-items: flex-start;
		column-gap: clamp(1.5rem, 4vw, 3.5rem);
		row-gap: 0;
		grid-template-columns: none;
	}

	.cr-metric {
		flex: 1 1 0;
		min-width: 0;
		max-width: none;
	}
}

@media screen and (min-width: 992px) {
	.cr-metric {
		flex: 0 1 auto;
		width: auto;
		min-width: 0;
		max-width: none;
	}
}

.cr-metric {
	display: flex;
	flex-direction: column;
	gap: var(--_perimeters---spaces--space-4xl, 32px);
}

.cr-metric > p {
	margin-top: 0;
}

@media screen and (min-width: 768px) and (max-width: 991px) {
	.cr-metric {
		gap: var(--_perimeters---spaces--space-3xl, 24px);
	}

	.cr-metric > p {
		font-size: 0.8125rem;
		line-height: 1.4;
	}
}

@media screen and (max-width: 767px) {
	.cr-metric {
		gap: var(--_perimeters---spaces--space-2xl, 16px);
	}

	.cr-metric > p {
		font-size: 0.8125rem;
		line-height: 1.4;
	}
}

.cr-metric__value--flip {
	display: inline-flex;
	align-items: baseline;
	letter-spacing: 0;
	font-variant-numeric: tabular-nums;
}

.cr-metric__digits {
	display: inline-flex;
	align-items: flex-start;
	gap: 0;
}

.cr-metric__digit {
	display: inline-block;
	overflow: hidden;
	width: 0.58em;
	height: 1em;
	line-height: 1;
	text-align: center;
}

.cr-metric__digit-track {
	display: flex;
	flex-direction: column;
	width: 100%;
	will-change: transform;
}

.cr-metric__digit-num {
	display: block;
	width: 100%;
	height: 1em;
	line-height: 1;
	text-align: center;
}

.cr-metric__digit-static {
	display: inline-block;
	width: 0.22em;
	margin-inline: -0.04em;
	line-height: 1;
	text-align: center;
}

.cr-metric__suffix {
	display: inline-block;
	margin-left: 0.02em;
	line-height: 1;
}

@media (prefers-reduced-motion: reduce) {
	.cr-metric__digit-track {
		will-change: auto;
	}
}

/* -------------------------------------------------------------------------
   Capabilities grid (homepage services)
   ------------------------------------------------------------------------- */

.cr-capabilities {
	background-color: var(--white, #fff);
}

.cr-capabilities__intro {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
	gap: 2rem 3rem;
	align-items: end;
}

.cr-capabilities__title {
	margin: 0;
	max-width: 18ch;
	color: var(--black, #020202);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: clamp(1.75rem, 3.5vw, 2.5rem);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.02em;
}

.cr-capabilities__aside {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 1.25rem;
	max-width: 24rem;
	justify-self: end;
}

.cr-capabilities__lede {
	margin: 0;
	color: var(--grey, #6e6e6e);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: clamp(1rem, 1.5vw, 1.125rem);
	font-weight: 400;
	line-height: 1.55;
}

.cr-capabilities__cta {
	margin: 0;
}

.cr-capabilities__cta .wp-block-button__link {
	background-color: var(--black, #020202) !important;
	color: var(--white, #fff) !important;
}

.cr-capabilities__cta .wp-block-button__link:hover,
.cr-capabilities__cta .wp-block-button__link:focus-visible {
	background-color: var(--primary, #e4ff60) !important;
	color: var(--black, #020202) !important;
}

.cr-capabilities__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
	margin-top: 2.75rem;
}

.cr-capability-card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border-radius: 1rem;
	background-color: #fbf8f5;
	box-shadow: 0 0 0 1px rgb(2 2 2 / 0.03);
	color: inherit;
	text-decoration: none;
	transform: translate3d(0, 0, 0);
	transition:
		transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
	will-change: transform;
}

a.cr-capability-card:focus-visible {
	outline: 2px solid var(--secondary, #3a1408);
	outline-offset: 3px;
}

.cr-capability-card:hover,
.cr-capability-card:focus-within {
	transform: translate3d(0, -8px, 0);
	box-shadow:
		0 0 0 1px rgb(2 2 2 / 0.04),
		0 18px 40px rgb(2 2 2 / 0.08);
}

.cr-capability-card__media {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	margin: 0 0 1.75rem;
	padding: 1.35rem 1.5rem 0.75rem 0;
	overflow: hidden;
	background-color: #fbf8f5;
}

.cr-capability-card__media img {
	display: block;
	width: 7.5rem;
	height: auto;
	max-width: 42%;
	object-fit: contain;
	object-position: left center;
	transform: translate3d(0, 0, 0);
	transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
	will-change: transform;
}

.cr-capability-card:hover .cr-capability-card__media img,
.cr-capability-card:focus-within .cr-capability-card__media img {
	transform: translate3d(0, -6px, 0);
}

.cr-capability-card__body {
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
	padding: 0 1.5rem 1.65rem;
}

.cr-capability-card__title {
	margin: 0;
	color: var(--black, #020202);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: clamp(1.125rem, 1.6vw, 1.35rem);
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: -0.015em;
}

.cr-capability-card__text {
	margin: 0;
	color: var(--grey, #6e6e6e);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: 0.9375rem;
	font-weight: 400;
	line-height: 1.55;
}

@media screen and (max-width: 991px) {
	.cr-capabilities__intro {
		grid-template-columns: 1fr;
		gap: 1.25rem;
		align-items: start;
	}

	.cr-capabilities__title {
		max-width: none;
	}

	.cr-capabilities__aside {
		max-width: 28rem;
		justify-self: start;
	}

	.cr-capabilities__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1rem;
	}
}

@media screen and (max-width: 599px) {
	.cr-capabilities__grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.cr-capability-card__media {
		padding: 1.2rem 1.25rem 0.65rem 0;
	}

	.cr-capability-card__media img {
		width: 6.75rem;
	}

	.cr-capability-card__body {
		padding: 0 1.25rem 1.4rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.cr-capability-card,
	.cr-capability-card__media img {
		transition: none;
		will-change: auto;
	}

	.cr-capability-card:hover,
	.cr-capability-card:focus-within {
		transform: none;
	}

	.cr-capability-card:hover .cr-capability-card__media img,
	.cr-capability-card:focus-within .cr-capability-card__media img {
		transform: none;
	}
}

/* -------------------------------------------------------------------------
   FAQ — Common questions (homepage)
   ------------------------------------------------------------------------- */

.cr-faq-section {
	background-color: var(--background, #faf5ef);
}

.cr-who-we-help--ketamine .cr-faq-section {
	background-color: var(--white, #fff);
}

.cr-who-we-help--psychiatrists .cr-faq__answer .cr-faq__answer-text + .cr-faq__answer-text {
	margin-top: 0.85rem;
}

.cr-faq {
	display: grid;
	grid-template-columns: minmax(12rem, 0.38fr) minmax(0, 0.62fr);
	gap: 2.5rem 4rem;
	align-items: start;
}

.cr-faq__title {
	margin: 0;
	padding-top: 1.35rem;
	color: var(--black, #020202);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: clamp(1.35rem, 2.2vw, 1.75rem);
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.02em;
}

.cr-faq__list {
	min-width: 0;
}

.cr-faq__item {
	margin: 0;
	border-bottom: 1px solid var(--black-10, rgb(2 2 2 / 0.1));
}

.cr-faq__item:last-child {
	border-bottom: none;
}

.cr-faq__question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.25rem;
	padding: 1.35rem 0;
	color: var(--black, #020202);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: clamp(1.05rem, 1.5vw, 1.25rem);
	font-weight: 400;
	line-height: 1.35;
	letter-spacing: -0.02em;
	cursor: pointer;
	list-style: none;
	user-select: none;
}

.cr-faq__question::-webkit-details-marker {
	display: none;
}

.cr-faq__question::marker {
	content: '';
}

.cr-faq__question:focus-visible {
	outline: 3px solid var(--primary, #e4ff60);
	outline-offset: 4px;
	border-radius: 2px;
}

.cr-faq__question-text {
	min-width: 0;
	flex: 1 1 auto;
}

.cr-faq__icon {
	position: relative;
	flex: none;
	width: 1rem;
	height: 1rem;
}

.cr-faq__icon-bar {
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	background-color: currentColor;
	border-radius: 1px;
	transform: translate(-50%, -50%);
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.cr-faq__icon-bar--h {
	width: 100%;
	height: 1.5px;
}

.cr-faq__icon-bar--v {
	width: 1.5px;
	height: 100%;
}

.cr-faq__item[open] .cr-faq__icon-bar--v {
	opacity: 0;
	transform: translate(-50%, -50%) scaleY(0);
}

.cr-faq__answer {
	overflow: hidden;
	padding: 0 2.5rem 0 0;
}

.cr-faq__answer-text {
	margin: 0;
	padding-bottom: 1.5rem;
	max-width: 38rem;
	color: var(--grey, #6e6e6e);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: clamp(0.9375rem, 1.2vw, 1.0625rem);
	font-weight: 400;
	line-height: 1.55;
}

@media screen and (max-width: 991px) {
	.cr-faq {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.cr-faq__title {
		padding-top: 0;
	}
}

@media screen and (max-width: 599px) {
	.cr-faq__question {
		padding: 1.15rem 0;
		gap: 1rem;
	}

	.cr-faq__answer {
		padding-right: 0;
	}

	.cr-faq__answer-text {
		padding-bottom: 1.25rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.cr-faq__icon-bar {
		transition: none;
	}
}

/* -------------------------------------------------------------------------- */
/* Services approach accordion                                                */
/* -------------------------------------------------------------------------- */

.cr-services-approach {
	padding-top: var(--_perimeters---spaces--space-12xl, 96px);
	padding-bottom: var(--_perimeters---spaces--space-12xl, 96px);
	background-color: var(--white, #fff);
}

.cr-services-approach__content {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(2rem, 4vw, 3.5rem);
	align-items: stretch;
}

.cr-services-approach__left {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: clamp(2rem, 3.5vw, 3rem);
	min-width: 0;
	height: 100%;
	padding-block: clamp(1.25rem, 2.5vw, 2rem);
}

.cr-services-approach__intro {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	max-width: 34rem;
}

.cr-services-approach__title {
	margin: 0;
	color: var(--black, #020202);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: clamp(1.85rem, 3.4vw, 2.75rem);
	font-weight: 700;
	line-height: 1.12;
	letter-spacing: -0.02em;
	text-wrap: balance;
}

.cr-services-approach__lede {
	margin: 0;
	color: var(--grey, #6e6e6e);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: clamp(1rem, 1.4vw, 1.125rem);
	font-weight: 400;
	line-height: 1.55;
	text-wrap: pretty;
}

.cr-services-approach__list {
	display: flex;
	flex-direction: column;
	margin: 0;
	padding: 0;
	border-top: 1px solid rgb(2 2 2 / 0.1);
}

.cr-services-approach__item {
	border-bottom: 1px solid rgb(2 2 2 / 0.1);
}

.cr-services-approach__trigger {
	display: flex;
	align-items: center;
	gap: 0;
	width: 100%;
	margin: 0;
	padding: 1.15rem 0;
	border: 0;
	background: transparent;
	color: inherit;
	font: inherit;
	text-align: left;
	cursor: pointer;
	appearance: none;
}

.cr-services-approach__item.is-active .cr-services-approach__trigger {
	gap: 1rem;
}

.cr-services-approach--js .cr-services-approach__trigger,
.cr-services-approach--js .cr-services-approach__item.is-active .cr-services-approach__trigger {
	gap: 0; /* spacing comes from animated thumb margin-right */
}

.cr-services-approach__trigger:focus-visible {
	outline: 2px solid var(--primary, #e4ff60);
	outline-offset: 4px;
	border-radius: 8px;
}

.cr-services-approach__thumb {
	flex: 0 0 auto;
	width: 0;
	height: 0;
	margin: 0;
	overflow: hidden;
	border-radius: 0.85rem;
	box-shadow: 0 6px 18px rgb(0 0 0 / 0.08);
	opacity: 0;
	transform-origin: left center;
	will-change: transform, width, opacity, margin-right;
	backface-visibility: hidden;
}

.cr-services-approach__item.is-active .cr-services-approach__thumb {
	width: 4.5rem;
	height: 6rem;
	margin-right: 1rem;
	opacity: 1;
}

/* JS owns thumb size — prevent CSS from snapping mid-tween */
.cr-services-approach--js .cr-services-approach__thumb,
.cr-services-approach--js .cr-services-approach__item.is-active .cr-services-approach__thumb {
	width: 0;
	height: 0;
	margin-right: 0;
	opacity: 0;
}

.cr-services-approach__thumb img {
	display: block;
	width: 4.5rem;
	height: 6rem;
	max-width: none;
	object-fit: cover;
}

@media (prefers-reduced-motion: no-preference) {
	.cr-services-approach:not(.cr-services-approach--js) .cr-services-approach__item.is-active .cr-services-approach__thumb {
		animation: cr-approach-thumb-expand 0.7s cubic-bezier(0.4, 0, 0.2, 1) both;
	}
}

@keyframes cr-approach-thumb-expand {
	from {
		width: 0;
		height: 0;
		margin-right: 0;
		opacity: 0;
	}

	to {
		width: 4.5rem;
		height: 6rem;
		margin-right: 1rem;
		opacity: 1;
	}
}

.cr-services-approach__item-copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 0.4rem;
	min-width: 0;
	flex: 1;
}

.cr-services-approach__item.is-active .cr-services-approach__item-copy {
	min-height: 6rem;
	justify-content: center;
}

.cr-services-approach--js .cr-services-approach__item:not(.is-active) .cr-services-approach__item-copy {
	min-height: 0;
	height: auto;
}

.cr-services-approach--js .cr-services-approach__item.is-active .cr-services-approach__item-copy {
	min-height: 6rem;
}

.cr-services-approach__item-title {
	display: block;
	color: var(--black, #020202);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: clamp(1.25rem, 2vw, 1.5rem);
	font-weight: 400;
	line-height: 1.35;
	letter-spacing: -0.015em;
}

.cr-services-approach__item.is-active .cr-services-approach__item-title {
	font-weight: 400;
}

.cr-services-approach__panel {
	display: block;
}

.cr-services-approach__panel[hidden] {
	display: none;
}

.cr-services-approach__item-text {
	display: block;
	max-width: 28rem;
	color: var(--grey, #6e6e6e);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: 0.9375rem;
	font-weight: 400;
	line-height: 1.55;
}

.cr-services-approach__media {
	position: relative;
	margin: 0;
	width: 100%;
	height: 745px;
	min-height: 0;
	overflow: hidden;
	border-radius: 2rem;
	background-color: #f3f1ee;
}

.cr-services-approach__image {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 0;
	object-fit: cover;
	object-position: center;
}

/* Tablet: keep copy + media side by side */
@media screen and (min-width: 768px) and (max-width: 991px) {
	.cr-services-approach {
		padding-top: var(--_perimeters---spaces--space-9xl, 80px);
		padding-bottom: var(--_perimeters---spaces--space-9xl, 80px);
	}

	.cr-services-approach__content {
		grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
		gap: 1.75rem;
		align-items: stretch;
	}

	.cr-services-approach__left {
		padding-block: 0.75rem;
		gap: 1.75rem;
	}

	.cr-services-approach__title {
		font-size: clamp(1.65rem, 2.8vw, 2.15rem);
	}

	.cr-services-approach__media {
		height: 100%;
		min-height: 32rem;
		border-radius: 1.5rem;
	}
}

@media screen and (max-width: 767px) {
	.cr-services-approach {
		padding-top: var(--_perimeters---spaces--space-9xl, 80px);
		padding-bottom: var(--_perimeters---spaces--space-9xl, 80px);
	}

	.cr-services-approach__content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.cr-services-approach__media {
		order: -1;
		max-width: 28rem;
		margin-inline: auto;
		height: auto;
		aspect-ratio: 4 / 5;
		border-radius: 1.5rem;
	}

	.cr-services-approach__image {
		min-height: 0;
	}
}

@media screen and (max-width: 599px) {
	.cr-services-approach__item.is-active .cr-services-approach__thumb {
		width: 6rem;
		height: 8rem;
		margin-right: 1rem;
	}

	.cr-services-approach__thumb img {
		width: 6rem;
		height: 8rem;
	}

	.cr-services-approach__item.is-active .cr-services-approach__item-copy {
		min-height: 8rem;
	}

	.cr-services-approach--js .cr-services-approach__item.is-active .cr-services-approach__item-copy {
		min-height: 0;
	}

	.cr-services-approach__trigger {
		padding: 1rem 0;
	}

	.cr-services-approach__item.is-active .cr-services-approach__trigger {
		gap: 0.85rem;
	}

	.cr-services-approach--js .cr-services-approach__item.is-active .cr-services-approach__trigger {
		gap: 0;
	}

	.cr-services-approach__media {
		max-width: none;
		height: auto;
		aspect-ratio: 4 / 5;
		border-radius: 1.25rem;
	}

	.cr-services-approach__image {
		min-height: 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	.cr-services-approach__item.is-active .cr-services-approach__thumb {
		animation: none;
	}
}

/* -------------------------------------------------------------------------- */
/* Services page — Healen Service V1 hero + homepage gutters                  */
/* -------------------------------------------------------------------------- */

.cr-services-page .hero-service-01 {
	position: relative;
	display: flex;
	align-items: flex-end;
	width: 100%;
	min-height: 100svh;
	height: 100vh;
	overflow: hidden;
	box-sizing: border-box;
}

.cr-services-page__hero-media,
.cr-services-page .cr-hero__visual {
	position: absolute;
	inset: 0;
	z-index: 0;
	min-height: 0;
	overflow: hidden;
	border-radius: 0;
	background: none;
}

.cr-services-page__hero-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 20%;
	display: block;
}

.cr-services-page__hero-veil {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		linear-gradient(180deg, rgb(2 2 2 / 0.48) 0%, rgb(2 2 2 / 0.18) 40%, rgb(2 2 2 / 0.52) 100%),
		radial-gradient(ellipse 65% 50% at 50% 45%, rgb(2 2 2 / 0.28) 0%, transparent 72%);
}

.cr-services-page .service-hero-01 {
	position: relative;
	z-index: 1;
	width: 100%;
	height: auto;
	min-height: 0;
	padding-top: 7.5rem;
	padding-bottom: var(--_perimeters---spaces--space-9xl, 80px);
	padding-left: var(--_perimeters---containers--container-xs, 30px);
	padding-right: var(--_perimeters---containers--container-xs, 30px);
	box-sizing: border-box;
}

.cr-services-page .service-hero-01.container-full {
	align-items: flex-end;
	justify-content: center;
}

.cr-services-page .servuce-hero-content-01 {
	width: 100%;
	max-width: var(--_perimeters---containers--container-lg, 1340px);
	margin-left: auto;
	margin-right: auto;
	padding-top: 0;
	padding-bottom: 0;
	box-sizing: border-box;
}

.cr-services-page .service-hero-body-01 {
	width: 100%;
	align-items: flex-end;
}

.cr-services-page .serivce-hero-title-01 {
	margin: 0;
	max-width: 672px;
	text-wrap: balance;
	text-shadow: 0 1px 2px rgb(0 0 0 / 0.28), 0 6px 24px rgb(0 0 0 / 0.32);
}

.cr-services-page .service-hero-body-inside {
	max-width: 363px;
}

.cr-services-page .service-hero-body-text {
	margin: 0;
	text-wrap: pretty;
	text-shadow: 0 1px 2px rgb(0 0 0 / 0.25), 0 4px 18px rgb(0 0 0 / 0.28);
}

.cr-services-page .service-hero-btns-01 .button-01 {
	background-color: var(--primary, #e4ff60);
	color: var(--black, #020202);
}

.cr-services-page .service-hero-btns-01 .button-01:hover,
.cr-services-page .service-hero-btns-01 .button-01:focus-visible {
	background-color: var(--white, #fff);
	color: var(--black, #020202);
}

.cr-services-page__grid-section {
	background-color: var(--white, #fff);
	padding-top: var(--_perimeters---spaces--space-12xl, 96px);
	padding-bottom: var(--_perimeters---spaces--space-12xl, 96px);
}

.cr-services-page__intro {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 1rem;
	max-width: 40rem;
	margin-bottom: 2.75rem;
}

.cr-services-page__title {
	margin: 0;
	color: var(--black, #020202);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: clamp(1.75rem, 3.5vw, 2.5rem);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.02em;
}

.cr-services-page__lede {
	margin: 0;
	color: var(--grey, #6e6e6e);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: clamp(1rem, 1.5vw, 1.125rem);
	font-weight: 400;
	line-height: 1.55;
}

.cr-services-page__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
}

.cr-services-page__card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border-radius: 1.5rem;
	background-color: #fbf8f5;
	box-shadow: 0 0 0 1px rgb(2 2 2 / 0.03);
	color: inherit;
	text-decoration: none;
	transform: translate3d(0, 0, 0);
	transition:
		transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

a.cr-services-page__card:focus-visible {
	outline: 2px solid var(--secondary, #3a1408);
	outline-offset: 3px;
}

.cr-services-page__card:hover,
.cr-services-page__card:focus-within {
	transform: translate3d(0, -8px, 0);
	box-shadow:
		0 0 0 1px rgb(2 2 2 / 0.04),
		0 18px 40px rgb(2 2 2 / 0.08);
}

.cr-services-page__card-media {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	margin: 0 0 1.5rem;
	padding: 1.35rem 1.5rem 0.5rem 0;
	overflow: hidden;
}

.cr-services-page__card-media img {
	display: block;
	width: 7.5rem;
	height: auto;
	max-width: 42%;
	object-fit: contain;
	object-position: left center;
	transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.cr-services-page__card:hover .cr-services-page__card-media img,
.cr-services-page__card:focus-within .cr-services-page__card-media img {
	transform: translate3d(0, -6px, 0);
}

.cr-services-page__card-body {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	flex: 1;
	padding: 0 1.5rem 1.65rem;
}

.cr-services-page__card-title {
	margin: 0;
	color: var(--black, #020202);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: clamp(1.125rem, 1.6vw, 1.35rem);
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: -0.015em;
}

.cr-services-page__card-text {
	margin: 0;
	color: var(--grey, #6e6e6e);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: 0.9375rem;
	font-weight: 400;
	line-height: 1.55;
}

.cr-services-page__includes {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin-top: auto;
	padding-top: 0.75rem;
}

.cr-services-page__includes-label {
	margin: 0;
	color: var(--secondary, #3a1408);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: 0.8125rem;
	font-weight: 500;
	letter-spacing: -0.01em;
}

.cr-services-page__includes-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.cr-services-page__includes-list li {
	position: relative;
	padding-left: 0.9rem;
	color: var(--grey, #6e6e6e);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: 0.875rem;
	line-height: 1.45;
}

.cr-services-page__includes-list li::before {
	content: "";
	position: absolute;
	top: 0.55em;
	left: 0;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background-color: var(--primary, #e4ff60);
	box-shadow: 0 0 0 1px rgb(2 2 2 / 0.12);
}

.cr-services-page__footer-cta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem 2rem;
	margin-top: 3.5rem;
	padding: 2rem 2.25rem;
	border-radius: 1.5rem;
	background-color: #fbf8f5;
	box-shadow: 0 0 0 1px rgb(2 2 2 / 0.03);
}

.cr-services-page__footer-text {
	margin: 0;
	max-width: 36rem;
	color: var(--black, #020202);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: clamp(1.05rem, 1.6vw, 1.25rem);
	font-weight: 500;
	line-height: 1.4;
	letter-spacing: -0.02em;
}

@media screen and (max-width: 991px) {
	.cr-services-page .hero-service-01 {
		height: auto;
		min-height: 100svh;
	}

	.cr-services-page .service-hero-01 {
		padding-top: 160px;
		padding-bottom: var(--_perimeters---spaces--space-9xl, 80px);
	}

	.cr-services-page .servuce-hero-content-01 {
		padding-top: 0;
	}

	.cr-services-page .service-hero-body-01 {
		align-items: stretch;
	}

	.cr-services-page__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1rem;
	}

	.cr-services-page__grid-section {
		padding-top: var(--_perimeters---spaces--space-9xl, 80px);
		padding-bottom: var(--_perimeters---spaces--space-9xl, 80px);
	}
}

@media screen and (max-width: 767px) {
	.cr-services-page .service-hero-01 {
		padding-top: 6.5rem;
		padding-bottom: var(--_perimeters---spaces--space-6xl, 40px);
		padding-left: var(--_perimeters---containers--container-xs, 16px);
		padding-right: var(--_perimeters---containers--container-xs, 16px);
	}

	.cr-services-page .servuce-hero-content-01 {
		padding-top: 0;
		max-width: 100%;
	}

	.cr-services-page .service-hero-body-01 {
		text-align: left;
		align-items: flex-start;
	}

	.cr-services-page .serivce-hero-title-01,
	.cr-services-page .service-hero-body-inside {
		max-width: 100%;
	}

	.cr-services-page .service-hero-btns-01 {
		margin-left: 0;
		margin-right: 0;
	}

	.cr-services-page__footer-cta {
		flex-direction: column;
		align-items: flex-start;
		padding: 1.5rem;
	}
}

@media screen and (max-width: 599px) {
	.cr-services-page__grid {
		grid-template-columns: minmax(0, 1fr);
	}
}

@media (prefers-reduced-motion: reduce) {
	.cr-services-page__card,
	.cr-services-page__card-media img {
		transition: none;
	}

	.cr-services-page__card:hover,
	.cr-services-page__card:focus-within {
		transform: none;
	}

	.cr-services-page__card:hover .cr-services-page__card-media img,
	.cr-services-page__card:focus-within .cr-services-page__card-media img {
		transform: none;
	}
}

/* -------------------------------------------------------------------------- */
/* Single service — Healen Service Details hero + overview                    */
/* -------------------------------------------------------------------------- */

.cr-single-service .hero-service-single {
	position: relative;
	display: flex;
	align-items: stretch;
	width: 100%;
	min-height: 100svh;
	height: 100vh;
	overflow: hidden;
	box-sizing: border-box;
}

.cr-single-service__hero-media {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
}

.cr-single-service__hero-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 20%;
	display: block;
}

.cr-single-service__hero-veil {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		linear-gradient(180deg, rgb(2 2 2 / 0.42) 0%, rgb(2 2 2 / 0.22) 42%, rgb(2 2 2 / 0.58) 100%),
		radial-gradient(ellipse 70% 55% at 50% 40%, rgb(2 2 2 / 0.22) 0%, transparent 70%);
}

.cr-single-service .service-single-hero {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	width: 100%;
	min-height: 100%;
	padding-top: 7.5rem;
	padding-bottom: var(--_perimeters---spaces--space-11xl, 90px);
	padding-left: var(--_perimeters---containers--container-xs, 30px);
	padding-right: var(--_perimeters---containers--container-xs, 30px);
	box-sizing: border-box;
}

.cr-single-service .service-single-hero-content {
	width: 100%;
	max-width: 794px;
	margin-left: auto;
	margin-right: auto;
	padding-top: 0;
	color: var(--white, #fff);
	text-align: center;
	align-items: center;
}

.cr-single-service .service-single-hero-title {
	margin: 0;
	max-width: 794px;
	color: var(--white, #fff);
	line-height: 1.12;
	text-wrap: balance;
	text-shadow: 0 1px 2px rgb(0 0 0 / 0.28), 0 6px 24px rgb(0 0 0 / 0.32);
}

.cr-single-service .service-single-hero-text {
	width: 100%;
	max-width: 674px;
	margin: 30px 0;
	color: var(--white, #fff);
	text-wrap: pretty;
	text-shadow: 0 1px 2px rgb(0 0 0 / 0.25), 0 4px 18px rgb(0 0 0 / 0.28);
}

.cr-single-service .service-single-hero-btns {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--_perimeters---gaps--gap-lg, 16px);
}

.cr-single-service .service-single-hero-btns .button-01 {
	background-color: var(--primary, #e4ff60);
	color: var(--black, #020202);
}

.cr-single-service .service-single-hero-btns .button-01:hover,
.cr-single-service .service-single-hero-btns .button-01:focus-visible {
	background-color: var(--white, #fff);
	color: var(--black, #020202);
}

.cr-single-service .service-single-hero-btns .button-01--on-dark {
	background-color: var(--white, #fff);
	color: var(--black, #020202);
}

.cr-single-service .service-single-hero-btns .button-01--on-dark:hover,
.cr-single-service .service-single-hero-btns .button-01--on-dark:focus-visible {
	background-color: var(--primary, #e4ff60);
	color: var(--black, #020202);
}

.cr-single-service .service-single-infos {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: var(--_perimeters---gaps--gap-6xl, 40px);
	margin: 30px 0 0;
	padding: 0;
	list-style: none;
}

.cr-single-service .service-hero-single-info {
	display: flex;
	align-items: center;
	gap: var(--_perimeters---spaces--space-xxs, 8px);
	color: var(--white, #fff);
}

.cr-single-service .service-hero-single-info .p2-regular {
	margin: 0;
	color: inherit;
}

.cr-single-service__info-ico {
	display: inline-flex;
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	color: var(--white, #fff);
}

.cr-single-service__info-ico svg {
	display: block;
	width: 100%;
	height: 100%;
}

.cr-single-service__overview {
	background-color: var(--background, #faf5ef);
	padding-top: var(--_perimeters---spaces--space-10xl, 85px);
	padding-bottom: var(--_perimeters---spaces--space-10xl, 85px);
}

.cr-single-service__overview-inner {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	gap: clamp(2.5rem, 6vw, 5.5rem);
	width: min(
		calc(100% - (2 * var(--_perimeters---containers--container-xs, 30px))),
		var(--cr-container-md)
	);
}

.cr-single-service__overview-copy {
	display: flex;
	flex: 1 1 0;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	box-sizing: border-box;
	order: 1;
	min-width: 0;
	min-height: 0;
	max-width: 34rem;
	gap: 2rem;
	padding-top: 1.25rem;
	padding-bottom: 1.25rem;
}

.cr-single-service__overview-head {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	flex-shrink: 0;
	width: 100%;
}

.cr-single-service__overview-features {
	display: flex;
	flex-direction: column;
	flex-shrink: 0;
	width: 100%;
	margin-top: auto;
}

.cr-single-service__eyebrow {
	margin: 0 0 1rem;
	color: var(--secondary, #af7c54);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: clamp(1rem, 1.4vw, 1.125rem);
	font-weight: 400;
	line-height: 1.5;
}

.cr-single-service__overview-title {
	margin: 0 0 1.25rem;
	color: var(--black, #020202);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: clamp(1.75rem, 4.2vw, 2.5rem);
	font-weight: 700;
	line-height: 1.12;
	letter-spacing: -0.025em;
	text-wrap: balance;
}

.cr-single-service__overview-text,
.cr-single-service__prose {
	margin: 0;
	color: var(--grey, #6e6e6e);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	text-wrap: pretty;
}

.cr-single-service__prose > *:first-child {
	margin-top: 0;
}

.cr-single-service__prose > *:last-child {
	margin-bottom: 0;
}

.cr-single-service__feature-list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin: 0;
	padding: 0;
	list-style: none;
	width: 100%;
}

.cr-single-service__feature {
	display: flex;
	align-items: center;
	gap: 0.85rem;
}

.cr-single-service__feature-ico {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 2.75rem;
	height: 2.75rem;
	border: 0;
	border-radius: 0.75rem;
	background-color: rgb(255 255 255 / 0.85);
	box-shadow: 0 4px 14px rgb(2 2 2 / 0.06), 0 1px 3px rgb(2 2 2 / 0.04);
	color: var(--secondary, #af7c54);
}

.cr-single-service__feature-ico svg {
	display: block;
	width: 1.35rem;
	height: 1.35rem;
}

.cr-single-service__feature-label {
	color: var(--black, #020202);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: clamp(1.125rem, 1.7vw, 1.3125rem);
	font-weight: 400;
	line-height: 1.35;
	letter-spacing: -0.01em;
}

.cr-single-service__overview-media {
	margin: 0;
	flex: 0 1 clamp(20rem, 44%, 30rem);
	order: 2;
	width: clamp(20rem, 44%, 30rem);
	max-width: 30rem;
	aspect-ratio: 3 / 4;
	border-radius: 2rem;
	overflow: hidden;
	background-color: #ebe4dc;
}

.cr-single-service__overview-media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 20%;
}

.cr-single-service__includes {
	background-color: var(--secondary, #af7c54);
	padding-top: var(--_perimeters---spaces--space-10xl, 85px);
	padding-bottom: var(--_perimeters---spaces--space-10xl, 85px);
}

.cr-single-service__includes-inner {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: clamp(2rem, 5vw, 3.5rem);
	width: min(
		calc(100% - (2 * var(--_perimeters---containers--container-xs, 30px))),
		var(--cr-container-md)
	);
}

.cr-single-service__includes-media {
	margin: 0;
	flex: 0 1 32rem;
	width: min(100%, 32rem);
	max-width: 32.8rem;
	height: 39.6rem;
	position: sticky;
	top: 2.5rem;
}

.cr-single-service__includes-media-frame {
	width: 100%;
	height: 100%;
	border-radius: 2rem;
	overflow: hidden;
	background-color: rgb(0 0 0 / 0.12);
}

.cr-single-service__includes-media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.cr-single-service__includes-info {
	display: flex;
	flex: 1 1 18rem;
	flex-direction: column;
	gap: 3rem;
	max-width: 31.25rem;
	min-width: 0;
}

.cr-single-service__includes-head {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	color: var(--white, #fff);
}

.cr-single-service__includes-eyebrow {
	margin: 0;
	color: var(--primary, #e4ff60);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: 1.125rem;
	font-weight: 400;
	line-height: 1.5;
}

.cr-single-service__includes-title {
	margin: 0;
	color: var(--white, #fff);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.02em;
	text-wrap: balance;
}

.cr-single-service__includes-lede {
	margin: 0;
	color: rgb(255 255 255 / 0.72);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	text-wrap: pretty;
}

.cr-single-service__includes-cards {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.25rem;
	align-items: start;
}

.cr-single-service__include-card {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	padding: 1.25rem;
	border-radius: 1rem;
	background-color: var(--white-10, rgb(255 255 255 / 0.1));
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	color: var(--white, #fff);
}

.cr-single-service__include-card--offset {
	margin-top: 7rem;
}

.cr-single-service__include-ico {
	display: inline-flex;
	width: 2rem;
	height: 2rem;
	padding-bottom: var(--_perimeters---spaces--space-8xl, 48px);
	box-sizing: content-box;
	color: var(--white, #fff);
}

.cr-single-service__include-ico svg {
	display: block;
	width: 100%;
	height: 100%;
}

.cr-single-service__include-ico .fa-solid {
	display: block;
	font-size: 1.35rem;
	line-height: 1;
}

.cr-single-service__include-title {
	margin: 0;
	color: var(--white, #fff);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: -0.015em;
}

.cr-single-service__include-text {
	margin: 0;
	color: rgb(255 255 255 / 0.72);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: 0.9375rem;
	font-weight: 400;
	line-height: 1.5;
}

.cr-single-service__cta {
	background-color: var(--background, #faf5ef);
	padding-top: var(--_perimeters---spaces--space-9xl, 64px);
	padding-bottom: var(--_perimeters---spaces--space-9xl, 64px);
}

.cr-single-service__cta-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem 2rem;
	padding: 2rem 2.25rem;
	border-radius: 1.5rem;
	background-color: var(--white, #fff);
	box-shadow: 0 0 0 1px rgb(2 2 2 / 0.03);
}

.cr-single-service__cta-copy {
	flex: 1 1 20rem;
	max-width: 36rem;
}

.cr-single-service__cta-title {
	margin: 0 0 0.65rem;
	color: var(--black, #020202);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: clamp(1.25rem, 2vw, 1.65rem);
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: -0.02em;
}

.cr-single-service__cta-text {
	margin: 0;
	color: var(--grey, #6e6e6e);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: 1rem;
	line-height: 1.55;
}

@media screen and (max-width: 991px) {
	.cr-single-service .hero-service-single {
		height: auto;
		min-height: 100svh;
	}

	.cr-single-service .service-single-hero {
		padding-top: 160px;
		padding-bottom: var(--_perimeters---spaces--space-9xl, 80px);
	}

	.cr-single-service .service-single-hero-title {
		max-width: 500px;
	}

	/* Tablet: keep overview side-by-side, tighten proportions. */
	.cr-single-service__overview-inner {
		gap: clamp(1.5rem, 3.5vw, 2.5rem);
	}

	.cr-single-service__overview-copy {
		max-width: none;
		flex: 1 1 0;
		padding-top: 0.75rem;
		padding-bottom: 0.75rem;
		gap: 1.5rem;
	}

	.cr-single-service__overview-media {
		flex: 0 1 clamp(16rem, 42%, 24rem);
		width: clamp(16rem, 42%, 24rem);
		max-width: 24rem;
	}

	.cr-single-service__overview-title {
		font-size: clamp(1.625rem, 3.2vw, 2.125rem);
		margin-bottom: 1rem;
	}

	.cr-single-service__feature-label {
		font-size: clamp(1rem, 1.6vw, 1.125rem);
	}

	/* Tablet: keep includes side-by-side, tighten media + cards. */
	.cr-single-service__includes-inner {
		gap: clamp(1.5rem, 3.5vw, 2.5rem);
	}

	.cr-single-service__includes-media {
		flex: 0 1 clamp(14rem, 38%, 22rem);
		width: clamp(14rem, 38%, 22rem);
		max-width: 22rem;
		height: auto;
		aspect-ratio: 3 / 4;
		position: sticky;
		top: 2rem;
		align-self: flex-start;
	}

	.cr-single-service__includes-media-frame {
		aspect-ratio: 3 / 4;
	}

	.cr-single-service__includes-info {
		flex: 1 1 0;
		max-width: none;
		gap: 1.75rem;
	}

	.cr-single-service__includes-title {
		font-size: clamp(1.5rem, 3vw, 2rem);
	}

	.cr-single-service__includes-cards {
		gap: 1rem;
	}

	.cr-single-service__include-card {
		padding: 1rem;
	}

	.cr-single-service__include-card--offset {
		margin-top: 3.5rem;
	}
}

@media screen and (max-width: 767px) {
	.cr-single-service .service-single-hero {
		padding-top: 6.5rem;
		padding-bottom: var(--_perimeters---spaces--space-6xl, 40px);
		padding-left: var(--_perimeters---containers--container-xs, 16px);
		padding-right: var(--_perimeters---containers--container-xs, 16px);
	}

	.cr-single-service .service-single-hero-content {
		padding-left: 0;
		padding-right: 0;
	}

	.cr-single-service .service-single-hero-title {
		max-width: 100%;
	}

	.cr-single-service .service-single-hero-text {
		margin-top: 20px;
		margin-bottom: 24px;
	}

	.cr-single-service .service-single-infos {
		gap: var(--_perimeters---gaps--gap-lg, 16px) 1.5rem;
	}

	.cr-single-service__overview {
		padding-top: var(--_perimeters---spaces--space-9xl, 80px);
		padding-bottom: var(--_perimeters---spaces--space-9xl, 80px);
	}

	.cr-single-service__includes {
		padding-top: var(--_perimeters---spaces--space-9xl, 80px);
		padding-bottom: var(--_perimeters---spaces--space-9xl, 80px);
	}

	/* Phone: stack overview — reset the desktop stretch flex that
	 * collapses copy height when the axis flips to column. */
	.cr-single-service__overview-inner {
		flex-direction: column;
		align-items: stretch;
		gap: 2rem;
	}

	.cr-single-service__overview-copy {
		order: 1;
		flex: 0 0 auto;
		max-width: 100%;
		min-height: auto;
		height: auto;
		padding-top: 0;
		padding-bottom: 0;
		gap: 1.75rem;
		justify-content: flex-start;
	}

	.cr-single-service__overview-features {
		margin-top: 0;
	}

	.cr-single-service__overview-title {
		margin-bottom: 1rem;
		font-size: clamp(1.625rem, 7.2vw, 2rem);
	}

	.cr-single-service__overview-text,
	.cr-single-service__prose {
		font-size: 0.9375rem;
		line-height: 1.55;
	}

	.cr-single-service__feature-list {
		gap: 0.85rem;
	}

	.cr-single-service__feature-label {
		font-size: 1.0625rem;
	}

	.cr-single-service__overview-media {
		order: 2;
		flex: 0 0 auto;
		width: 100%;
		max-width: 100%;
		border-radius: 1.5rem;
		aspect-ratio: 4 / 3;
	}

	.cr-single-service__feature-ico {
		width: 2.5rem;
		height: 2.5rem;
		border-radius: 0.65rem;
	}

	/* Phone: stack includes. */
	.cr-single-service__includes-inner {
		flex-direction: column;
		gap: 2rem;
	}

	.cr-single-service__includes-media {
		position: static;
		flex: 0 0 auto;
		width: 100%;
		max-width: 100%;
		height: auto;
		aspect-ratio: 5 / 4;
	}

	.cr-single-service__includes-media-frame {
		border-radius: 1.25rem;
		aspect-ratio: 5 / 4;
	}

	.cr-single-service__includes-info {
		max-width: 100%;
		gap: 1.75rem;
	}

	.cr-single-service__includes-cards {
		grid-template-columns: minmax(0, 1fr);
	}

	.cr-single-service__include-card--offset {
		margin-top: 0;
	}

	.cr-single-service__cta-inner {
		flex-direction: column;
		align-items: flex-start;
		padding: 1.5rem;
	}
}

/* -------------------------------------------------------------------------
   About page — Healen About V3 story hero
   ------------------------------------------------------------------------- */

.cr-about {
	background-color: var(--background, #faf5ef);
}

.cr-about__hero {
	padding-top: calc(70px + var(--_perimeters---spaces--space-11xl, 90px));
	padding-bottom: var(--_perimeters---spaces--space-10xl, 100px);
}

.cr-about__hero-inner {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: var(--_perimeters---spaces--space-6xl, 40px);
}

.cr-about__hero-left {
	flex: 1 1 34rem;
	max-width: 34rem;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.cr-about__eyebrow {
	margin: 0;
	color: var(--secondary-02, #906039);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: var(--_typography---p1--font-size, 18px);
	font-weight: 500;
	line-height: var(--_typography---p1--line-height, 150%);
	letter-spacing: var(--_typography---p1--letter-spacing, -0.36px);
}

.cr-about__title {
	margin: 0;
	color: var(--black, #020202);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: clamp(2.25rem, 4.2vw, 3.5rem);
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: -0.04em;
}

.cr-about__hero-right {
	flex: 1 1 26rem;
	max-width: 28rem;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--_perimeters---gaps--gap-xxl, 20px);
	padding-bottom: 0.25rem;
}

.cr-about__lede {
	margin: 0;
	color: var(--black, #020202);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: var(--_typography---p1--font-size, 18px);
	font-weight: 400;
	line-height: 1.55;
	letter-spacing: -0.02em;
}

/* Founder — bold portrait left, bio right */

.cr-about-founder {
	padding-top: var(--_perimeters---spaces--space-10xl, 100px);
	padding-bottom: var(--_perimeters---spaces--space-10xl, 100px);
	background-color: var(--white, #fff);
}

.cr-about-founder__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
	align-items: center;
	gap: clamp(2rem, 5vw, 4.5rem);
}

.cr-about-founder__media {
	margin: 0;
	border-radius: 1.25rem;
	overflow: hidden;
	width: auto;
	height: 745px;
	aspect-ratio: 4 / 5;
	background-color: #e8e0d6;
}

.cr-about-founder__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
}

.cr-about-founder__copy {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 1rem;
	max-width: 28rem;
}

.cr-about-founder__title {
	margin: 0;
	color: var(--black, #020202);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: clamp(1.85rem, 3.2vw, 2.75rem);
	font-weight: 700;
	line-height: 1.12;
	letter-spacing: -0.035em;
}

.cr-about-founder__bio {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-top: 0.35rem;
}

.cr-about-founder__bio p {
	margin: 0;
	color: var(--grey, #6e6e6e);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: var(--_typography---p1--font-size, 18px);
	font-weight: 400;
	line-height: 1.6;
	letter-spacing: -0.02em;
}

.cr-about-founder__byline {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
	margin: 0.75rem 0 0;
}

.cr-about-founder__name {
	color: var(--black, #020202);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: var(--_typography---p1--font-size, 18px);
	font-weight: 600;
	letter-spacing: -0.02em;
}

.cr-about-founder__role {
	color: var(--secondary-02, #906039);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: var(--_typography---p2--font-size, 16px);
	font-weight: 500;
	letter-spacing: -0.01em;
}

/* Excellence — sticky left headline, cards scroll with page */

.cr-about-excellence {
	min-height: 100vh;
	min-height: 100svh;
	background-color: var(--dawn-pink, #f2e9df);
	overflow: visible;
}

.cr-about-excellence__inner {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	align-items: start;
	gap: clamp(2rem, 4vw, 3.5rem);
	padding-top: var(--_perimeters---spaces--space-10xl, 100px);
	padding-bottom: var(--_perimeters---spaces--space-10xl, 100px);
	box-sizing: border-box;
}

.cr-about-excellence__left {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-self: start;
	position: sticky;
	top: 6.5rem;
	max-width: 28rem;
	padding-right: 0.5rem;
	padding-top: 0.5rem;
}

.cr-about-excellence__title {
	margin: 0.75rem 0 0;
	color: var(--black, #020202);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: clamp(2rem, 3.6vw, 3rem);
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -0.04em;
}

.cr-about-excellence__right {
	min-width: 0;
}

.cr-about-excellence__cols {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: start;
	gap: 1.35rem;
}

.cr-about-excellence__col {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.cr-about-excellence__col--offset {
	padding-top: 5.5rem;
}

.cr-about-excellence__card {
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
	padding: 1.5rem 1.35rem 1.65rem;
	border-radius: 1.25rem;
	background-color: var(--white, #fff);
	box-shadow: 0 0 0 1px rgb(2 2 2 / 0.03);
}

.cr-about-excellence__num {
	color: rgb(175 124 84 / 0.35);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: clamp(3.25rem, 5.5vw, 4.75rem);
	font-weight: 600;
	line-height: 1;
	letter-spacing: -0.04em;
}

.cr-about-excellence__card-title {
	margin: 78px 0 0;
	color: var(--black, #020202);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: clamp(1.45rem, 2.4vw, 1.9rem);
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: -0.03em;
}

.cr-about-excellence__card-text {
	margin: 0;
	color: var(--grey, #6e6e6e);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: var(--_typography---p2--font-size, 16px);
	line-height: 1.55;
	letter-spacing: -0.015em;
}

@media screen and (max-width: 991px) {
	.cr-about__hero {
		padding-top: calc(70px + var(--_perimeters---spaces--space-9xl, 80px));
		padding-bottom: var(--_perimeters---spaces--space-9xl, 80px);
	}

	.cr-about__hero-inner {
		flex-direction: column;
		align-items: flex-start;
		gap: 1.75rem;
	}

	.cr-about__hero-left,
	.cr-about__hero-right {
		flex: none;
		height: auto;
		max-width: 40rem;
	}

	.cr-about-founder__inner {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.cr-about-founder__media {
		max-width: 32rem;
		height: auto;
		width: 100%;
		aspect-ratio: 4 / 5;
	}

	.cr-about-founder__copy {
		max-width: 40rem;
	}

	.cr-about-excellence {
		min-height: 0;
	}

	.cr-about-excellence__inner {
		grid-template-columns: 1fr;
		gap: 2rem;
		padding-top: var(--_perimeters---spaces--space-10xl, 100px);
		padding-bottom: var(--_perimeters---spaces--space-10xl, 100px);
	}

	.cr-about-excellence__left {
		position: static;
		max-width: 36rem;
	}

	.cr-about-excellence__col--offset {
		padding-top: 3rem;
	}
}

@media screen and (max-width: 767px) {
	.cr-about__hero {
		padding-top: calc(64px + 2.5rem);
		padding-bottom: 3rem;
	}

	.cr-about__title {
		font-size: clamp(1.85rem, 8vw, 2.35rem);
	}

	.cr-about-founder {
		padding-top: 3.5rem;
		padding-bottom: 3.5rem;
	}

	.cr-about-founder__media {
		max-width: none;
		height: auto;
		width: 100%;
		border-radius: 1rem;
	}

	.cr-about-founder__title {
		font-size: clamp(1.65rem, 7vw, 2.1rem);
	}

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

	.cr-about-excellence__col--offset {
		padding-top: 0;
	}

	.cr-about-excellence__title {
		font-size: clamp(1.75rem, 7vw, 2.25rem);
	}

	.cr-about-excellence__card {
		padding: 1.25rem 1.15rem 1.4rem;
		border-radius: 1rem;
	}
}

/* -------------------------------------------------------------------------
   About support — headline, list, image, detail
   ------------------------------------------------------------------------- */

.cr-about-support {
	padding-top: var(--_perimeters---spaces--space-10xl, 100px);
	padding-bottom: var(--_perimeters---spaces--space-10xl, 100px);
	background-color: var(--background, #faf5ef);
}

.cr-about-support__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: clamp(1.5rem, 4vw, 4rem);
	margin-bottom: clamp(3rem, 6vw, 5rem);
}

.cr-about-support__title {
	margin: 0;
	flex: 1 1 28rem;
	max-width: 36rem;
	color: var(--black, #020202);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: clamp(2rem, 3.8vw, 3.25rem);
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -0.04em;
}

.cr-about-support__lede {
	margin: 0;
	flex: 0 1 24rem;
	max-width: 26rem;
	padding-top: 0.35rem;
	color: var(--grey, #6e6e6e);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: var(--_typography---p1--font-size, 18px);
	line-height: 1.55;
	letter-spacing: -0.02em;
}

.cr-about-support__body {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.05fr) minmax(0, 0.9fr);
	align-items: stretch;
	gap: clamp(1.25rem, 3vw, 2.5rem);
}

.cr-about-support__list {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-self: stretch;
	min-width: 0;
}

.cr-about-support__item {
	display: block;
	width: 100%;
	margin: 0;
	padding: 1.15rem 0;
	border: 0;
	border-top: 1px solid rgb(2 2 2 / 0.1);
	background: transparent;
	color: rgb(2 2 2 / 0.38);
	text-align: left;
	cursor: pointer;
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: clamp(1.125rem, 1.7vw, 1.375rem);
	font-weight: 400;
	line-height: 1.35;
	letter-spacing: -0.02em;
	transition: color 0.2s ease;
}

.cr-about-support__item:last-child {
	border-bottom: 1px solid rgb(2 2 2 / 0.1);
}

.cr-about-support__item:hover,
.cr-about-support__item:focus-visible {
	color: var(--black, #020202);
}

.cr-about-support__item:focus-visible {
	outline: 2px solid var(--secondary, #af7c54);
	outline-offset: 4px;
}

.cr-about-support__item.is-active {
	color: var(--black, #020202);
	font-weight: 700;
}

.cr-about-support__item-label {
	display: inline-flex;
	align-items: baseline;
	gap: 0.4rem;
}

.cr-about-support__item-plus {
	flex: none;
	font-weight: 700;
}

.cr-about-support__media {
	margin: 0;
	border-radius: 1.5rem;
	overflow: hidden;
	aspect-ratio: 3 / 4;
	background-color: #e8e0d6;
	min-height: 28rem;
}

.cr-about-support__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.cr-about-support__detail {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	min-width: 0;
	padding-top: 0.25rem;
}

.cr-about-support__detail-title {
	margin: 0;
	color: var(--black, #020202);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: clamp(1.5rem, 2.4vw, 2rem);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.03em;
}

.cr-about-support__detail-text {
	margin: 1rem 0 0;
	color: var(--grey, #6e6e6e);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: var(--_typography---p2--font-size, 16px);
	line-height: 1.55;
	letter-spacing: -0.015em;
}

.cr-about-support__thumb {
	position: relative;
	margin: auto 0 0;
	width: min(100%, 11rem);
	border-radius: 1rem;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	background-color: transparent;
	align-self: flex-end;
}

.cr-about-support__thumb img {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

@media screen and (max-width: 991px) {
	.cr-about-support__head {
		flex-direction: column;
		margin-bottom: 2.5rem;
	}

	.cr-about-support__title,
	.cr-about-support__lede {
		flex: none;
		height: auto;
		max-width: 40rem;
	}

	.cr-about-support__body {
		grid-template-columns: 1fr 1fr;
		gap: 1.5rem;
	}

	.cr-about-support__list {
		grid-column: 1 / -1;
		justify-content: flex-start;
	}

	.cr-about-support__media {
		min-height: 22rem;
	}

	.cr-about-support__thumb {
		margin-top: 1.5rem;
	}
}

@media screen and (max-width: 767px) {
	.cr-about-support {
		padding-top: 3.5rem;
		padding-bottom: 3.5rem;
	}

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

	.cr-about-support__media {
		display: none;
	}

	.cr-about-support__title {
		font-size: clamp(1.75rem, 7vw, 2.25rem);
	}

	.cr-about-support__thumb {
		order: -1;
		width: 100%;
		align-self: stretch;
		margin: 0 0 1.5rem;
	}
}

/* -------------------------------------------------------------------------
   Thank You / confirmation (conversion page)
   ------------------------------------------------------------------------- */

.cr-thanks {
	position: relative;
}

.cr-thanks__hero {
	position: relative;
	display: flex;
	align-items: stretch;
	justify-content: center;
	min-height: 100vh;
	min-height: 100svh;
	padding: var(--_perimeters---spaces--space-8xl, 48px) 0;
	box-sizing: border-box;
	overflow: hidden;
	background-color: #2a140c;
	text-align: center;
}

.cr-thanks__media {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	overflow: hidden;
}

.cr-thanks__bg {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.cr-thanks__veil {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(
			ellipse 70% 55% at 50% 42%,
			rgb(58 28 14 / 0.35) 0%,
			rgb(20 8 4 / 0.72) 55%,
			rgb(12 5 3 / 0.88) 100%
		),
		linear-gradient(
			180deg,
			rgb(20 8 4 / 0.45) 0%,
			rgb(20 8 4 / 0.55) 50%,
			rgb(20 8 4 / 0.72) 100%
		);
}

.cr-thanks__inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	flex: 1 1 auto;
	width: 100%;
	max-width: 40rem;
	min-height: calc(100vh - (2 * var(--_perimeters---spaces--space-8xl, 48px)));
	min-height: calc(100svh - (2 * var(--_perimeters---spaces--space-8xl, 48px)));
}

.cr-thanks__brand {
	flex: 0 0 auto;
	margin: 0;
}

.cr-thanks__logo {
	margin: 0;
}

.cr-thanks__logo a {
	color: var(--white, #fff);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: 1.875rem;
	font-weight: 500;
	line-height: 1;
	letter-spacing: -0.02em;
	text-decoration: none;
	transition: color 0.3s ease;
}

.cr-thanks__logo a:hover,
.cr-thanks__logo a:focus-visible {
	color: var(--primary, #e4ff60);
}

.cr-thanks__body {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex: 0 1 auto;
	width: 100%;
	padding: var(--_perimeters---spaces--space-5xl, 36px) 0;
}

.cr-thanks__mark {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 0 var(--_perimeters---spaces--space-4xl, 28px);
}

.cr-thanks__check {
	width: 4.5rem;
	height: 4.5rem;
}

.cr-thanks__check-ring {
	fill: none;
	stroke: var(--primary, #e4ff60);
	stroke-width: 2.5;
	opacity: 0.9;
}

.cr-thanks__check-path {
	fill: none;
	stroke: var(--primary, #e4ff60);
	stroke-width: 3.5;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.cr-thanks__title {
	margin: 0 0 var(--_perimeters---spaces--space-3xl, 24px);
	width: 100%;
	color: var(--white, #fff);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: clamp(2.5rem, 5.5vw, 4.25rem);
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: -0.04em;
	text-wrap: balance;
	text-shadow: 0 1px 2px rgb(0 0 0 / 0.35);
}

.cr-thanks__lede {
	margin: 0;
	width: 100%;
	max-width: 28rem;
	color: rgb(255 255 255 / 0.88);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
	font-weight: 400;
	line-height: 1.55;
	letter-spacing: -0.02em;
	text-wrap: pretty;
	text-shadow: 0 1px 2px rgb(0 0 0 / 0.3);
}

.cr-thanks__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.75rem 1rem;
	margin-top: var(--_perimeters---spaces--space-5xl, 36px);
}

.cr-thanks__btn.button-01 {
	background-color: var(--primary, #e4ff60);
	color: var(--black, #020202);
	border: 0;
	cursor: pointer;
	text-decoration: none;
}

.cr-thanks__btn.button-01:hover,
.cr-thanks__btn.button-01:focus-visible {
	background-color: var(--black, #020202);
	color: var(--white, #fff);
}

.cr-thanks__btn--ghost.button-01 {
	background-color: var(--white, #fff);
	color: var(--black, #020202);
	border: 1px solid var(--white, #fff);
}

.cr-thanks__btn--ghost.button-01:hover,
.cr-thanks__btn--ghost.button-01:focus-visible {
	background-color: var(--black, #020202);
	color: var(--white, #fff);
	border-color: var(--black, #020202);
}

.cr-thanks__help,
.cr-thanks__help-spacer {
	flex: 0 0 auto;
	margin: 0;
}

.cr-thanks__help {
	color: rgb(255 255 255 / 0.72);
	font-size: 0.9375rem;
	line-height: 1.5;
	letter-spacing: -0.02em;
}

.cr-thanks__help-spacer {
	display: block;
	height: 1.5em;
	visibility: hidden;
}

.cr-thanks__help a {
	color: var(--primary, #e4ff60);
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: border-color 0.3s ease, color 0.3s ease;
}

.cr-thanks__help a:hover,
.cr-thanks__help a:focus-visible {
	color: var(--white, #fff);
	border-bottom-color: rgb(255 255 255 / 0.5);
}

.cr-thanks__content {
	padding: var(--_perimeters---spaces--space-8xl, 48px) 0
		var(--_perimeters---spaces--space-10xl, 100px);
	color: var(--black, #020202);
}

.cr-thanks__content > *:first-child {
	margin-top: 0;
}

.cr-thanks__content > *:last-child {
	margin-bottom: 0;
}

@media (prefers-reduced-motion: no-preference) {
	.cr-thanks.cr-thanks--js [data-cr-enter] {
		will-change: opacity, transform, filter;
	}

	.cr-thanks.cr-thanks--js [data-cr-enter="image"] {
		opacity: 0;
		visibility: hidden;
	}

	.cr-thanks.cr-thanks--js [data-cr-enter="brand"],
	.cr-thanks.cr-thanks--js [data-cr-enter="mark"],
	.cr-thanks.cr-thanks--js [data-cr-enter="title"],
	.cr-thanks.cr-thanks--js [data-cr-enter="lede"],
	.cr-thanks.cr-thanks--js [data-cr-enter="actions"],
	.cr-thanks.cr-thanks--js [data-cr-enter="help"] {
		opacity: 0;
		visibility: hidden;
	}
}

@media screen and (max-width: 767px) {
	.cr-thanks__hero {
		padding-top: 2.5rem;
		padding-bottom: 2.5rem;
	}

	.cr-thanks__inner {
		min-height: calc(100vh - 5rem);
		min-height: calc(100svh - 5rem);
	}

	.cr-thanks__check {
		width: 3.75rem;
		height: 3.75rem;
	}

	.cr-thanks__title {
		font-size: clamp(2rem, 9vw, 2.75rem);
	}

	.cr-thanks__actions {
		flex-direction: column;
		width: auto;
	}

	.cr-thanks__btn.button-01 {
		width: auto;
	}
}

/* -------------------------------------------------------------------------- */
/* Who We Help — audience / vertical detail layout                            */
/* -------------------------------------------------------------------------- */

.cr-who-we-help__hero {
	position: relative;
	display: flex;
	align-items: stretch;
	width: 100%;
	min-height: 100svh;
	height: 100vh;
	overflow: hidden;
	box-sizing: border-box;
}

.cr-who-we-help__hero-media {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
}

.cr-who-we-help__hero-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 20%;
	display: block;
}

.cr-who-we-help__hero-veil {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		linear-gradient(180deg, rgb(2 2 2 / 0.42) 0%, rgb(2 2 2 / 0.22) 42%, rgb(2 2 2 / 0.58) 100%),
		radial-gradient(ellipse 70% 55% at 50% 40%, rgb(2 2 2 / 0.22) 0%, transparent 70%);
}

.cr-who-we-help__hero-inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	width: 100%;
	min-height: 100%;
	padding-top: 7.5rem;
	padding-bottom: var(--_perimeters---spaces--space-11xl, 90px);
	padding-left: var(--_perimeters---containers--container-xs, 30px);
	padding-right: var(--_perimeters---containers--container-xs, 30px);
	box-sizing: border-box;
	text-align: center;
}

.cr-who-we-help__hero-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.25rem;
	width: 100%;
	max-width: 44rem;
	margin-inline: auto;
	color: var(--white, #fff);
}

.cr-who-we-help__hero-title {
	margin: 0;
	color: var(--white, #fff);
	max-width: 18ch;
	text-wrap: balance;
}

.cr-who-we-help__hero-text {
	margin: 0;
	max-width: 36rem;
	color: rgb(255 255 255 / 0.82);
}

.cr-who-we-help__hero-btns {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: stretch;
	gap: 0.75rem 1rem;
	margin-top: 0.5rem;
}

/* Primary: lime + black */
.cr-who-we-help__hero-btns .button-01 {
	box-sizing: border-box;
	min-width: 15.5rem;
	min-height: 3.375rem;
	padding: 16px 40px;
	background-color: var(--primary, #e4ff60);
	color: var(--black, #020202);
	box-shadow: none;
	border: none;
}

.cr-who-we-help__hero-btns .button-01:hover,
.cr-who-we-help__hero-btns .button-01:focus-visible {
	background-color: var(--black, #020202);
	color: var(--white, #fff);
}

/* Secondary: white + black */
.cr-who-we-help__hero-btns .button-01.button-01--on-dark {
	background-color: var(--white, #fff);
	color: var(--black, #020202);
}

.cr-who-we-help__hero-btns .button-01.button-01--on-dark:hover,
.cr-who-we-help__hero-btns .button-01.button-01--on-dark:focus-visible {
	background-color: var(--black, #020202);
	color: var(--white, #fff);
}

.cr-who-we-help__infos {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem 1.5rem;
	list-style: none;
	margin: 1rem 0 0;
	padding: 0;
}

.cr-who-we-help__info {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: rgb(255 255 255 / 0.88);
}

.cr-who-we-help__info .p2-regular {
	margin: 0;
	color: inherit;
}

.cr-who-we-help__info-ico {
	display: inline-flex;
	flex-shrink: 0;
	color: var(--primary, #e4ff60);
}

.cr-who-we-help__info-ico svg {
	display: block;
}

.cr-who-we-help--tms .cr-hero--home .cr-hero__actions {
	max-width: 22rem;
}

.cr-who-we-help--tms .cr-hero--home .cr-hero__cta,
.cr-who-we-help--tms .cr-hero--home .cr-hero__cta .wp-block-button__link {
	width: 100%;
}

/* Ketamine hero — lifestyle banner; light veil for white copy only */
.cr-hero--ketamine .cr-hero__image {
	object-position: 68% center;
}

.cr-hero--ketamine .cr-hero__veil {
	background: linear-gradient(
		180deg,
		rgb(2 2 2 / 0.28) 0%,
		rgb(2 2 2 / 0.18) 45%,
		rgb(2 2 2 / 0.4) 100%
	);
}

.cr-who-we-help--ketamine .cr-hero--home .cr-hero__title {
	max-width: 16ch;
}

.cr-who-we-help--ketamine .cr-hero--home .cr-hero__lede {
	max-width: 34rem;
}

.cr-who-we-help--ketamine .cr-hero--home .cr-hero__actions {
	max-width: 36rem;
}

@media (max-width: 640px) {
	.cr-who-we-help--ketamine .cr-hero--home .cr-hero__actions {
		flex-direction: column;
		align-items: stretch;
		max-width: 22rem;
	}

	.cr-who-we-help--ketamine .cr-hero--home .cr-hero__cta,
	.cr-who-we-help--ketamine .cr-hero--home .cr-hero__cta .wp-block-button__link {
		width: 100%;
	}
}

/* Psychiatrists hero — darker overlay so white copy stays readable on a bright photo */
.cr-hero--psychiatrists .cr-hero__image {
	object-position: 55% center;
}

.cr-hero--psychiatrists .cr-hero__veil {
	background:
		linear-gradient(
			180deg,
			rgb(2 2 2 / 0.45) 0%,
			rgb(2 2 2 / 0.28) 40%,
			rgb(2 2 2 / 0.62) 100%
		),
		radial-gradient(
			ellipse 70% 55% at 50% 72%,
			rgb(2 2 2 / 0.4) 0%,
			transparent 70%
		);
}

/* Telehealth hero — bright living-room photo needs a stronger veil */
.cr-hero--telehealth .cr-hero__image {
	object-position: 42% center;
}

.cr-hero--telehealth .cr-hero__veil {
	background:
		linear-gradient(
			180deg,
			rgb(2 2 2 / 0.5) 0%,
			rgb(2 2 2 / 0.32) 38%,
			rgb(2 2 2 / 0.68) 100%
		),
		radial-gradient(
			ellipse 72% 58% at 48% 70%,
			rgb(2 2 2 / 0.42) 0%,
			transparent 72%
		);
}

.cr-who-we-help--telehealth .cr-hero--home .cr-hero__title {
	max-width: 20ch;
}

.cr-who-we-help--telehealth .cr-hero--home .cr-hero__lede {
	max-width: 36rem;
}

.cr-who-we-help--telehealth .cr-hero--home .cr-hero__actions {
	max-width: 36rem;
}

@media (max-width: 640px) {
	.cr-who-we-help--telehealth .cr-hero--home .cr-hero__actions {
		flex-direction: column;
		align-items: stretch;
		max-width: 22rem;
	}

	.cr-who-we-help--telehealth .cr-hero--home .cr-hero__cta,
	.cr-who-we-help--telehealth .cr-hero--home .cr-hero__cta .wp-block-button__link {
		width: 100%;
	}
}

.cr-who-we-help--psychiatrists .cr-hero--home .cr-hero__title {
	max-width: 18ch;
}

.cr-who-we-help--psychiatrists .cr-hero--home .cr-hero__lede {
	max-width: 36rem;
}

.cr-who-we-help--psychiatrists .cr-hero--home .cr-hero__actions {
	max-width: 36rem;
}

@media (max-width: 640px) {
	.cr-who-we-help--psychiatrists .cr-hero--home .cr-hero__actions {
		flex-direction: column;
		align-items: stretch;
		max-width: 22rem;
	}

	.cr-who-we-help--psychiatrists .cr-hero--home .cr-hero__cta,
	.cr-who-we-help--psychiatrists .cr-hero--home .cr-hero__cta .wp-block-button__link {
		width: 100%;
	}
}

/* Group practices hero — bright clinic meeting photo needs a stronger veil */
.cr-hero--group-practices .cr-hero__image {
	object-position: 58% center;
}

.cr-hero--group-practices .cr-hero__veil {
	background:
		linear-gradient(
			180deg,
			rgb(2 2 2 / 0.48) 0%,
			rgb(2 2 2 / 0.3) 40%,
			rgb(2 2 2 / 0.66) 100%
		),
		radial-gradient(
			ellipse 70% 55% at 48% 72%,
			rgb(2 2 2 / 0.4) 0%,
			transparent 70%
		);
}

.cr-who-we-help--group-practices .cr-hero--home .cr-hero__title {
	max-width: 16ch;
}

.cr-who-we-help--group-practices .cr-hero--home .cr-hero__lede {
	max-width: 38rem;
}

.cr-who-we-help--group-practices .cr-hero--home .cr-hero__actions {
	max-width: 36rem;
}

@media (max-width: 640px) {
	.cr-who-we-help--group-practices .cr-hero--home .cr-hero__actions {
		flex-direction: column;
		align-items: stretch;
		max-width: 22rem;
	}

	.cr-who-we-help--group-practices .cr-hero--home .cr-hero__cta,
	.cr-who-we-help--group-practices .cr-hero--home .cr-hero__cta .wp-block-button__link {
		width: 100%;
	}
}

/* Group practices — problem / failure modes (plain text, no icon grid) */
.cr-who-we-help--group-practices .cr-who-we-help__problems {
	background-color: var(--white, #fff);
	padding-top: clamp(4rem, 8vw, 6.5rem);
	padding-bottom: clamp(4rem, 8vw, 6.5rem);
}

.cr-who-we-help--group-practices .cr-who-we-help__problems-inner {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(2rem, 4vw, 4rem) clamp(2.5rem, 5vw, 5rem);
	align-items: stretch;
}

.cr-who-we-help--group-practices .cr-who-we-help__problems-title {
	margin: 0;
	max-width: 16ch;
	color: var(--black, #020202);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: clamp(1.75rem, 3.6vw, 2.6rem);
	font-weight: 400;
	line-height: 1.18;
	letter-spacing: -0.025em;
	text-wrap: balance;
	position: sticky;
	top: 6rem;
	align-self: start;
	z-index: 2;
}

.cr-who-we-help--group-practices .cr-who-we-help__problems-list {
	display: flex;
	flex-direction: column;
	margin: 0;
	padding: 0;
	list-style: none;
}

.cr-who-we-help--group-practices .cr-who-we-help__problems-item {
	margin: 0;
	padding-block: 1.15rem;
	border-bottom: 1px solid rgb(2 2 2 / 0.12);
	color: var(--black, #020202);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: clamp(1.05rem, 1.65vw, 1.25rem);
	font-weight: 400;
	line-height: 1.45;
	letter-spacing: -0.015em;
	text-wrap: pretty;
}

.cr-who-we-help--group-practices .cr-who-we-help__problems-item:first-child {
	padding-top: 0;
	border-top: 0;
}

.cr-who-we-help--group-practices .cr-who-we-help__problems-item:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

@media (max-width: 860px) {
	.cr-who-we-help--group-practices .cr-who-we-help__problems-inner {
		grid-template-columns: 1fr;
		gap: clamp(1.5rem, 3vw, 2rem);
	}

	.cr-who-we-help--group-practices .cr-who-we-help__problems-title {
		position: static;
		max-width: 18ch;
	}
}

/* Group practices — answer block (SEO / GEO definition) */
.cr-who-we-help--group-practices .cr-who-we-help__answer {
	background-color: var(--background, #faf5ef);
	padding-top: clamp(4rem, 8vw, 6.5rem);
	padding-bottom: clamp(4rem, 8vw, 6.5rem);
	scroll-margin-top: 5rem;
}

.cr-who-we-help--group-practices .cr-who-we-help__answer-inner {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(2rem, 4vw, 4rem) clamp(2.5rem, 5vw, 5rem);
	align-items: stretch;
}

.cr-who-we-help--group-practices .cr-who-we-help__answer-head {
	margin: 0;
	min-height: 100%;
}

.cr-who-we-help--group-practices .cr-who-we-help__answer-title {
	margin: 0;
	max-width: 16ch;
	color: var(--black, #020202);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: clamp(1.75rem, 3.6vw, 2.6rem);
	font-weight: 400;
	line-height: 1.18;
	letter-spacing: -0.025em;
	text-wrap: balance;
	position: sticky;
	top: 6rem;
	align-self: start;
	z-index: 2;
}

.cr-who-we-help--group-practices .cr-who-we-help__answer-body {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	min-width: 0;
}

.cr-who-we-help--group-practices .cr-who-we-help__answer-definition {
	margin: 0;
	color: var(--black, #020202);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: clamp(1.15rem, 1.9vw, 1.4rem);
	font-weight: 400;
	line-height: 1.45;
	letter-spacing: -0.015em;
	text-wrap: pretty;
}

.cr-who-we-help--group-practices .cr-who-we-help__answer-distinction {
	margin: 0;
	color: var(--grey, #6e6e6e);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: clamp(1.02rem, 1.4vw, 1.125rem);
	font-weight: 400;
	line-height: 1.55;
	letter-spacing: -0.01em;
	text-wrap: pretty;
}

.cr-who-we-help--group-practices .cr-who-we-help__answer-includes-title {
	margin: 0.75rem 0 0;
	color: var(--black, #020202);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: clamp(1.05rem, 1.5vw, 1.2rem);
	font-weight: 400;
	line-height: 1.35;
	letter-spacing: -0.015em;
}

.cr-who-we-help--group-practices .cr-who-we-help__answer-includes {
	display: flex;
	flex-direction: column;
	margin: 0;
	padding: 0;
	border-top: 1px solid rgb(2 2 2 / 0.12);
}

.cr-who-we-help--group-practices .cr-who-we-help__answer-include {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	gap: 0.75rem 1.25rem;
	margin: 0;
	padding-block: 1rem;
	border-bottom: 1px solid rgb(2 2 2 / 0.12);
}

.cr-who-we-help--group-practices .cr-who-we-help__answer-include-term {
	margin: 0;
	color: var(--black, #020202);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: clamp(1rem, 1.35vw, 1.1rem);
	font-weight: 500;
	line-height: 1.35;
	letter-spacing: -0.015em;
}

.cr-who-we-help--group-practices .cr-who-we-help__answer-include-def {
	margin: 0;
	color: var(--grey, #6e6e6e);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: clamp(0.98rem, 1.25vw, 1.05rem);
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: -0.01em;
	text-wrap: pretty;
}

@media (max-width: 860px) {
	.cr-who-we-help--group-practices .cr-who-we-help__answer-inner {
		grid-template-columns: 1fr;
		gap: clamp(1.5rem, 3vw, 2rem);
	}

	.cr-who-we-help--group-practices .cr-who-we-help__answer-title {
		position: static;
		max-width: 18ch;
	}

	.cr-who-we-help--group-practices .cr-who-we-help__answer-include {
		grid-template-columns: 1fr;
		gap: 0.35rem;
	}
}

/* Group practices — diagnostic checklist */
.cr-who-we-help--group-practices .cr-who-we-help__diagnose {
	background-color: var(--white, #fff);
	padding-top: clamp(4rem, 8vw, 6.5rem);
	padding-bottom: clamp(4rem, 8vw, 6.5rem);
}

.cr-who-we-help--group-practices .cr-who-we-help__diagnose-inner {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(2rem, 4vw, 4rem) clamp(2.5rem, 5vw, 5rem);
	align-items: stretch;
}

.cr-who-we-help--group-practices .cr-who-we-help__diagnose-head {
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	align-self: start;
	position: sticky;
	top: 6rem;
	z-index: 2;
}

.cr-who-we-help--group-practices .cr-who-we-help__diagnose-title {
	margin: 0;
	max-width: 16ch;
	color: var(--black, #020202);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: clamp(1.75rem, 3.6vw, 2.6rem);
	font-weight: 400;
	line-height: 1.18;
	letter-spacing: -0.025em;
	text-wrap: balance;
}

.cr-who-we-help--group-practices .cr-who-we-help__diagnose-lede {
	margin: 0;
	max-width: 28rem;
	color: var(--grey, #6e6e6e);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: clamp(1.02rem, 1.4vw, 1.125rem);
	line-height: 1.55;
	letter-spacing: -0.01em;
	text-wrap: pretty;
}

.cr-who-we-help--group-practices .cr-who-we-help__diagnose-list {
	display: flex;
	flex-direction: column;
	margin: 0;
	padding: 0;
	list-style: none;
}

.cr-who-we-help--group-practices .cr-who-we-help__diagnose-item {
	display: flex;
	align-items: flex-start;
	gap: 0.85rem;
	margin: 0;
	padding-block: 1.15rem;
	border-bottom: 1px solid rgb(2 2 2 / 0.12);
	color: var(--black, #020202);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: clamp(1.02rem, 1.45vw, 1.15rem);
	font-weight: 400;
	line-height: 1.4;
	letter-spacing: -0.015em;
	text-wrap: pretty;
}

.cr-who-we-help--group-practices .cr-who-we-help__diagnose-item:first-child {
	padding-top: 0;
	border-top: 0;
}

.cr-who-we-help--group-practices .cr-who-we-help__diagnose-item:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.cr-who-we-help--group-practices .cr-who-we-help__diagnose-check {
	flex-shrink: 0;
	display: inline-flex;
	margin-top: 0.1rem;
	color: var(--black, #020202);
}

.cr-who-we-help--group-practices .cr-who-we-help__diagnose-text {
	min-width: 0;
}

@media (max-width: 860px) {
	.cr-who-we-help--group-practices .cr-who-we-help__diagnose-inner {
		grid-template-columns: 1fr;
		gap: clamp(1.5rem, 3vw, 2rem);
	}

	.cr-who-we-help--group-practices .cr-who-we-help__diagnose-head {
		position: static;
	}

	.cr-who-we-help--group-practices .cr-who-we-help__diagnose-title {
		max-width: 18ch;
	}
}

/* Group practices — capabilities grid sits on cream after white diagnose */
.cr-who-we-help--group-practices .cr-capabilities {
	background-color: var(--background, #faf5ef);
}

/* Group practices — solo vs group comparison */
.cr-who-we-help--group-practices .cr-who-we-help__compare-diff {
	background-color: var(--white, #fff);
	padding-top: clamp(4rem, 8vw, 6.5rem);
	padding-bottom: clamp(4rem, 8vw, 6.5rem);
}

.cr-who-we-help--group-practices .cr-who-we-help__compare-diff .cr-who-we-help__section-head {
	max-width: 42rem;
}

.cr-who-we-help--group-practices .cr-who-we-help__compare-diff-table tbody td:last-child {
	color: var(--black, #020202);
	font-weight: 500;
}

.cr-who-we-help--group-practices .cr-who-we-help__compare-diff-prose {
	margin: 1.5rem 0 0;
	max-width: 46rem;
	color: var(--grey, #6e6e6e);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: clamp(1.02rem, 1.4vw, 1.125rem);
	line-height: 1.55;
	letter-spacing: -0.01em;
	text-wrap: pretty;
}

/* Psychiatrists — problem / empathy strip */
.cr-who-we-help--psychiatrists .cr-who-we-help__empathy {
	background-color: var(--white, #fff);
	padding-top: clamp(3.5rem, 7vw, 5.5rem);
	padding-bottom: clamp(3.5rem, 7vw, 5.5rem);
}

.cr-who-we-help--psychiatrists .cr-who-we-help__empathy-inner {
	display: flex;
	flex-direction: column;
	gap: 1.15rem;
	max-width: 42rem;
	margin-inline: auto;
	text-align: center;
}

.cr-who-we-help--psychiatrists .cr-who-we-help__empathy-title {
	margin: 0;
	color: var(--black, #020202);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: clamp(1.65rem, 3.2vw, 2.35rem);
	font-weight: 400;
	line-height: 1.2;
	letter-spacing: -0.02em;
	text-wrap: balance;
}

.cr-who-we-help--psychiatrists .cr-who-we-help__empathy-text {
	margin: 0;
	color: var(--grey, #6e6e6e);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: clamp(1.05rem, 1.5vw, 1.2rem);
	font-weight: 400;
	line-height: 1.55;
	letter-spacing: -0.01em;
	text-wrap: pretty;
}

/* Psychiatrists — educational channel Q&A (traffic / AI Overview) */
.cr-who-we-help--psychiatrists .cr-who-we-help__edu {
	background-color: var(--background, #faf5ef);
	padding-top: clamp(4rem, 8vw, 6.5rem);
	padding-bottom: clamp(4rem, 8vw, 6.5rem);
	scroll-margin-top: 5rem;
}

.cr-who-we-help--psychiatrists .cr-who-we-help__edu-head {
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
	max-width: 40rem;
	margin-bottom: clamp(2.25rem, 4.5vw, 3.25rem);
}

.cr-who-we-help--psychiatrists .cr-who-we-help__edu-title {
	margin: 0;
	color: var(--black, #020202);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: clamp(1.75rem, 3.4vw, 2.5rem);
	font-weight: 400;
	line-height: 1.18;
	letter-spacing: -0.02em;
	text-wrap: balance;
}

.cr-who-we-help--psychiatrists .cr-who-we-help__edu-lede {
	margin: 0;
	color: var(--grey, #6e6e6e);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: 1.05rem;
	line-height: 1.55;
	text-wrap: pretty;
}

.cr-who-we-help--psychiatrists .cr-who-we-help__edu-list {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.25rem;
	max-width: none;
}

.cr-who-we-help--psychiatrists .cr-who-we-help__edu-item {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	height: 100%;
	padding: 1.5rem 1.6rem;
	border: 0;
	border-radius: 1.25rem;
	background-color: var(--white, #fff);
	box-shadow: 0 0 0 1px rgb(2 2 2 / 0.03);
}

.cr-who-we-help--psychiatrists .cr-who-we-help__edu-item:last-child {
	padding-bottom: 1.5rem;
}

.cr-who-we-help--psychiatrists .cr-who-we-help__edu-question {
	margin: 0;
	padding-bottom: var(--_perimeters---spaces--space-4xl, 32px);
	color: var(--black, #020202);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: clamp(1.1rem, 1.8vw, 1.25rem);
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: -0.015em;
	text-wrap: balance;
}

.cr-who-we-help--psychiatrists .cr-who-we-help__edu-answer {
	margin: 0;
	color: var(--grey, #6e6e6e);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: 0.9375rem;
	line-height: 1.55;
	text-wrap: pretty;
}

@media screen and (max-width: 1100px) {
	.cr-who-we-help--psychiatrists .cr-who-we-help__edu-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media screen and (max-width: 767px) {
	.cr-who-we-help--psychiatrists .cr-who-we-help__edu-list {
		grid-template-columns: 1fr;
	}
}

.cr-who-we-help__challenges,
.cr-who-we-help__services {
	background-color: var(--background, #faf5ef);
	padding-top: var(--_perimeters---spaces--space-10xl, 85px);
	padding-bottom: var(--_perimeters---spaces--space-10xl, 85px);
}

/* Spravato / TMS / telehealth pages: alternate section backgrounds so neighbors never match. */
.cr-who-we-help--spravato .cr-who-we-help__challenges,
.cr-who-we-help--tms .cr-who-we-help__challenges,
.cr-who-we-help--telehealth .cr-who-we-help__challenges {
	background-color: var(--white, #fff);
}

.cr-who-we-help--telehealth .cr-capabilities {
	background-color: var(--white, #fff);
}

/* Telehealth — channel breakdown by practice model */
.cr-who-we-help__models {
	background-color: var(--background, #faf5ef);
	padding-top: var(--_perimeters---spaces--space-10xl, 85px);
	padding-bottom: var(--_perimeters---spaces--space-10xl, 85px);
}

.cr-who-we-help__models-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 2.75rem 3rem;
}

.cr-who-we-help__model {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	padding: 0;
	background: transparent;
	color: inherit;
}

.cr-who-we-help__model-title {
	margin: 0;
	padding-bottom: var(--_perimeters---spaces--space-xl, 16px);
	border-bottom: 1px solid rgb(2 2 2 / 0.12);
	color: var(--black, #020202);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: clamp(1.15rem, 2vw, 1.35rem);
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: -0.015em;
	text-wrap: balance;
}

.cr-who-we-help__model-text {
	margin: 0;
	color: var(--grey, #6e6e6e);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: 1rem;
	line-height: 1.6;
	letter-spacing: -0.01em;
	text-wrap: pretty;
}

@media (max-width: 1100px) {
	.cr-who-we-help__models-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 2.75rem 2.5rem;
	}
}

@media (max-width: 767px) {
	.cr-who-we-help__models-grid {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}
}

/* Telehealth — HIPAA-aware tracking & measurement */
.cr-who-we-help__measurement {
	background-color: var(--white, #fff);
	padding-top: var(--_perimeters---spaces--space-10xl, 85px);
	padding-bottom: var(--_perimeters---spaces--space-10xl, 85px);
}

.cr-who-we-help__measurement-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 2.5rem 3rem;
	margin-bottom: 2rem;
}

.cr-who-we-help__measurement-item {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.cr-who-we-help__measurement-item-title {
	margin: 0;
	padding-bottom: var(--_perimeters---spaces--space-xl, 16px);
	border-bottom: 1px solid rgb(2 2 2 / 0.12);
	color: var(--black, #020202);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: clamp(1.15rem, 2vw, 1.35rem);
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: -0.015em;
	text-wrap: balance;
}

.cr-who-we-help__measurement-item-text {
	margin: 0;
	color: var(--grey, #6e6e6e);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: 1rem;
	line-height: 1.6;
	letter-spacing: -0.01em;
	text-wrap: pretty;
}

.cr-who-we-help__measurement-policy {
	margin: 0 0 1.25rem;
	max-width: 52rem;
	color: var(--black, #020202);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: 0.9375rem;
	line-height: 1.6;
	letter-spacing: -0.01em;
	text-wrap: pretty;
}

.cr-who-we-help__measurement-disclaimer {
	margin: 0;
	max-width: 52rem;
	color: var(--grey, #6e6e6e);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: 0.8125rem;
	line-height: 1.55;
	letter-spacing: -0.01em;
	text-wrap: pretty;
}

@media (max-width: 1100px) {
	.cr-who-we-help__measurement-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 2.5rem 2.5rem;
	}
}

@media (max-width: 767px) {
	.cr-who-we-help__measurement-grid {
		grid-template-columns: 1fr;
		gap: 2.25rem;
	}
}

/* Telehealth — multi-state licensure & geo-targeting */
.cr-who-we-help__licensure {
	background-color: var(--background, #faf5ef);
	padding-top: var(--_perimeters---spaces--space-10xl, 85px);
	padding-bottom: var(--_perimeters---spaces--space-10xl, 85px);
}

.cr-who-we-help__licensure-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 2.5rem 3rem;
}

.cr-who-we-help__licensure-item {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.cr-who-we-help__licensure-item-title {
	margin: 0;
	padding-bottom: var(--_perimeters---spaces--space-xl, 16px);
	border-bottom: 1px solid rgb(2 2 2 / 0.12);
	color: var(--black, #020202);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: clamp(1.15rem, 2vw, 1.35rem);
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: -0.015em;
	text-wrap: balance;
}

.cr-who-we-help__licensure-item-text {
	margin: 0;
	color: var(--grey, #6e6e6e);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: 1rem;
	line-height: 1.6;
	letter-spacing: -0.01em;
	text-wrap: pretty;
}

@media (max-width: 1100px) {
	.cr-who-we-help__licensure-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 2.5rem 2.5rem;
	}
}

@media (max-width: 767px) {
	.cr-who-we-help__licensure-grid {
		grid-template-columns: 1fr;
		gap: 2.25rem;
	}
}

/* Telehealth — 30 / 60 / 90 outcome model (case-study replacement) */
.cr-who-we-help__roadmap {
	background-color: var(--background, #faf5ef);
	padding-top: var(--_perimeters---spaces--space-10xl, 85px);
	padding-bottom: var(--_perimeters---spaces--space-10xl, 85px);
}

.cr-who-we-help__roadmap-scroll {
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	margin-bottom: 1.25rem;
}

.cr-who-we-help__roadmap-table {
	width: 100%;
	min-width: 40rem;
	border-collapse: collapse;
	table-layout: fixed;
	background-color: var(--white, #fff);
	border: 1px solid rgb(2 2 2 / 0.08);
	border-radius: 1rem;
	overflow: hidden;
}

.cr-who-we-help__roadmap-table th,
.cr-who-we-help__roadmap-table td {
	padding: 1.1rem 1.15rem;
	vertical-align: top;
	text-align: left;
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: 0.9375rem;
	line-height: 1.5;
	letter-spacing: -0.01em;
	border-bottom: 1px solid rgb(2 2 2 / 0.08);
	border-right: 1px solid rgb(2 2 2 / 0.06);
}

.cr-who-we-help__roadmap-table th:last-child,
.cr-who-we-help__roadmap-table td:last-child {
	border-right: 0;
}

.cr-who-we-help__roadmap-table tbody tr:last-child th,
.cr-who-we-help__roadmap-table tbody tr:last-child td {
	border-bottom: 0;
}

.cr-who-we-help__roadmap-table thead th {
	background-color: var(--black, #020202);
	color: var(--white, #fff);
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	white-space: nowrap;
}

.cr-who-we-help__roadmap-table thead .cr-who-we-help__roadmap-corner {
	background-color: var(--black, #020202);
	width: 7.5rem;
}

.cr-who-we-help__roadmap-table tbody th {
	width: 7.5rem;
	background-color: rgb(2 2 2 / 0.03);
	color: var(--black, #020202);
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: -0.015em;
}

.cr-who-we-help__roadmap-table tbody td {
	color: var(--grey, #6e6e6e);
	text-wrap: pretty;
}

.cr-who-we-help__roadmap-note {
	margin: 0;
	max-width: 46rem;
	color: var(--grey, #6e6e6e);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: 0.9375rem;
	line-height: 1.55;
	letter-spacing: -0.01em;
	text-wrap: pretty;
}

@media (max-width: 767px) {
	.cr-who-we-help__roadmap-table th,
	.cr-who-we-help__roadmap-table td {
		padding: 0.9rem 0.85rem;
		font-size: 0.875rem;
	}

	.cr-who-we-help__roadmap-table thead .cr-who-we-help__roadmap-corner,
	.cr-who-we-help__roadmap-table tbody th {
		width: 6.25rem;
	}
}

/* TMS market opportunity — prominent search-demand proof */
.cr-who-we-help__opportunity {
	background-color: var(--secondary, #af7c54);
	color: var(--white, #fff);
	padding-top: clamp(4.5rem, 9vw, 7rem);
	padding-bottom: clamp(4.5rem, 9vw, 7rem);
}

.cr-who-we-help__opportunity-head {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	max-width: 44rem;
	margin-bottom: clamp(2.5rem, 5vw, 3.75rem);
}

.cr-who-we-help__opportunity-title {
	margin: 0;
	color: var(--white, #fff);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: clamp(2rem, 4.2vw, 3.25rem);
	font-weight: 400;
	line-height: 1.15;
	letter-spacing: -0.02em;
	text-wrap: balance;
}

.cr-who-we-help__opportunity-lede {
	margin: 0;
	max-width: 40rem;
	color: rgb(255 255 255 / 0.88);
	font-size: clamp(1.05rem, 1.6vw, 1.25rem);
	line-height: 1.5;
	letter-spacing: -0.015em;
	text-wrap: pretty;
}

.cr-who-we-help__opportunity-metrics {
	margin-top: 0;
}

.cr-who-we-help__opportunity .cr-metric__value {
	color: var(--primary, #e4ff60);
	font-size: clamp(3rem, 6vw, 4.75rem);
}

.cr-who-we-help__opportunity .cr-metric > p,
.cr-who-we-help__opportunity .text-muted {
	color: rgb(255 255 255 / 0.8);
}

.cr-who-we-help__section-head {
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
	max-width: 40rem;
	margin-bottom: clamp(2rem, 4vw, 3rem);
}

.cr-who-we-help__eyebrow {
	margin: 0;
	color: var(--secondary, #af7c54);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: 1.125rem;
	font-weight: 400;
	line-height: 1.5;
}

.cr-who-we-help__eyebrow--on-dark {
	color: var(--primary, #e4ff60);
}

.cr-who-we-help__section-title {
	margin: 0;
	color: var(--black, #020202);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.02em;
	text-wrap: balance;
}

.cr-who-we-help__section-title--light {
	color: var(--white, #fff);
}

.cr-who-we-help__section-lede {
	margin: 0;
	color: var(--grey, #6e6e6e);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: 1rem;
	line-height: 1.6;
	text-wrap: pretty;
}

.cr-who-we-help__section-lede--light {
	color: rgb(255 255 255 / 0.72);
}

.cr-who-we-help__challenge-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.25rem;
}

.cr-who-we-help__challenge-grid--three {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cr-who-we-help__challenge {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	padding: 1.5rem;
	border-radius: 1.25rem;
	background-color: var(--white, #fff);
	box-shadow: 0 0 0 1px rgb(2 2 2 / 0.03);
}

.cr-who-we-help__challenge-ico {
	display: inline-flex;
	width: 1.75rem;
	height: 1.75rem;
	margin-bottom: 1.25rem;
	color: var(--secondary, #af7c54);
}

.cr-who-we-help__challenge-ico svg {
	display: block;
	width: 100%;
	height: 100%;
}

.cr-who-we-help__challenge-title {
	margin: 0;
	color: var(--black, #020202);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: -0.015em;
}

.cr-who-we-help__challenge-text {
	margin: 0;
	color: var(--grey, #6e6e6e);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: 0.9375rem;
	line-height: 1.55;
}

.cr-who-we-help__approach {
	background-color: var(--white, #fff);
	padding-top: var(--_perimeters---spaces--space-10xl, 85px);
	padding-bottom: var(--_perimeters---spaces--space-10xl, 85px);
}

.cr-who-we-help__approach-inner {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	gap: clamp(2rem, 5vw, 3.5rem);
	width: min(
		calc(100% - (2 * var(--_perimeters---containers--container-xs, 30px))),
		var(--cr-container-md)
	);
}

.cr-who-we-help__approach-media {
	margin: 0;
	flex: 0 1 32rem;
	width: min(100%, 32rem);
	max-width: 32.8rem;
	border-radius: 2rem;
	overflow: hidden;
	background-color: var(--dawn, #f2e9df);
}

.cr-who-we-help__approach-media img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 28rem;
	object-fit: cover;
	object-position: center;
}

.cr-who-we-help__approach-copy {
	display: flex;
	flex: 1 1 18rem;
	flex-direction: column;
	justify-content: center;
	gap: 2rem;
	max-width: 31.25rem;
	min-width: 0;
}

.cr-who-we-help__approach-head {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.cr-who-we-help__approach-title {
	margin: 0;
	color: var(--black, #020202);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.02em;
	text-wrap: balance;
}

.cr-who-we-help__approach-text,
.cr-who-we-help__prose {
	margin: 0;
	color: var(--grey, #6e6e6e);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: 1rem;
	line-height: 1.6;
}

.cr-who-we-help__prose > *:first-child {
	margin-top: 0;
}

.cr-who-we-help__prose > *:last-child {
	margin-bottom: 0;
}

.cr-who-we-help__feature-list {
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.cr-who-we-help__feature {
	display: flex;
	align-items: center;
	gap: 0.85rem;
}

.cr-who-we-help__feature-ico {
	display: inline-flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 999px;
	background-color: var(--dawn, #f2e9df);
	color: var(--secondary-dark, #906039);
}

.cr-who-we-help__feature-ico svg {
	display: block;
	width: 1.25rem;
	height: 1.25rem;
}

.cr-who-we-help__feature-label {
	color: var(--black, #020202);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: 1.0625rem;
	font-weight: 500;
	line-height: 1.35;
	letter-spacing: -0.01em;
}

.cr-who-we-help__fit {
	background-color: var(--secondary, #af7c54);
	padding-top: var(--_perimeters---spaces--space-10xl, 85px);
	padding-bottom: var(--_perimeters---spaces--space-10xl, 85px);
}

.cr-who-we-help__fit-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
}

.cr-who-we-help__fit-card {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	padding: 1.5rem;
	border-radius: 1.25rem;
	background-color: var(--white-10, rgb(255 255 255 / 0.1));
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	color: var(--white, #fff);
}

.cr-who-we-help__fit-card-title {
	margin: 0;
	color: var(--white, #fff);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: -0.015em;
}

.cr-who-we-help__fit-card-text {
	margin: 0;
	color: rgb(255 255 255 / 0.72);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: 0.9375rem;
	line-height: 1.55;
}

.cr-who-we-help__service-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
}

.cr-who-we-help__service-card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border-radius: 1.25rem;
	background-color: var(--white, #fff);
	box-shadow: 0 0 0 1px rgb(2 2 2 / 0.03);
	text-decoration: none;
	color: inherit;
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

a.cr-who-we-help__service-card:focus-visible {
	outline: 3px solid rgb(228 255 96 / 0.55);
	outline-offset: 3px;
}

.cr-who-we-help__service-card:hover,
.cr-who-we-help__service-card:focus-within {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgb(2 2 2 / 0.08);
}

.cr-who-we-help__service-media {
	margin: 0;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background-color: var(--dawn, #f2e9df);
}

.cr-who-we-help__service-media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.cr-who-we-help__service-card:hover .cr-who-we-help__service-media img,
.cr-who-we-help__service-card:focus-within .cr-who-we-help__service-media img {
	transform: scale(1.04);
}

.cr-who-we-help__service-body {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	padding: 1.25rem 1.35rem 1.5rem;
}

.cr-who-we-help__service-title {
	margin: 0;
	color: var(--black, #020202);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: -0.015em;
}

.cr-who-we-help__service-text {
	margin: 0;
	color: var(--grey, #6e6e6e);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: 0.9375rem;
	line-height: 1.55;
}

.cr-who-we-help__process {
	background-color: var(--background, #faf5ef);
	padding-top: var(--_perimeters---spaces--space-10xl, 85px);
	padding-bottom: var(--_perimeters---spaces--space-10xl, 85px);
}

.cr-who-we-help__process-steps {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.25rem;
	list-style: none;
	margin: 0 0 clamp(3.5rem, 6vw, 5rem);
	padding: 0;
	counter-reset: none;
}

.cr-who-we-help--tms .cr-who-we-help__process-steps {
	margin-bottom: 0;
}

.cr-who-we-help--ketamine .cr-who-we-help__process-steps {
	margin-bottom: 0;
}

.cr-who-we-help--psychiatrists .cr-who-we-help__process-steps {
	margin-bottom: 0;
}

.cr-who-we-help--telehealth .cr-who-we-help__process {
	background-color: var(--white, #fff);
}

.cr-who-we-help--telehealth .cr-who-we-help__process-steps {
	margin-bottom: 0;
}

.cr-who-we-help--telehealth .cr-who-we-help__process-step {
	background-color: var(--background, #faf5ef);
}

.cr-who-we-help--telehealth .cr-who-we-help__audience {
	background-color: var(--background, #faf5ef);
}

/* Telehealth — alternatives comparison table */
.cr-who-we-help__alts {
	background-color: var(--white, #fff);
	padding-top: var(--_perimeters---spaces--space-10xl, 85px);
	padding-bottom: var(--_perimeters---spaces--space-10xl, 85px);
}

.cr-who-we-help__alts-scroll {
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.cr-who-we-help__alts-table {
	width: 100%;
	min-width: 52rem;
	border-collapse: collapse;
	table-layout: fixed;
	background-color: var(--white, #fff);
	border: 1px solid rgb(2 2 2 / 0.08);
	border-radius: 1rem;
	overflow: hidden;
}

.cr-who-we-help__alts-table th,
.cr-who-we-help__alts-table td {
	padding: 1.05rem 1rem;
	vertical-align: top;
	text-align: left;
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: 0.875rem;
	line-height: 1.5;
	letter-spacing: -0.01em;
	border-bottom: 1px solid rgb(2 2 2 / 0.08);
	border-right: 1px solid rgb(2 2 2 / 0.06);
}

.cr-who-we-help__alts-table th:last-child,
.cr-who-we-help__alts-table td:last-child {
	border-right: 0;
}

.cr-who-we-help__alts-table tbody tr:last-child th,
.cr-who-we-help__alts-table tbody tr:last-child td {
	border-bottom: 0;
}

.cr-who-we-help__alts-table thead th {
	background-color: var(--black, #020202);
	color: var(--white, #fff);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.cr-who-we-help__alts-table thead .cr-who-we-help__alts-corner {
	background-color: var(--black, #020202);
	width: 7.25rem;
}

.cr-who-we-help__alts-table thead .cr-who-we-help__alts-col--us {
	background-color: var(--secondary, #af7c54);
	color: var(--white, #fff);
}

.cr-who-we-help__alts-table tbody th {
	width: 7.25rem;
	background-color: rgb(2 2 2 / 0.03);
	color: var(--black, #020202);
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: -0.015em;
}

.cr-who-we-help__alts-table tbody td {
	color: var(--grey, #6e6e6e);
	text-wrap: pretty;
}

.cr-who-we-help__alts-table tbody td.cr-who-we-help__alts-col--us {
	background-color: rgb(175 124 84 / 0.08);
	color: var(--black, #020202);
	font-weight: 500;
}

@media (max-width: 767px) {
	.cr-who-we-help__alts-table th,
	.cr-who-we-help__alts-table td {
		padding: 0.85rem 0.75rem;
		font-size: 0.8125rem;
	}

	.cr-who-we-help__alts-table thead .cr-who-we-help__alts-corner,
	.cr-who-we-help__alts-table tbody th {
		width: 6rem;
	}
}

.cr-who-we-help__process-step-need,
.cr-who-we-help__process-step-time {
	margin: 0;
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: 0.8125rem;
	line-height: 1.5;
	letter-spacing: -0.01em;
	text-wrap: pretty;
}

.cr-who-we-help__process-step-need {
	color: var(--black, #020202);
}

.cr-who-we-help__process-step-time {
	color: var(--secondary, #af7c54);
	font-weight: 600;
}

/* Ketamine — Why CuraReach / specialization + platform trust logos */
.cr-who-we-help__why {
	background-color: var(--secondary, #af7c54);
	padding-top: var(--_perimeters---spaces--space-10xl, 85px);
	padding-bottom: var(--_perimeters---spaces--space-10xl, 85px);
}

.cr-who-we-help__why-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.25rem;
}

.cr-who-we-help__why-card {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	padding: 1.5rem;
	border-radius: 1.25rem;
	background-color: var(--white-10, rgb(255 255 255 / 0.1));
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	color: var(--white, #fff);
}

.cr-who-we-help__why-ico {
	display: inline-flex;
	width: 1.75rem;
	height: 1.75rem;
	margin-bottom: 0.85rem;
	color: var(--primary, #e4ff60);
}

.cr-who-we-help__why-ico svg {
	display: block;
	width: 100%;
	height: 100%;
}

.cr-who-we-help__why-ico .fa-solid {
	display: block;
	font-size: 1.25rem;
	line-height: 1;
}

.cr-who-we-help__why-card-title {
	margin: 0;
	color: var(--white, #fff);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: -0.015em;
}

.cr-who-we-help__why-card-text {
	margin: 0;
	color: rgb(255 255 255 / 0.72);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: 0.9375rem;
	line-height: 1.55;
	text-wrap: pretty;
}

/* Ketamine — methodology results / what we optimize for */
.cr-who-we-help--ketamine .cr-who-we-help__results.cr-single-service__includes {
	background-color: var(--white, #fff);
}

.cr-who-we-help--ketamine .cr-who-we-help__results .cr-single-service__includes-head,
.cr-who-we-help--ketamine .cr-who-we-help__results .cr-single-service__includes-title {
	color: var(--black, #020202);
}

.cr-who-we-help--ketamine .cr-who-we-help__results .cr-single-service__includes-lede {
	color: var(--grey, #6e6e6e);
}

.cr-who-we-help--ketamine .cr-who-we-help__results .cr-single-service__include-card {
	background-color: var(--background, #faf5ef);
	color: var(--black, #020202);
	box-shadow: 0 0 0 1px rgb(2 2 2 / 0.03);
}

.cr-who-we-help--ketamine .cr-who-we-help__results .cr-single-service__include-title {
	color: var(--black, #020202);
}

.cr-who-we-help--ketamine .cr-who-we-help__results .cr-single-service__include-text {
	color: var(--grey, #6e6e6e);
}

.cr-who-we-help--ketamine .cr-who-we-help__results .cr-single-service__include-ico {
	color: var(--secondary, #af7c54);
}

.cr-who-we-help--psychiatrists .cr-who-we-help__results.cr-single-service__includes {
	background-color: var(--white, #fff);
}

.cr-who-we-help--psychiatrists .cr-who-we-help__results .cr-single-service__includes-head,
.cr-who-we-help--psychiatrists .cr-who-we-help__results .cr-single-service__includes-title {
	color: var(--black, #020202);
}

.cr-who-we-help--psychiatrists .cr-who-we-help__results .cr-single-service__includes-lede {
	color: var(--grey, #6e6e6e);
}

.cr-who-we-help--psychiatrists .cr-who-we-help__results .cr-single-service__include-card {
	background-color: var(--background, #faf5ef);
	color: var(--black, #020202);
	box-shadow: 0 0 0 1px rgb(2 2 2 / 0.03);
}

.cr-who-we-help--psychiatrists .cr-who-we-help__results .cr-single-service__include-title {
	color: var(--black, #020202);
}

.cr-who-we-help--psychiatrists .cr-who-we-help__results .cr-single-service__include-text {
	color: var(--grey, #6e6e6e);
}

.cr-who-we-help--psychiatrists .cr-who-we-help__results .cr-single-service__include-ico {
	color: var(--secondary, #af7c54);
}

.cr-who-we-help__results-offer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1.25rem 1.75rem;
	margin-top: clamp(1.75rem, 3vw, 2.25rem);
	padding: 1.35rem 1.5rem;
	border-radius: 1.25rem;
	background-color: var(--background, #faf5ef);
	box-shadow: 0 0 0 1px rgb(2 2 2 / 0.04);
}

.cr-who-we-help__results-offer-copy {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	max-width: 28rem;
}

.cr-who-we-help__results-offer-title {
	margin: 0;
	color: var(--black, #020202);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: 1.0625rem;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: -0.015em;
}

.cr-who-we-help__results-offer-text {
	margin: 0;
	color: var(--grey, #6e6e6e);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: 0.9375rem;
	line-height: 1.5;
	text-wrap: pretty;
}

.cr-who-we-help__results-offer .wp-block-button__link {
	white-space: nowrap;
}

@media screen and (max-width: 767px) {
	.cr-who-we-help__results-offer {
		flex-direction: column;
		align-items: stretch;
	}

	.cr-who-we-help__results-offer .wp-block-button,
	.cr-who-we-help__results-offer .wp-block-button__link {
		width: 100%;
	}
}

/* TMS packages / deliverables */
.cr-who-we-help__packages {
	background-color: var(--white, #fff);
	padding-top: var(--_perimeters---spaces--space-10xl, 85px);
	padding-bottom: var(--_perimeters---spaces--space-10xl, 85px);
}

.cr-who-we-help__packages-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
	align-items: stretch;
}

.cr-who-we-help__package {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	padding: 1.75rem 1.5rem;
	border-radius: 1.25rem;
	background-color: var(--background, #faf5ef);
	box-shadow: 0 0 0 1px rgb(2 2 2 / 0.04);
}

.cr-who-we-help__package--featured {
	background-color: var(--black, #020202);
	color: var(--white, #fff);
	box-shadow: none;
}

.cr-who-we-help__package-head {
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
}

.cr-who-we-help__package-eyebrow {
	margin: 0;
	color: var(--secondary, #af7c54);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	line-height: 1.3;
}

.cr-who-we-help__package--featured .cr-who-we-help__package-eyebrow {
	color: var(--primary, #e4ff60);
}

.cr-who-we-help__package-name {
	margin: 0;
	color: var(--black, #020202);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: clamp(1.5rem, 2.4vw, 1.85rem);
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.02em;
}

.cr-who-we-help__package--featured .cr-who-we-help__package-name {
	color: var(--white, #fff);
}

.cr-who-we-help__package-blurb {
	margin: 0;
	color: var(--grey, #6e6e6e);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: 0.9375rem;
	line-height: 1.5;
	text-wrap: pretty;
}

.cr-who-we-help__package--featured .cr-who-we-help__package-blurb {
	color: rgb(255 255 255 / 0.78);
}

.cr-who-we-help__package-list {
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
	margin: 0;
	padding: 0;
	list-style: none;
	flex: 1 1 auto;
}

.cr-who-we-help__package-item {
	display: flex;
	align-items: flex-start;
	gap: 0.65rem;
	color: var(--black, #020202);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: 0.9375rem;
	line-height: 1.45;
}

.cr-who-we-help__package--featured .cr-who-we-help__package-item {
	color: rgb(255 255 255 / 0.9);
}

.cr-who-we-help__package-check {
	display: inline-flex;
	flex-shrink: 0;
	margin-top: 0.15rem;
	color: var(--secondary, #af7c54);
}

.cr-who-we-help__package--featured .cr-who-we-help__package-check {
	color: var(--primary, #e4ff60);
}

.cr-who-we-help__package-check svg {
	display: block;
}

.cr-who-we-help__package-cta {
	margin-top: auto;
}

.cr-who-we-help__package-cta .wp-block-button__link {
	display: inline-flex;
	justify-content: center;
	width: 100%;
	box-sizing: border-box;
	border-radius: 50px;
	padding: 0.9rem 1.5rem;
	background-color: var(--primary, #e4ff60);
	color: var(--black, #020202);
	text-align: center;
}

.cr-who-we-help__package-cta .wp-block-button__link:hover,
.cr-who-we-help__package-cta .wp-block-button__link:focus-visible {
	background-color: var(--black, #020202);
	color: var(--white, #fff);
}

.cr-who-we-help__package--featured .cr-who-we-help__package-cta .wp-block-button__link:hover,
.cr-who-we-help__package--featured .cr-who-we-help__package-cta .wp-block-button__link:focus-visible {
	background-color: var(--white, #fff);
	color: var(--black, #020202);
}

.cr-who-we-help__package-btn--ghost {
	background-color: transparent !important;
	color: var(--black, #020202) !important;
	box-shadow: inset 0 0 0 1.5px rgb(2 2 2 / 0.18);
}

.cr-who-we-help__package-btn--ghost:hover,
.cr-who-we-help__package-btn--ghost:focus-visible {
	background-color: var(--black, #020202) !important;
	color: var(--white, #fff) !important;
	box-shadow: none;
}

.cr-who-we-help__process-step {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	padding: 1.5rem;
	border-radius: 1.25rem;
	background-color: var(--white, #fff);
	box-shadow: 0 0 0 1px rgb(2 2 2 / 0.03);
}

.cr-who-we-help__process-num {
	color: var(--secondary, #af7c54);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	line-height: 1;
}

.cr-who-we-help__process-step-title {
	margin: 0;
	padding-bottom: var(--_perimeters---spaces--space-8xl, 48px);
	color: var(--black, #020202);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: -0.015em;
}

.cr-who-we-help__process-step-text {
	margin: 0;
	color: var(--grey, #6e6e6e);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: 0.9375rem;
	line-height: 1.55;
	text-wrap: pretty;
}

.cr-who-we-help__process-guarantees {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--_perimeters---spaces--space-8xl, 48px) 1.75rem;
	padding: 1.75rem 2rem;
	border-radius: 1.5rem;
	background-color: var(--black, #020202);
}

.cr-who-we-help__process-guarantee {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.cr-who-we-help__process-guarantee-title {
	margin: 0;
	color: var(--primary, #e4ff60);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: 1.0625rem;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: -0.015em;
}

.cr-who-we-help__process-guarantee-text {
	margin: 0;
	color: rgb(255 255 255 / 0.72);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: 0.9375rem;
	line-height: 1.55;
	text-wrap: pretty;
}

.cr-who-we-help__compliance {
	background-color: var(--white, #fff);
	padding-top: var(--_perimeters---spaces--space-10xl, 85px);
	padding-bottom: var(--_perimeters---spaces--space-10xl, 85px);
}

.cr-who-we-help--ketamine .cr-who-we-help__compliance {
	background-color: var(--background, #faf5ef);
}

.cr-who-we-help--ketamine .cr-who-we-help__compliance-card {
	background-color: var(--white, #fff);
}

.cr-who-we-help__compliance-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
}

.cr-who-we-help__compliance-card {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	padding: 1.75rem 1.5rem;
	border-radius: 1.25rem;
	background-color: var(--background, #faf5ef);
	box-shadow: 0 0 0 1px rgb(2 2 2 / 0.03);
}

.cr-who-we-help__compliance-ico {
	display: inline-flex;
	width: 1.75rem;
	height: 1.75rem;
	margin-bottom: 1.25rem;
	color: var(--secondary, #af7c54);
}

.cr-who-we-help__compliance-ico svg {
	display: block;
	width: 100%;
	height: 100%;
}

.cr-who-we-help__compliance-ico .fa-solid {
	display: block;
	font-size: 1.25rem;
	line-height: 1;
}

.cr-who-we-help__compliance-card-title {
	margin: 0;
	padding-bottom: var(--_perimeters---spaces--space-4xl, 24px);
	color: var(--black, #020202);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: -0.015em;
}

.cr-who-we-help__compliance-card-text {
	margin: 0;
	color: var(--grey, #6e6e6e);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: 0.9375rem;
	line-height: 1.6;
	text-wrap: pretty;
}

.cr-who-we-help__compare {
	background-color: var(--white, #fff);
	padding-top: var(--_perimeters---spaces--space-10xl, 85px);
	padding-bottom: var(--_perimeters---spaces--space-10xl, 85px);
}

.cr-who-we-help__compare-head {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.85rem;
	max-width: 40rem;
	margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
	text-align: center;
}

.cr-who-we-help__compare-title {
	margin: 0;
	color: var(--black, #020202);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.02em;
	text-wrap: balance;
}

.cr-who-we-help__compare-lede {
	margin: 0;
	color: var(--grey, #6e6e6e);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: 1rem;
	line-height: 1.6;
	text-wrap: pretty;
}

.cr-who-we-help__compare-table {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	align-items: stretch;
	gap: 0;
	max-width: 52rem;
	margin-inline: auto;
}

.cr-who-we-help__compare-col {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.cr-who-we-help__compare-col--us {
	z-index: 1;
	padding: 2rem 1.75rem 1.5rem;
	border-radius: 1.25rem;
	background-color: var(--white, #fff);
	box-shadow: 0 18px 48px rgb(2 2 2 / 0.12);
}

.cr-who-we-help__compare-col--them {
	padding: 2rem 1.75rem 1.5rem;
}

.cr-who-we-help__compare-col-title {
	margin: 0;
	padding-bottom: 1.25rem;
	border-bottom: 1px solid rgb(2 2 2 / 0.08);
	color: var(--black, #020202);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: -0.015em;
	text-align: center;
}

.cr-who-we-help__compare-col--them .cr-who-we-help__compare-col-title {
	font-weight: 500;
	color: rgb(2 2 2 / 0.55);
	border-bottom-color: rgb(2 2 2 / 0.06);
}

.cr-who-we-help__compare-list {
	display: flex;
	flex-direction: column;
	list-style: none;
	margin: 0;
	padding: 0;
}

.cr-who-we-help__compare-item {
	display: flex;
	align-items: flex-start;
	gap: 0.85rem;
	padding: 1.15rem 0;
	border-bottom: 1px solid rgb(2 2 2 / 0.08);
}

.cr-who-we-help__compare-item:last-child {
	border-bottom: none;
	padding-bottom: 0.35rem;
}

.cr-who-we-help__compare-col--them .cr-who-we-help__compare-item {
	border-bottom-color: rgb(2 2 2 / 0.06);
}

.cr-who-we-help__compare-ico {
	display: inline-flex;
	flex-shrink: 0;
	width: 1.25rem;
	height: 1.25rem;
	margin-top: 0.1rem;
}

.cr-who-we-help__compare-ico svg {
	display: block;
	width: 100%;
	height: 100%;
}

.cr-who-we-help__compare-item--us .cr-who-we-help__compare-ico {
	color: #22c55e;
}

.cr-who-we-help__compare-item--them .cr-who-we-help__compare-ico {
	color: #ef4444;
}

.cr-who-we-help__compare-item-text {
	color: var(--black, #020202);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.45;
}

.cr-who-we-help__compare-item--them .cr-who-we-help__compare-item-text {
	color: rgb(2 2 2 / 0.45);
	font-weight: 400;
}

@media screen and (max-width: 767px) {
	.cr-who-we-help__compare-table {
		grid-template-columns: 1fr;
		gap: 1.25rem;
		max-width: 26rem;
	}

	.cr-who-we-help__compare-col--them {
		padding: 1.5rem 1.35rem;
		border-radius: 1.25rem;
		background-color: rgb(2 2 2 / 0.03);
	}
}

.cr-who-we-help__cta {
	background-color: var(--background, #faf5ef);
	padding-top: var(--_perimeters---spaces--space-9xl, 64px);
	padding-bottom: var(--_perimeters---spaces--space-9xl, 64px);
}

.cr-who-we-help__cta-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem 2rem;
	padding: 2rem 2.25rem;
	border-radius: 1.5rem;
	background-color: var(--white, #fff);
	box-shadow: 0 0 0 1px rgb(2 2 2 / 0.03);
}

.cr-who-we-help__cta-copy {
	flex: 1 1 20rem;
	max-width: 36rem;
}

.cr-who-we-help__cta-title {
	margin: 0 0 0.65rem;
	color: var(--black, #020202);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: clamp(1.25rem, 2vw, 1.65rem);
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: -0.02em;
}

.cr-who-we-help__cta-text {
	margin: 0;
	color: var(--grey, #6e6e6e);
	font-family: var(--_typography---font-family--helvetica-now-display, inherit);
	font-size: 1rem;
	line-height: 1.55;
}

@media screen and (max-width: 991px) {
	.cr-who-we-help__hero {
		height: auto;
		min-height: 100svh;
	}

	.cr-who-we-help__hero-inner {
		padding-top: 160px;
		padding-bottom: var(--_perimeters---spaces--space-9xl, 80px);
	}

	.cr-who-we-help__approach-inner {
		gap: clamp(1.5rem, 3.5vw, 2.5rem);
	}

	.cr-who-we-help__approach-media {
		flex: 0 1 clamp(16rem, 42%, 24rem);
		width: clamp(16rem, 42%, 24rem);
		max-width: 24rem;
	}

	.cr-who-we-help__approach-media img {
		min-height: 22rem;
	}

	.cr-who-we-help__approach-copy {
		max-width: none;
	}

	.cr-who-we-help__challenge-grid,
	.cr-who-we-help__fit-grid,
	.cr-who-we-help__why-grid,
	.cr-who-we-help__service-grid,
	.cr-who-we-help__process-steps,
	.cr-who-we-help__process-guarantees,
	.cr-who-we-help__compliance-grid,
	.cr-who-we-help__packages-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media screen and (max-width: 767px) {
	.cr-who-we-help__hero-btns {
		flex-direction: column;
		align-items: stretch;
	}

	.cr-who-we-help__hero-btns .button-01 {
		width: 100%;
		min-width: 0;
	}

	.cr-who-we-help__infos {
		flex-direction: column;
		align-items: center;
		gap: 0.65rem;
	}

	.cr-who-we-help__challenge-grid,
	.cr-who-we-help__fit-grid,
	.cr-who-we-help__why-grid,
	.cr-who-we-help__service-grid,
	.cr-who-we-help__process-steps,
	.cr-who-we-help__process-guarantees,
	.cr-who-we-help__compliance-grid,
	.cr-who-we-help__packages-grid {
		grid-template-columns: 1fr;
	}

	.cr-who-we-help__process-guarantees {
		padding: 1.5rem;
	}

	.cr-who-we-help__approach-inner {
		flex-direction: column;
	}

	.cr-who-we-help__approach-media {
		width: 100%;
		max-width: none;
		flex: none;
	}

	.cr-who-we-help__approach-media img {
		min-height: 18rem;
		aspect-ratio: 4 / 3;
	}

	.cr-who-we-help__cta-inner {
		flex-direction: column;
		align-items: flex-start;
		padding: 1.5rem;
	}

	.cr-who-we-help__service-card,
	.cr-who-we-help__service-media img {
		transition: none;
	}

	.cr-who-we-help__service-card:hover,
	.cr-who-we-help__service-card:focus-within {
		transform: none;
	}

	.cr-who-we-help__service-card:hover .cr-who-we-help__service-media img,
	.cr-who-we-help__service-card:focus-within .cr-who-we-help__service-media img {
		transform: none;
	}
}
