/* ==========================================================================
   ICHANGE — Component styles
   Layered on top of theme.json tokens. Keep this file lean — prefer theme.json
   when the rule expresses a design token; use this file when CSS-only patterns
   (animations, complex selectors, non-block UI) are involved.
   ========================================================================== */

:root {
	--ichange-shadow-soft: 0 10px 30px -10px rgba(94, 54, 108, 0.15);
	--ichange-shadow-medium: 0 18px 40px -12px rgba(94, 54, 108, 0.22);
	--ichange-radius-card: 16px;
	--ichange-radius-pill: 9999px;
	--ichange-transition: 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* ----- Site header polish (template-part `header`) ------------------------ */

/* IMPORTANT: do not put `backdrop-filter`, `filter`, or `transform` on the
   header itself. Those properties create a containing block for any
   `position: fixed` descendant — and the core navigation block opens its
   mobile overlay with `position: fixed; inset: 0`. If the header is the
   containing block, the overlay shrinks to the header and items end up
   squeezed in the upper-left corner instead of covering the viewport.
   The blur is moved to a ::before pseudo-element below to preserve the
   frosted-glass look without trapping the overlay. */
.wp-block-template-part[data-type="core/template-part"][data-area="header"],
.site-header,
header.wp-block-template-part {
	background: #fff;
	border-bottom: 1px solid rgba(138, 124, 153, 0.18);
	position: sticky;
	top: 0;
	z-index: 50;
	isolation: isolate;
}

/* ----- New three-band header (utility / title / nav) --------------------- */

.ichange-utility-bar {
	background: rgba(94, 54, 108, 0.04);
	border-bottom: 1px solid rgba(138, 124, 153, 0.12);
	font-family: var(--wp--preset--font-family--dm-sans);
	font-size: 13px;
	color: var(--wp--preset--color--teal-pine);
	overflow: hidden;
	max-height: 120px;
	transition: max-height 260ms ease, opacity 200ms ease, padding 260ms ease, border-bottom-width 260ms ease;
}
/* Collapse the utility bar once the user has scrolled past the top.
   Re-expands when scroll returns to ~0. Class is toggled by site.js. */
body.is-utility-hidden .ichange-utility-bar {
	max-height: 0;
	opacity: 0;
	padding-top: 0 !important;
	padding-bottom: 0 !important;
	border-bottom-width: 0;
}
.ichange-util-icons {
	display: inline-flex;
	gap: 10px;
	align-items: center;
}
.ichange-util-icon {
	display: inline-flex;
	width: 34px;
	height: 34px;
	align-items: center;
	justify-content: center;
	border-radius: 9999px;
	color: var(--wp--preset--color--plum);
	background: transparent;
	border: 1px solid rgba(94, 54, 108, 0.18);
	transition: color var(--ichange-transition), background var(--ichange-transition), border-color var(--ichange-transition), transform var(--ichange-transition);
	text-decoration: none;
}
.ichange-util-icon:hover,
.ichange-util-icon:focus-visible {
	background: var(--wp--preset--color--plum);
	color: #fff;
	transform: translateY(-1px);
	outline: none;
}
.ichange-util-icon--accent {
	color: #1e7f5c;
	border-color: rgba(30, 127, 92, 0.35);
}
.ichange-util-icon--accent:hover,
.ichange-util-icon--accent:focus-visible {
	background: #1e7f5c;
	color: #fff;
}
.ichange-util-contact {
	display: inline-flex;
	flex-wrap: wrap;
	gap: 6px 12px;
	align-items: center;
	font-weight: 500;
}
.ichange-util-sep {
	opacity: 0.5;
}
.ichange-util-board-link {
	color: var(--wp--preset--color--plum);
	text-decoration: none;
	font-weight: 600;
	transition: color var(--ichange-transition);
}
.ichange-util-board-link:hover,
.ichange-util-board-link:focus-visible {
	text-decoration: underline;
	outline: none;
}
/* Utility bar — icons & contact hug the edges; the middle column is a wide
   lane that hosts the horizontally-scrolling acronym marquee. */
.ichange-utility-bar__inner {
	display: grid !important;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 24px;
}
.ichange-utility-bar__inner > .ichange-util-icons {
	justify-self: start;
}
.ichange-utility-bar__inner > .ichange-util-acronym {
	justify-self: stretch;
	min-width: 0;
}
.ichange-utility-bar__inner > .ichange-util-contact {
	justify-self: end;
}

/* Accessible-only copy of marquee text (visible to screen readers,
   hidden visually). Defined here in case WP core's matching utility
   isn't loaded on every page. */
.ichange-util-acronym .screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* Marquee viewport. Soft mask at the edges so the text fades in/out rather
   than hard-cutting at the column boundary. */
.ichange-util-acronym {
	margin: 0;
	width: 100%;
	overflow: hidden;
	-webkit-mask-image: linear-gradient(90deg, transparent 0, black 6%, black 94%, transparent 100%);
	        mask-image: linear-gradient(90deg, transparent 0, black 6%, black 94%, transparent 100%);
}
/* Two copies of the acronym laid out in a single flex row. Animating
   translateX by (one copy's width + gap) loops seamlessly because the
   second copy slides into the first copy's starting position. */
.ichange-util-acronym__track {
	display: flex;
	flex-wrap: nowrap;
	width: max-content;
	gap: 80px;
	animation: ichange-acronym-flow 32s linear infinite;
	will-change: transform;
}
.ichange-util-acronym:hover .ichange-util-acronym__track,
.ichange-util-acronym:focus-within .ichange-util-acronym__track {
	animation-play-state: paused;
}
.ichange-util-acronym__item {
	flex: 0 0 auto;
	font-family: var(--wp--preset--font-family--dm-sans);
	font-size: clamp(14px, 1.5vw, 18px);
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: 0.08em;
	color: var(--wp--preset--color--plum);
	white-space: nowrap;
}
.ichange-util-acronym__item strong {
	color: var(--wp--preset--color--teal-pine);
}
@keyframes ichange-acronym-flow {
	from { transform: translate3d(0, 0, 0); }
	to   { transform: translate3d(calc(-50% - 40px), 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
	.ichange-util-acronym__track {
		animation: none;
		justify-content: center;
	}
}

/* No top border — the utility bar's bottom border already separates the bands;
   doubling the line creates a hollow-looking "empty row" above the menu. */
.ichange-split-nav-band {
	border-bottom: 1px solid rgba(138, 124, 153, 0.18);
	background: rgba(255, 255, 255, 0.7);
}
/* 3-col grid: [left-nav | logo | right-rail]. Equal 1fr sides keep the logo
   at true viewport center. The right-rail bundles right-nav + CTA so the
   CTA sits next to the nav instead of being pushed to the page edge. */
.ichange-split-nav {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 24px;
	width: 100%;
}
.ichange-split-nav > * {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}
.ichange-split-nav > .ichange-nav--left {
	justify-self: end;
	min-width: 0;
}
.ichange-split-nav > .ichange-split-nav__rail {
	justify-self: start;
	min-width: 0;
	display: flex;
	align-items: center;
	gap: 24px;
	flex-wrap: nowrap;
}
.ichange-split-nav .ichange-nav--left .wp-block-navigation__container {
	justify-content: flex-end;
}
.ichange-split-nav .ichange-nav--right .wp-block-navigation__container {
	justify-content: flex-start;
}
/* Soft hover grow — tender, just enough to feel responsive without the
   previous dramatic 2.6× zoom. */
.ichange-split-nav__logo {
	display: block;
	width: 120px;
	position: relative;
	z-index: 2;
	transform-origin: center center;
	transition: transform 600ms cubic-bezier(0.32, 0.72, 0, 1);
}
.ichange-split-nav__logo.ichange-site-logo-link:hover,
.ichange-split-nav__logo.ichange-site-logo-link:focus-visible {
	transform: scale(1.4);
	z-index: 2;
}
@media (prefers-reduced-motion: reduce) {
	.ichange-split-nav__logo {
		transition: none;
	}
	.ichange-split-nav__logo.ichange-site-logo-link:hover,
	.ichange-split-nav__logo.ichange-site-logo-link:focus-visible {
		transform: none;
	}
}
.ichange-split-nav__logo .ichange-site-logo {
	display: block;
	width: 100%;
	height: auto;
}
.ichange-split-nav__cta {
	margin: 0;
}
.ichange-split-nav__cta .wp-block-button__link {
	padding: 8px 16px;
	white-space: nowrap;
	font-size: 14px;
}

.ichange-nav--main .wp-block-navigation__container {
	gap: 22px;
}
.ichange-nav--main .wp-block-navigation-item__content {
	padding: 6px 2px;
}
.ichange-nav--main .wp-block-navigation-item__content:hover,
.ichange-nav--main .wp-block-navigation-item__content:focus-visible {
	color: var(--wp--preset--color--plum);
}

/* ----- Hamburger button & mobile menu panel ----------------------------- */
/* The button is hidden on desktop and revealed at the mobile breakpoint
   below. The mobile menu panel is `position: fixed` and slides down from
   the top when `body.is-menu-open` is set (toggled by site.js). */

.ichange-hamburger {
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 6px;
	width: 44px;
	height: 44px;
	padding: 0;
	background: transparent;
	border: 1px solid rgba(94, 54, 108, 0.18);
	border-radius: 6px;
	cursor: pointer;
	transition: background var(--ichange-transition), border-color var(--ichange-transition);
	-webkit-tap-highlight-color: transparent;
}
.ichange-hamburger:hover,
.ichange-hamburger:focus-visible {
	background: rgba(94, 54, 108, 0.06);
	border-color: rgba(94, 54, 108, 0.35);
	outline: none;
}
.ichange-hamburger__bar {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--wp--preset--color--plum);
	border-radius: 2px;
	transform-origin: center;
	transition: transform 240ms cubic-bezier(0.4, 0, 0.2, 1), opacity 180ms ease;
}
body.is-menu-open .ichange-hamburger__bar:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}
body.is-menu-open .ichange-hamburger__bar:nth-child(2) {
	opacity: 0;
}
body.is-menu-open .ichange-hamburger__bar:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}

.ichange-mobile-menu {
	display: none;
}
.ichange-mobile-menu[hidden] {
	display: none !important;
}

/* ----- Mobile layout (<=900px) ----------------------------------------- */

@media (max-width: 900px) {
	.ichange-utility-bar__inner {
		grid-template-columns: 1fr;
		justify-items: center;
		gap: 8px;
	}
	.ichange-utility-bar__inner > .ichange-util-icons,
	.ichange-utility-bar__inner > .ichange-util-acronym,
	.ichange-utility-bar__inner > .ichange-util-contact {
		justify-self: center;
	}
	.ichange-util-contact {
		display: none;
	}

	/* Nav band — collapse to logo + hamburger on the right. */
	.ichange-split-nav {
		grid-template-columns: 1fr auto;
		gap: 12px;
		justify-items: stretch;
		align-items: center;
	}
	.ichange-split-nav > .ichange-nav--left,
	.ichange-split-nav > .ichange-split-nav__rail {
		display: none;
	}
	.ichange-split-nav > .ichange-split-nav__logo {
		grid-column: 1;
		justify-self: start;
		width: 72px;
		margin: 0;
	}
	.ichange-split-nav > .ichange-split-nav__logo .ichange-site-logo {
		width: 100%;
	}
	.ichange-split-nav > .ichange-hamburger {
		display: inline-flex;
		grid-column: 2;
		justify-self: end;
	}
	/* Disable the giant logo zoom on tap — it's a hover effect anyway,
	   but mobile fires :hover on tap and the scale spans the screen. */
	.ichange-split-nav__logo.ichange-site-logo-link:hover,
	.ichange-split-nav__logo.ichange-site-logo-link:focus-visible {
		transform: none;
	}

	/* Mobile menu panel — fullscreen overlay, slides down from the top. */
	.ichange-mobile-menu {
		display: block;
		position: fixed;
		inset: 0;
		z-index: 200;
		background: rgba(255, 255, 255, 0.98);
		-webkit-backdrop-filter: blur(10px);
		        backdrop-filter: blur(10px);
		padding: 96px 28px 40px;
		overflow-y: auto;
		transform: translateY(-12px);
		opacity: 0;
		visibility: hidden;
		transition: transform 280ms cubic-bezier(0.32, 0.72, 0, 1),
		            opacity 240ms ease,
		            visibility 0s linear 280ms;
	}
	.ichange-mobile-menu[hidden] {
		display: block !important;
	}
	body.is-menu-open .ichange-mobile-menu {
		transform: translateY(0);
		opacity: 1;
		visibility: visible;
		transition: transform 320ms cubic-bezier(0.32, 0.72, 0, 1),
		            opacity 260ms ease,
		            visibility 0s linear 0s;
	}
	/* Explicit close (X) button anchored at the top-right of the panel so
	   users have an obvious dismiss target beyond the transformed
	   hamburger in the header. */
	.ichange-mobile-menu__close {
		position: absolute;
		top: 24px;
		right: 24px;
		width: 44px;
		height: 44px;
		padding: 0;
		display: grid;
		place-items: center;
		background: transparent;
		border: 1px solid rgba(94, 54, 108, 0.18);
		border-radius: 10px;
		cursor: pointer;
		transition: background var(--ichange-transition), border-color var(--ichange-transition);
		-webkit-tap-highlight-color: transparent;
	}
	.ichange-mobile-menu__close:hover,
	.ichange-mobile-menu__close:focus-visible {
		background: rgba(94, 54, 108, 0.06);
		border-color: rgba(94, 54, 108, 0.35);
		outline: none;
	}
	.ichange-mobile-menu__close-bar {
		position: absolute;
		width: 22px;
		height: 2px;
		background: var(--wp--preset--color--plum);
		border-radius: 2px;
	}
	.ichange-mobile-menu__close-bar:nth-child(1) {
		transform: rotate(45deg);
	}
	.ichange-mobile-menu__close-bar:nth-child(2) {
		transform: rotate(-45deg);
	}

	.ichange-mobile-menu__list {
		list-style: none;
		padding: 0;
		margin: 0 0 32px;
	}
	.ichange-mobile-menu__list li {
		border-bottom: 1px solid rgba(94, 54, 108, 0.1);
	}
	.ichange-mobile-menu__list li:last-child {
		border-bottom: 0;
	}
	.ichange-mobile-menu__list a {
		display: block;
		padding: 18px 4px;
		font-family: var(--wp--preset--font-family--dm-sans);
		font-size: 22px;
		font-weight: 600;
		color: var(--wp--preset--color--teal-pine);
		text-decoration: none;
		transition: color var(--ichange-transition);
	}
	.ichange-mobile-menu__list a:hover,
	.ichange-mobile-menu__list a:focus-visible {
		color: var(--wp--preset--color--plum);
		outline: none;
	}
	.ichange-mobile-menu__cta {
		display: inline-block;
		padding: 14px 28px;
		background: var(--wp--preset--color--plum);
		color: #fff;
		border-radius: 6px;
		font-family: var(--wp--preset--font-family--dm-sans);
		font-weight: 600;
		font-size: 15px;
		letter-spacing: 0.02em;
		text-decoration: none;
		transition: transform 200ms ease, box-shadow 200ms ease;
	}
	.ichange-mobile-menu__cta:hover,
	.ichange-mobile-menu__cta:focus-visible {
		transform: translateY(-1px);
		box-shadow: 0 10px 24px rgba(94, 54, 108, 0.25);
		outline: none;
	}
	body.is-menu-open {
		overflow: hidden;
	}
	.ichange-nav--main .wp-block-navigation__container {
		gap: 12px;
		justify-content: center !important;
	}
}

/* ----- Label caps utility ------------------------------------------------- */

.ichange-label-caps {
	display: inline-block;
	font-family: var(--wp--preset--font-family--dm-sans);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--wp--preset--color--teal-pine);
}

.has-surface-card-background-color { background-color: var(--wp--preset--color--surface-card) !important; }


/* ==========================================================================
   PROMISE DIAL — slow orbiting nodes around the central transformation circle.

   The orbit container rotates clockwise; each node counter-rotates at the
   same speed so its label stays upright. On hover/focus the orbit pauses,
   so visitors can click without chasing a moving target.
   ========================================================================== */

.wp-block-ichange-promise-dial {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: var(--wp--preset--spacing--60);
	align-items: center;
	padding: var(--wp--preset--spacing--60) 0;
}
@media (max-width: 900px) {
	.wp-block-ichange-promise-dial { grid-template-columns: 1fr; }
}

.ichange-dial {
	position: relative;
	width: clamp(360px, 90%, 460px);
	aspect-ratio: 1;
	margin-inline: auto;
}

.ichange-dial__ring {
	position: absolute;
	inset: 8%;
	border: 2px dashed rgba(255, 255, 255, 0.18);
	border-radius: 50%;
	transition: transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.ichange-dial__center {
	position: absolute;
	inset: 22%;
	background: radial-gradient(circle at 30% 30%, #784E86, #5A2A6E 80%);
	border-radius: 50%;
	display: grid;
	place-items: center;
	color: #fff;
	font-family: var(--wp--preset--font-family--playfair);
	font-weight: 600;
	font-size: clamp(20px, 2.6vw, 28px);
	text-align: center;
	padding: 12px;
	box-shadow: 0 14px 40px -8px rgba(94, 54, 108, 0.6),
				inset 0 0 0 1px rgba(255,255,255,0.15);
	z-index: 2;
}

/* The orbiting wrapper — rotates the entire ring of nodes. */
.ichange-dial__orbit {
	position: absolute;
	inset: 0;
	animation: ichange-dial-orbit 36s linear infinite;
	transform-origin: 50% 50%;
}
@keyframes ichange-dial-orbit {
	from { transform: rotate(0deg); }
	to   { transform: rotate(360deg); }
}

/* Pause when the user wants to interact. */
.ichange-dial:hover .ichange-dial__orbit,
.ichange-dial:focus-within .ichange-dial__orbit,
.ichange-dial:hover .ichange-dial__node,
.ichange-dial:focus-within .ichange-dial__node {
	animation-play-state: paused;
}

.ichange-dial__node {
	position: absolute;
	width: clamp(76px, 10vw, 96px);
	height: clamp(76px, 10vw, 96px);
	margin-top: calc( clamp(76px, 10vw, 96px) / -2 );
	margin-left: calc( clamp(76px, 10vw, 96px) / -2 );
	border-radius: 50%;
	border: none;
	background: #fff;
	color: var(--wp--preset--color--plum-deep);
	font-family: var(--wp--preset--font-family--dm-sans);
	font-weight: 700;
	font-size: 12px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	cursor: pointer;
	display: grid;
	place-items: center;
	box-shadow: 0 14px 28px -10px rgba(0, 0, 0, 0.35),
				inset 0 0 0 1px rgba(94, 54, 108, 0.08);
	z-index: 3;
	/* Counter-rotate to keep label upright. */
	animation: ichange-dial-counter 36s linear infinite;
}

@keyframes ichange-dial-counter {
	from { transform: rotate(0deg); }
	to   { transform: rotate(-360deg); }
}

/* Position each node on the orbit edge. The animation rotates around the
   PARENT (.ichange-dial__orbit), so these positions ride along. */
.ichange-dial__node--top    { top: 4%;    left: 50%; }
.ichange-dial__node--right  { top: 50%;   left: 96%; }
.ichange-dial__node--bottom { top: 96%;   left: 50%; }
.ichange-dial__node--left   { top: 50%;   left: 4%;  }

.ichange-dial__node:hover,
.ichange-dial__node:focus-visible {
	background: #F9D8FF;
	outline: none;
	box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.35),
				0 16px 32px -10px rgba(0, 0, 0, 0.45);
}

.ichange-dial__node[aria-selected="true"] {
	background: var(--wp--preset--color--teal-bright);
	color: #fff;
	box-shadow: 0 0 0 6px rgba(111, 249, 223, 0.35),
				0 18px 40px -10px rgba(0, 182, 159, 0.7);
	z-index: 5;
}

@media (prefers-reduced-motion: reduce) {
	.ichange-dial__orbit, .ichange-dial__node { animation: none; }
}

.ichange-dial__panel { min-height: 240px; }
.ichange-dial__panel-eyebrow {
	color: #6FF9DF;
	font-family: var(--wp--preset--font-family--dm-sans);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	margin: 0 0 14px;
}
.ichange-dial__panel-headline {
	font-family: var(--wp--preset--font-family--playfair);
	font-size: clamp(28px, 4vw, 40px);
	font-weight: 600;
	line-height: 1.15;
	color: #fff;
	margin: 0 0 18px;
}
.ichange-dial__panel-body {
	font-family: var(--wp--preset--font-family--dm-sans);
	font-size: 17px;
	line-height: 1.7;
	color: #F9D8FF;
	max-width: 52ch;
	margin: 0;
}
.ichange-dial__panel--fade { animation: ichange-fade-in 380ms ease-out; }
@keyframes ichange-fade-in {
	from { opacity: 0; transform: translateY(8px); }
	to   { opacity: 1; transform: translateY(0); }
}


/* ----- Footer NAP block --------------------------------------------------- */

.ichange-nap {
	font-family: var(--wp--preset--font-family--dm-sans);
	font-size: 14px;
	line-height: 1.7;
	color: var(--wp--preset--color--ink-soft);
}
.ichange-nap strong { color: var(--wp--preset--color--plum); }


/* ==========================================================================
   HOMEPAGE — Splash, hero, trust, why bubbles, services, testimonials.
   ========================================================================== */

/* ----- Splash preloader — soft pastel circles + wordmark + typed slogan -- */

.ichange-splash {
	position: fixed;
	inset: 0;
	z-index: 9999;
	background:
		linear-gradient(160deg, #F4EBF1 0%, #E9E0E6 60%, #DDE9E5 100%);
	color: var(--wp--preset--color--plum-deep);
	display: grid;
	place-items: center;
	pointer-events: all;
	opacity: 1;
	overflow: hidden;
	transition: opacity 700ms ease, visibility 0s linear 700ms;
	will-change: opacity;
}
.ichange-splash[data-state="dismissed"] {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

/* Two large overlapping pastel circles — Woodbridge-style organic shapes.
   Each circle:
     1. fades + scales in (entrance, ~1.4s),
     2. then drifts in a slow circular path indefinitely (parallel animation).
   The two paths are different durations and reversed directions so the pair
   never sync, giving a continuous, gentle "circling" feel across the screen. */

.ichange-splash__shape {
	position: absolute;
	border-radius: 50%;
	filter: blur(0.5px);
	opacity: 0;
	will-change: transform, opacity;
}

.ichange-splash__shape--1 {
	right: -8%;
	top: -16%;
	width: clamp(420px, 55vw, 720px);
	aspect-ratio: 1;
	background: radial-gradient(circle at 35% 35%, rgba(231, 181, 245, 0.55), rgba(183, 142, 168, 0.35) 60%, transparent 85%);
	animation:
		ichange-splash-fade-in 1400ms cubic-bezier(0.2, 0.8, 0.2, 1) 50ms forwards,
		ichange-shape-orbit-1 22s ease-in-out infinite;
}
.ichange-splash__shape--2 {
	right: -12%;
	bottom: -20%;
	width: clamp(540px, 70vw, 920px);
	aspect-ratio: 1;
	background: radial-gradient(circle at 60% 40%, rgba(111, 249, 223, 0.4), rgba(42, 111, 108, 0.25) 55%, transparent 85%);
	animation:
		ichange-splash-fade-in 1400ms cubic-bezier(0.2, 0.8, 0.2, 1) 220ms forwards,
		ichange-shape-orbit-2 28s ease-in-out infinite reverse;
}

@keyframes ichange-splash-fade-in {
	from { opacity: 0; }
	to   { opacity: 1; }
}

/* Circle 1 — large clockwise sweep across the full viewport. */
@keyframes ichange-shape-orbit-1 {
	0%   { transform: translate(0, 0)            scale(1)    rotate(0deg);   }
	20%  { transform: translate(-55vw, 25vh)     scale(1.06) rotate(20deg);  }
	40%  { transform: translate(-75vw, 65vh)     scale(0.94) rotate(40deg);  }
	60%  { transform: translate(-15vw, 75vh)     scale(1.04) rotate(60deg);  }
	80%  { transform: translate(35vw,  35vh)     scale(1.02) rotate(40deg);  }
	100% { transform: translate(0, 0)            scale(1)    rotate(0deg);   }
}

/* Circle 2 — counter-clockwise sweep (the `reverse` keyword on the animation
   property runs this in reverse). */
@keyframes ichange-shape-orbit-2 {
	0%   { transform: translate(0, 0)            scale(1)    rotate(0deg);   }
	22%  { transform: translate(-65vw, -25vh)    scale(1.04) rotate(-15deg); }
	45%  { transform: translate(-80vw, -65vh)    scale(0.96) rotate(-30deg); }
	68%  { transform: translate(-25vw, -80vh)    scale(1.05) rotate(-50deg); }
	85%  { transform: translate(45vw,  -45vh)    scale(1.02) rotate(-25deg); }
	100% { transform: translate(0, 0)            scale(1)    rotate(0deg);   }
}

@media (prefers-reduced-motion: reduce) {
	.ichange-splash__shape--1,
	.ichange-splash__shape--2 {
		animation: ichange-splash-fade-in 600ms ease-out forwards;
	}
}

.ichange-splash__inner {
	position: relative;
	text-align: center;
	max-width: 760px;
	padding: clamp(24px, 4vw, 48px);
	z-index: 1;
}

.ichange-splash__slogan {
	font-family: var(--wp--preset--font-family--fraunces);
	font-size: clamp(36px, 6vw, 72px);
	font-style: normal;
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: -0.02em;
	margin: 0;
	color: var(--wp--preset--color--plum-deep);
	min-height: 1.08em;
}
.ichange-splash__line { display: block; min-height: 1.1em; }
.ichange-splash__line--accent { color: var(--wp--preset--color--teal-pine); font-style: italic; }
.ichange-splash__typed { display: inline; }
.ichange-splash__cursor {
	display: inline-block;
	width: 3px;
	height: 0.8em;
	background: var(--wp--preset--color--teal-bright);
	margin-left: 6px;
	vertical-align: middle;
	animation: ichange-cursor-blink 0.9s steps(1) infinite;
	transform: translateY(-2px);
}
.ichange-splash__line:not(.is-active) .ichange-splash__cursor,
.ichange-splash__line.is-done .ichange-splash__cursor {
	display: none;
}
@keyframes ichange-cursor-blink {
	0%, 50%   { opacity: 1; }
	51%, 100% { opacity: 0; }
}

.ichange-splash__caption {
	font-family: var(--wp--preset--font-family--dm-sans);
	color: var(--wp--preset--color--teal-pine);
	font-size: clamp(22px, 2.6vw, 32px);
	font-style: normal;
	font-weight: 600;
	letter-spacing: 0.005em;
	margin: 36px 0 0;
	opacity: 0;
	animation: ichange-splash-fade 800ms ease-out 1800ms forwards;
}

@keyframes ichange-splash-fade { to { opacity: 1; } }

@media (prefers-reduced-motion: reduce) {
	.ichange-splash__shape { animation: none; opacity: 1; }
	.ichange-splash__cursor { animation: none; }
	.ichange-splash__brand, .ichange-splash__caption { animation: none; opacity: 1; }
}


/* ----- Hero — full-bleed video placeholder + left text + offset card ----- */

.ichange-hero {
	position: relative;
	overflow: hidden;
	isolation: isolate;
	min-height: clamp(560px, 79vh, 740px);
	display: grid;
	align-items: stretch;
	color: #fff;
}
/* Phones — contained card so the hero doesn't dominate small screens.
   Desktop stays full-bleed; only phones get the constrained look. */
@media (max-width: 600px) {
	.ichange-hero {
		min-height: clamp(260px, 46vh, 360px);
		max-width: calc(100vw - 16px);
		margin-inline: auto;
		margin-top: 8px;
		border-radius: 6px;
	}
}

.ichange-hero__media {
	position: absolute;
	inset: 0;
	z-index: -3;
	overflow: hidden;
}
.ichange-hero__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	background: transparent;
}

/* YouTube iframe — sized to cover the hero like a background video.
   The "max(100%, 177.78vh) / max(100%, 56.25vw)" pair keeps the 16:9 video
   covering both wide and tall hero shapes (oversize then center-crop).
   pointer-events:none so the trust card and CTAs above stay clickable. */
.ichange-hero__youtube {
	position: absolute;
	top: 50%;
	left: 50%;
	width: max(100%, 177.78vh);
	height: max(100%, 56.25vw);
	transform: translate(-50%, -50%);
	pointer-events: none;
	border: 0;
	background: transparent;
	transform-origin: center;
}
/* Quiet static fallback (animated gradient removed — read as AI-template).
   The video covers this when its source loads. */
.ichange-hero__fallback {
	position: absolute;
	inset: 0;
	z-index: -2;
	background: linear-gradient(168deg, #2F083E 0%, #1E1A1E 55%, #00201B 100%);
}
/* Dark gradient overlay on top of the video so the text is readable. */
.ichange-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		linear-gradient(105deg, rgba(15, 5, 25, 0.78) 0%, rgba(15, 5, 25, 0.42) 55%, rgba(15, 5, 25, 0.20) 100%),
		linear-gradient(180deg, rgba(0,0,0,0.0) 50%, rgba(0,0,0,0.55) 100%);
}

.ichange-hero__inner {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 1320px;
	margin: 0 auto;
	padding: clamp(80px, 11vw, 140px) clamp(28px, 5vw, 80px) clamp(120px, 13vw, 180px);
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	gap: 40px;
	align-items: end;
}

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

.ichange-hero__content { max-width: 640px; }

/* Eyebrow — plain caps over a thin underline. The previous frosted-glass
   pill (semi-transparent fill + backdrop-blur) was the kind of decorative
   treatment that reads as template. Now it sits like editorial dateline. */
.ichange-hero__eyebrow {
	display: inline-block;
	font-family: var(--wp--preset--font-family--dm-sans);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.78);
	padding: 0 0 6px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.35);
	margin: 0 0 28px;
}

.ichange-hero__headline {
	font-family: var(--wp--preset--font-family--fraunces);
	font-size: clamp(44px, 7.5vw, 96px);
	font-style: normal;
	font-weight: 700;
	line-height: 1.05;
	letter-spacing: -0.022em;
	color: #fff;
	margin: 0 0 28px;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.55);
}
.ichange-hero__line {
	display: block;
	opacity: 0;
	transform: translateY(28px);
	animation: ichange-hero-rise 900ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.ichange-hero__line--1 { animation-delay: 100ms; }
.ichange-hero__line--2 { animation-delay: 350ms; }
.ichange-hero__line--3 { animation-delay: 600ms; color: #6FF9DF; }
@keyframes ichange-hero-rise { to { opacity: 1; transform: translateY(0); } }

.ichange-hero__sub {
	font-family: var(--wp--preset--font-family--dm-sans);
	font-size: clamp(17px, 1.6vw, 21px);
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.86);
	max-width: 560px;
	margin: 0 0 36px;
}

.ichange-hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; }

/* Buttons (light-on-dark for the video hero) */
.ichange-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 16px 30px;
	border-radius: 6px;
	font-family: var(--wp--preset--font-family--dm-sans);
	font-size: 17px;
	font-weight: 600;
	letter-spacing: 0.02em;
	text-decoration: none;
	transition: transform var(--ichange-transition), box-shadow var(--ichange-transition), background-color var(--ichange-transition), color var(--ichange-transition);
	cursor: pointer;
	border: 2px solid transparent;
}
.ichange-btn--primary {
	background: #fff;
	color: var(--wp--preset--color--plum-deep);
	box-shadow: 0 14px 32px -10px rgba(0, 0, 0, 0.4);
}
.ichange-btn--primary:hover {
	background: #6FF9DF;
	color: var(--wp--preset--color--plum-deep);
	transform: translateY(-2px);
}
.ichange-btn--ghost {
	background: transparent;
	color: #fff;
	border-color: rgba(255, 255, 255, 0.45);
}
.ichange-btn--ghost:hover {
	background: rgba(255, 255, 255, 0.18);
	border-color: #fff;
	transform: translateY(-2px);
}

/* Offset trust card pinned bottom-right. Square corners, hairline border,
   no glow shadow — editorial card not floating glass. */
.ichange-hero__card {
	justify-self: end;
	align-self: end;
	max-width: 360px;
	background: #fff;
	color: var(--wp--preset--color--ink);
	border-radius: 6px;
	padding: 22px 22px 22px 24px;
	border: 1px solid var(--wp--preset--color--outline);
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
	display: flex;
	gap: 14px;
	align-items: flex-start;
	backdrop-filter: blur(8px);
	position: relative;
}
.ichange-hero__card::before {
	content: "";
	position: absolute;
	top: -1px; left: -1px; right: -1px;
	height: 4px;
	border-top-left-radius: 18px;
	border-top-right-radius: 18px;
	background: linear-gradient(90deg, var(--wp--preset--color--plum), var(--wp--preset--color--teal-bright));
}
.ichange-hero__card-mark {
	flex-shrink: 0;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: var(--wp--preset--color--plum-soft);
	color: var(--wp--preset--color--plum);
	display: grid;
	place-items: center;
}
.ichange-hero__card-title {
	font-family: var(--wp--preset--font-family--playfair);
	font-size: 16px;
	font-weight: 700;
	color: var(--wp--preset--color--plum-deep);
	margin: 0 0 6px;
}
.ichange-hero__card-copy {
	font-family: var(--wp--preset--font-family--dm-sans);
	font-size: 15px;
	line-height: 1.6;
	color: var(--wp--preset--color--ink-soft);
	margin: 0;
}

@media (max-width: 880px) {
	.ichange-hero__card { justify-self: stretch; max-width: 100%; }
}

/* Scroll-down chip — static (bouncing animation removed). */
.ichange-hero__scroll {
	position: absolute;
	left: 50%;
	bottom: 36px;
	transform: translateX(-50%);
	width: 44px;
	height: 44px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.75);
	border: 1px solid rgba(255, 255, 255, 0.28);
	text-decoration: none;
	font-size: 18px;
	z-index: 2;
	transition: color var(--ichange-transition), background var(--ichange-transition);
}
.ichange-hero__scroll:hover,
.ichange-hero__scroll:focus-visible {
	color: #fff;
	background: rgba(255, 255, 255, 0.16);
	outline: none;
}

/* Unmute toggle — bottom-right. Properly contrasty so it's findable on
   any video frame (the previous near-transparent version was invisible
   on light scenes). */
.ichange-hero__sound {
	position: absolute;
	right: clamp(20px, 4vw, 48px);
	bottom: 36px;
	width: 44px;
	height: 44px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.55);
	color: #fff;
	border: 1.5px solid rgba(255, 255, 255, 0.85);
	cursor: pointer;
	padding: 0;
	z-index: 2;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
	transition: background var(--ichange-transition), transform var(--ichange-transition);
}
.ichange-hero__sound:hover,
.ichange-hero__sound:focus-visible {
	background: rgba(0, 0, 0, 0.75);
	transform: scale(1.06);
	outline: none;
}
.ichange-hero__sound-icon { display: none; }
.ichange-hero__sound[data-state="muted"]   .ichange-hero__sound-icon--muted   { display: block; }
.ichange-hero__sound[data-state="unmuted"] .ichange-hero__sound-icon--unmuted { display: block; }

/* Play/pause toggle — same chip language as the sound button, positioned
   just to its left (one button width + 10px gap). Toggles via the YouTube
   JS API (postMessage). */
.ichange-hero__playpause {
	position: absolute;
	right: calc(clamp(20px, 4vw, 48px) + 54px);
	bottom: 36px;
	width: 44px;
	height: 44px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.55);
	color: #fff;
	border: 1.5px solid rgba(255, 255, 255, 0.85);
	cursor: pointer;
	padding: 0;
	z-index: 2;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
	transition: background var(--ichange-transition), transform var(--ichange-transition);
}
.ichange-hero__playpause:hover,
.ichange-hero__playpause:focus-visible {
	background: rgba(0, 0, 0, 0.75);
	transform: scale(1.06);
	outline: none;
}
.ichange-hero__playpause-icon { display: none; }
.ichange-hero__playpause[data-state="playing"] .ichange-hero__playpause-icon--pause { display: block; }
.ichange-hero__playpause[data-state="paused"]  .ichange-hero__playpause-icon--play  { display: block; }


/* ----- Mission section — 16:9 responsive YouTube embed ------------------- */

.ichange-mission-video {
	margin: 0 0 32px;
	max-width: 880px;
}
.ichange-mission-video__frame {
	position: relative;
	width: 100%;
	padding-top: 56.25%; /* 16:9 */
	border-radius: 6px;
	overflow: hidden;
	background: #000;
}
.ichange-mission-video__frame iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}


/* ----- Trust band --------------------------------------------------------- */

.ichange-trust {
	display: grid;
	grid-template-columns: 1fr minmax(auto, 720px) 1fr;
	gap: 32px;
	align-items: center;
	padding: clamp(60px, 8vw, 110px) 32px;
	background: var(--wp--preset--color--surface-card);
	overflow: hidden;
}
.ichange-trust__flank { height: 320px; min-width: 0; }
.ichange-trust__flank-art {
	width: 100%;
	height: 100%;
	border-radius: 6px;
}
.ichange-trust__flank-art--plum { background: linear-gradient(135deg, #5E366C 0%, #B78EA8 70%, #F0A5B9 100%); }
.ichange-trust__flank-art--teal { background: linear-gradient(135deg, #2A6F6C 0%, #00B69F 70%, #6FF9DF 100%); }
.ichange-trust__center { text-align: center; max-width: 720px; margin: 0 auto; }
.ichange-trust__badge {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	padding: 10px 18px;
	background: var(--wp--preset--color--surface);
	border: 1px solid var(--wp--preset--color--outline);
	border-radius: 4px;
	margin-bottom: 28px;
}
.ichange-trust__badge-num {
	font-family: var(--wp--preset--font-family--playfair);
	font-size: 17px;
	font-weight: 700;
	color: var(--wp--preset--color--plum);
}
.ichange-trust__badge-line { display: inline-block; width: 22px; height: 1px; background: var(--wp--preset--color--outline); }
.ichange-trust__badge-meta {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--wp--preset--color--teal-pine);
}
.ichange-trust__headline {
	font-family: var(--wp--preset--font-family--playfair);
	font-size: clamp(28px, 3.8vw, 44px);
	line-height: 1.18;
	font-weight: 600;
	color: var(--wp--preset--color--plum-deep);
	margin: 0 0 20px;
}
.ichange-trust__copy {
	font-family: var(--wp--preset--font-family--dm-sans);
	font-size: 18px;
	line-height: 1.7;
	color: var(--wp--preset--color--ink-soft);
	margin: 0 0 16px;
}
.ichange-trust__signoff { font-family: var(--wp--preset--font-family--dm-sans); color: var(--wp--preset--color--plum); font-size: 16px; margin: 0; }
@media (max-width: 900px) {
	.ichange-trust { grid-template-columns: 1fr; }
	.ichange-trust__flank { display: none; }
}


/* ----- Why ICHANGE — bigger, non-overlapping bubbles, smooth float ------- */

.ichange-why {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
	gap: clamp(40px, 5vw, 64px);
	max-width: 1320px;
	margin: 0 auto;
	padding: clamp(80px, 10vw, 140px) clamp(28px, 5vw, 64px) clamp(32px, 4vw, 56px);
	align-items: center;
}
.ichange-why__lead {
	display: flex;
	flex-direction: column;
	gap: 24px;
	max-width: 520px;
}
.ichange-why__eyebrow {
	color: var(--wp--preset--color--mauve);
	margin: 0;
	font-size: 14px;
	letter-spacing: 0.18em;
}
.ichange-why__headline {
	font-family: var(--wp--preset--font-family--playfair);
	font-size: clamp(32px, 4.4vw, 56px);
	line-height: 1.12;
	font-weight: 600;
	color: var(--wp--preset--color--mauve);
	margin: 0;
}
.ichange-why__em {
	color: var(--wp--preset--color--plum-deep);
	font-style: normal;
	display: block;
	margin-top: 8px;
}
.ichange-why__copy {
	font-family: var(--wp--preset--font-family--dm-sans);
	font-size: 18px;
	line-height: 1.75;
	color: var(--wp--preset--color--ink-soft);
	margin: 0;
	max-width: 480px;
}
.ichange-why__nav {
	display: flex;
	gap: 12px;
	margin-top: 12px;
}
.ichange-why__nav-arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1.5px solid var(--wp--preset--color--mauve);
	color: var(--wp--preset--color--mauve);
	font-size: 22px;
	font-weight: 300;
	line-height: 1;
	text-decoration: none;
	transition: background-color var(--ichange-transition), color var(--ichange-transition), transform var(--ichange-transition), border-color var(--ichange-transition);
}
.ichange-why__nav-arrow:hover,
.ichange-why__nav-arrow:focus-visible {
	background: var(--wp--preset--color--plum);
	border-color: var(--wp--preset--color--plum);
	color: #fff;
	transform: translateY(-1px);
	outline: none;
}

/* Bubble grid: 2x2 (no overlap), each circle gently floats independently. */
.ichange-why__bubbles {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	gap: clamp(24px, 3vw, 40px);
	align-items: center;
	justify-items: center;
	padding: 16px;
}

.ichange-bubble-card {
	width: 100%;
	max-width: clamp(260px, 26vw, 340px);
	aspect-ratio: 1;
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(28px, 3.2vw, 44px);
	position: relative;
	color: #fff;
	border: 1px solid rgba(0, 0, 0, 0.06);
	transition: transform 320ms cubic-bezier(0.32, 0.72, 0, 1);
	will-change: transform;
}
.ichange-bubble-card:hover {
	transform: translateY(-6px);
	z-index: 5;
}

/* Flat colour fills (radial gradients removed). Each card sits in its own
   single brand tone; the four together still read as a balanced palette. */
.ichange-bubble-card--plum  { background: #5A2A6E; }
.ichange-bubble-card--lilac { background: #B78EA8; color: #fff; }
.ichange-bubble-card--teal  { background: #2A6F6C; }
.ichange-bubble-card--blush { background: #F0A5B9; color: var(--wp--preset--color--plum-deep); }

.ichange-bubble-card__icon {
	position: absolute;
	top: 14%;
	right: 14%;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: rgba(255,255,255,0.94);
	color: var(--wp--preset--color--plum-deep);
	display: grid;
	place-items: center;
	box-shadow: 0 8px 20px -6px rgba(0,0,0,0.35);
}
.ichange-bubble-card__title {
	font-family: var(--wp--preset--font-family--playfair);
	font-size: clamp(24px, 2.6vw, 32px);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.01em;
	margin: 0 0 14px;
	color: #fff;
	text-shadow: none;
}
.ichange-bubble-card__copy {
	font-family: var(--wp--preset--font-family--dm-sans);
	font-size: clamp(13px, 1.05vw, 15px);
	line-height: 1.55;
	margin: 0 0 16px;
	opacity: 0.94;
}
.ichange-bubble-card__tag {
	font-family: var(--wp--preset--font-family--dm-sans);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.85);
}

@media (prefers-reduced-motion: reduce) {
	.ichange-bubble-card { animation: none; }
}

@media (max-width: 980px) {
	.ichange-why { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 600px) {
	.ichange-why__bubbles { grid-template-columns: 1fr; grid-template-rows: auto; }
	.ichange-bubble-card { aspect-ratio: 1.05; max-width: 100%; }
}


/* ----- Services flip cards (with corner arrows) ------------------------- */

.ichange-services {
	max-width: 1320px;
	margin: 0 auto;
	padding: clamp(28px, 4vw, 56px) clamp(28px, 5vw, 64px) clamp(60px, 8vw, 110px);
}
.ichange-services__head {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: end;
	gap: 24px;
	margin-bottom: 48px;
}
.ichange-services__title {
	font-family: var(--wp--preset--font-family--playfair);
	font-size: clamp(32px, 4.5vw, 56px);
	font-weight: 600;
	line-height: 1.1;
	color: var(--wp--preset--color--plum-deep);
	margin: 12px 0 0;
}
.ichange-services__title em { font-style: italic; color: var(--wp--preset--color--teal-pine); }
.ichange-services__lede {
	font-family: var(--wp--preset--font-family--vollkorn, var(--wp--preset--font-family--playfair));
	font-size: clamp(17px, 1.6vw, 22px);
	line-height: 1.5;
	color: var(--wp--preset--color--plum);
	margin: 10px 0 0;
	max-width: 56ch;
}
.ichange-services__lede em { font-style: italic; color: var(--wp--preset--color--teal-pine); font-weight: 600; }
.ichange-services__all {
	font-family: var(--wp--preset--font-family--dm-sans);
	font-weight: 700;
	color: var(--wp--preset--color--plum);
	text-decoration: none;
	border-bottom: 2px solid var(--wp--preset--color--teal-bright);
	padding-bottom: 4px;
	transition: gap 200ms;
	display: inline-flex;
	gap: 8px;
}
.ichange-services__all:hover { gap: 14px; }
.ichange-services__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 22px;
}

.ichange-flipcard {
	display: block;
	aspect-ratio: 4 / 5;
	min-height: 360px;
	perspective: 1400px;
	border-radius: 6px;
	text-decoration: none;
	color: inherit;
	outline: none;
}
.ichange-flipcard__inner {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
	transform-style: preserve-3d;
	transition: transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
	border-radius: inherit;
}
.ichange-flipcard:hover .ichange-flipcard__inner,
.ichange-flipcard:focus-visible .ichange-flipcard__inner {
	transform: rotateY(180deg);
}
.ichange-flipcard:focus-visible { box-shadow: 0 0 0 4px rgba(0, 182, 159, 0.4); border-radius: 6px; }
.ichange-flipcard__face {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 28px;
	border-radius: inherit;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	border: 1px solid rgba(0, 0, 0, 0.06);
	overflow: hidden;
}
.ichange-flipcard__face--front {
	color: #fff;
	background: #5A2A6E;
}
.ichange-flipcard__face--back {
	background: var(--wp--preset--color--surface-card);
	color: var(--wp--preset--color--ink);
	transform: rotateY(180deg);
	border: 1px solid var(--wp--preset--color--outline);
}
.ichange-flipcard--teal .ichange-flipcard__face--front  { background: #2A6F6C; }
.ichange-flipcard--blush .ichange-flipcard__face--front { background: #B78EA8; }

.ichange-flipcard__arrow {
	position: absolute;
	top: 18px;
	right: 18px;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(255,255,255,0.94);
	color: var(--wp--preset--color--plum-deep);
	display: grid;
	place-items: center;
	transition: transform 300ms, background-color 300ms;
	box-shadow: 0 8px 20px -8px rgba(0,0,0,0.3);
	z-index: 2;
}
.ichange-flipcard:hover .ichange-flipcard__face--front .ichange-flipcard__arrow {
	transform: rotate(45deg);
	background: #6FF9DF;
}
.ichange-flipcard__arrow--back {
	background: var(--wp--preset--color--plum);
	color: #fff;
	transform: rotate(45deg);
}

.ichange-flipcard__num {
	font-family: var(--wp--preset--font-family--playfair);
	font-size: 64px;
	font-weight: 700;
	letter-spacing: -0.04em;
	line-height: 1;
	opacity: 0.92;
}
.ichange-flipcard__tag {
	display: inline-block;
	width: fit-content;
	font-family: var(--wp--preset--font-family--dm-sans);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	padding: 6px 14px;
	border-radius: 4px;
	background: rgba(255, 255, 255, 0.18);
	border: 1px solid rgba(255, 255, 255, 0.28);
	margin-top: 14px;
	align-self: flex-start;
}
.ichange-flipcard__title {
	font-family: var(--wp--preset--font-family--playfair);
	font-size: 30px;
	font-weight: 600;
	line-height: 1.2;
	margin-top: auto;
}
.ichange-flipcard__hint {
	display: block;
	font-family: var(--wp--preset--font-family--dm-sans);
	font-size: 13px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	margin-top: 14px;
	opacity: 0.8;
}
.ichange-flipcard__face--back .ichange-flipcard__detail {
	font-family: var(--wp--preset--font-family--dm-sans);
	font-size: 18px;
	line-height: 1.7;
	color: var(--wp--preset--color--ink-soft);
	margin-top: 48px;
}
.ichange-flipcard__cta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--wp--preset--font-family--dm-sans);
	font-weight: 700;
	font-size: 17px;
	color: var(--wp--preset--color--plum);
	border-bottom: 2px solid var(--wp--preset--color--teal-bright);
	padding-bottom: 4px;
	width: fit-content;
}
@media (prefers-reduced-motion: reduce) {
	.ichange-flipcard__inner { transition: none; }
	.ichange-flipcard__arrow { transition: none; }
}


/* ----- Testimonials — static 3-card grid -------------------------------- */

.ichange-testimonials {
	max-width: 1320px;
	margin: 0 auto;
	padding: clamp(60px, 8vw, 110px) clamp(28px, 5vw, 64px);
	background: var(--wp--preset--color--surface);
	border-radius: 8px;
}
.ichange-testimonials__head {
	text-align: center;
	margin-bottom: 48px;
}
.ichange-testimonials__eyebrow { display: block; margin-bottom: 14px; }
.ichange-testimonials__title {
	font-family: var(--wp--preset--font-family--playfair);
	font-size: clamp(30px, 4vw, 52px);
	font-weight: 600;
	color: var(--wp--preset--color--plum-deep);
	margin: 0;
}
.ichange-testimonials__title em { font-style: italic; color: var(--wp--preset--color--teal-pine); }

.ichange-testimonials__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 24px;
}

.ichange-testimonial {
	background: var(--wp--preset--color--surface-card);
	border-radius: 6px;
	padding: 32px 28px;
	border: 1px solid var(--wp--preset--color--outline);
	box-shadow: 0 20px 40px -18px rgba(94, 54, 108, 0.18);
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 18px;
	position: relative;
	transition:
		transform 400ms cubic-bezier(0.2, 0.8, 0.2, 1),
		box-shadow 400ms cubic-bezier(0.2, 0.8, 0.2, 1),
		border-color 400ms ease;
	/* Initial state for entrance animation. The .is-in class (added via
	   IntersectionObserver in site.js) snaps it to the resting state. */
	opacity: 0;
	transform: translateY(28px);
}

.ichange-testimonial.is-in {
	opacity: 1;
	transform: translateY(0);
}

/* Gentle staggered entrance only — the perpetual float animation was
   removed. Always-moving elements read as "AI template/Webflow demo". */
.ichange-testimonial:nth-child(1).is-in { transition-delay: 0ms; }
.ichange-testimonial:nth-child(2).is-in { transition-delay: 120ms; }
.ichange-testimonial:nth-child(3).is-in { transition-delay: 240ms; }

.ichange-testimonial::before {
	/* Subtle gradient sheen that brightens on hover (Woodbridge feel). */
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: linear-gradient(135deg, rgba(111, 249, 223, 0.0) 0%, rgba(247, 165, 185, 0.0) 100%);
	opacity: 0;
	transition: opacity 400ms ease;
	pointer-events: none;
}

.ichange-testimonial:hover {
	transform: translateY(-12px);
	box-shadow: 0 36px 72px -22px rgba(94, 54, 108, 0.32);
	border-color: var(--wp--preset--color--teal-bright);
	animation-play-state: paused;
}
.ichange-testimonial:hover::before {
	opacity: 1;
	background: linear-gradient(135deg, rgba(111, 249, 223, 0.10) 0%, rgba(247, 165, 185, 0.12) 100%);
}

.ichange-testimonial:hover .ichange-testimonial__stars {
	transform: scale(1.05);
	transition: transform 300ms ease;
}

@media (prefers-reduced-motion: reduce) {
	.ichange-testimonial { opacity: 1; transform: none; animation: none; transition: none; }
	.ichange-testimonial:hover { transform: none; }
}

.ichange-testimonial__top { display: flex; align-items: center; gap: 14px; }
.ichange-testimonial__stars { color: var(--wp--preset--color--teal-bright); letter-spacing: 2px; font-size: 18px; }
.ichange-testimonial__rating {
	font-family: var(--wp--preset--font-family--playfair);
	font-weight: 700;
	color: var(--wp--preset--color--plum);
	font-size: 18px;
}
.ichange-testimonial__quote {
	font-family: var(--wp--preset--font-family--playfair);
	font-size: 19px;
	line-height: 1.5;
	color: var(--wp--preset--color--plum-deep);
	margin: 0;
	font-style: italic;
	position: relative;
	padding-left: 4px;
}
.ichange-testimonial__mark {
	position: absolute;
	left: -12px;
	top: -16px;
	font-size: 56px;
	line-height: 1;
	color: var(--wp--preset--color--teal-bright);
	opacity: 0.45;
	font-style: normal;
	font-family: var(--wp--preset--font-family--playfair);
}
.ichange-testimonial__attr {
	font-family: var(--wp--preset--font-family--dm-sans);
	border-top: 1px solid var(--wp--preset--color--outline);
	padding-top: 16px;
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.ichange-testimonial__name { font-weight: 700; color: var(--wp--preset--color--plum); font-size: 17px; }
.ichange-testimonial__meta { color: var(--wp--preset--color--ink-soft); font-size: 15px; }

.ichange-testimonials__note {
	margin-top: 32px;
	text-align: center;
	font-family: var(--wp--preset--font-family--dm-sans);
	font-size: 12px;
	letter-spacing: 0.04em;
	color: var(--wp--preset--color--ink-soft);
}


/* ----- Site logo (header + footer) -------------------------------------- */

.ichange-site-logo-link,
.ichange-footer-logo-link {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	line-height: 0;
	transition: transform var(--ichange-transition);
}
.ichange-site-logo-link:hover,
.ichange-footer-logo-link:hover {
	transform: scale(1.04);
}

.ichange-site-logo {
	display: block;
	width: auto;
	height: clamp(96px, 11vw, 156px);
	max-width: 100%;
	object-fit: contain;
}

/* Footer sits on dark plum, so the logo's black silhouettes can fade. We
   slightly brighten the image and add a subtle drop-shadow to keep the
   tree's outline crisp against the dark background. */
.ichange-footer-logo {
	display: block;
	width: auto;
	height: clamp(72px, 7.5vw, 104px);
	max-width: 100%;
	object-fit: contain;
	filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.35));
}


/* ==========================================================================
   INTAKE FORM — getting-to-know-you form + crisis aside.
   On desktop: form (3fr) | aside (2fr) side-by-side. On mobile: stacked,
   reduced padding so the card doesn't crowd the viewport edge.
   ========================================================================== */

.ichange-intake {
	display: grid;
	grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
	gap: 48px;
	align-items: start;
	background: var(--wp--preset--color--surface-card);
	border-radius: 6px;
	padding: 48px;
	box-shadow: 0 18px 50px -18px rgba(94, 54, 108, 0.18);
}

.ichange-intake__form {
	display: grid;
	gap: 20px;
	min-width: 0;
}

.ichange-intake__field { min-width: 0; }

.ichange-intake__label {
	display: block;
	margin-bottom: 6px;
	font-family: var(--wp--preset--font-family--dm-sans);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--wp--preset--color--plum);
}

.ichange-intake__input {
	width: 100%;
	border: 1px solid var(--wp--preset--color--outline);
	border-radius: 4px;
	padding: 12px 14px;
	font-family: var(--wp--preset--font-family--dm-sans);
	font-size: 16px; /* >=16px prevents iOS zoom on focus */
	background: var(--wp--preset--color--surface-card);
	color: var(--wp--preset--color--ink);
	box-sizing: border-box;
}
.ichange-intake__input:focus-visible {
	outline: none;
	border-color: var(--wp--preset--color--plum);
	box-shadow: 0 0 0 3px rgba(94, 54, 108, 0.18);
}
.ichange-intake__input--textarea { resize: vertical; }

.ichange-intake__hint {
	margin: 6px 0 0;
	font-size: 12px;
	color: var(--wp--preset--color--ink-soft);
	line-height: 1.5;
}

.ichange-intake__honeypot {
	position: absolute;
	left: -9999px;
	height: 0;
	overflow: hidden;
}

.ichange-intake__submit {
	background: var(--wp--preset--color--plum);
	color: #fff;
	border: none;
	border-radius: 6px;
	padding: 16px 32px;
	font-family: var(--wp--preset--font-family--dm-sans);
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.02em;
	cursor: pointer;
	justify-self: start;
	transition: transform var(--ichange-transition), box-shadow var(--ichange-transition);
}
.ichange-intake__submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 28px -10px rgba(94, 54, 108, 0.4);
}

.ichange-intake__legal {
	margin: 0;
	font-size: 12px;
	color: var(--wp--preset--color--ink-soft);
	line-height: 1.5;
}
.ichange-intake__legal a {
	color: var(--wp--preset--color--teal-pine);
	text-decoration: underline;
}

.ichange-intake__alert {
	padding: 16px 20px;
	border-radius: 6px;
	font-size: 15px;
	line-height: 1.5;
	border: 1px solid;
}
.ichange-intake__alert--success {
	background: #E0F8F2;
	border-color: #00B69F;
	color: #005045;
}
.ichange-intake__alert--error {
	background: #FFE6E0;
	border-color: #BA1A1A;
	color: #93000A;
}

.ichange-intake__schedule {
	display: flex;
	flex-direction: column;
	gap: 20px;
	min-width: 0;
	align-self: start;
}
.ichange-intake__schedule-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--wp--preset--color--plum);
	color: #fff;
	border-radius: 6px;
	padding: 20px 36px;
	font-family: var(--wp--preset--font-family--dm-sans);
	font-size: 18px;
	font-weight: 600;
	letter-spacing: 0.02em;
	text-decoration: none;
	align-self: start;
	transition: transform var(--ichange-transition), box-shadow var(--ichange-transition);
}
.ichange-intake__schedule-btn:hover,
.ichange-intake__schedule-btn:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 14px 28px -10px rgba(94, 54, 108, 0.4);
	color: #fff;
}
.ichange-intake__schedule-btn--secondary {
	background: transparent;
	color: var(--wp--preset--color--plum);
	border: 2px solid var(--wp--preset--color--plum);
	padding: 18px 34px;
}
.ichange-intake__schedule-btn--secondary:hover,
.ichange-intake__schedule-btn--secondary:focus-visible {
	background: var(--wp--preset--color--plum);
	color: #fff;
	box-shadow: 0 14px 28px -10px rgba(94, 54, 108, 0.4);
}
.ichange-intake__schedule-options {
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.ichange-intake__schedule-option {
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: flex-start;
}
.ichange-intake__schedule-sub {
	margin: 0;
	font-size: 14px;
	color: var(--wp--preset--color--ink-soft);
	line-height: 1.6;
}
.ichange-intake__schedule-note {
	margin: 0;
	font-size: 14px;
	color: var(--wp--preset--color--ink-soft);
	line-height: 1.6;
}
.ichange-intake__schedule-note a {
	color: var(--wp--preset--color--teal-pine);
	text-decoration: underline;
}

.ichange-intake__aside {
	background: linear-gradient(135deg, #5E366C 0%, #2A6F6C 100%);
	color: #fff;
	padding: 32px;
	border-radius: 6px;
	align-self: start;
	min-width: 0;
}
.ichange-intake__aside-eyebrow {
	font-family: var(--wp--preset--font-family--dm-sans);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #6FF9DF;
	margin: 0 0 16px;
}
.ichange-intake__aside-title {
	font-family: var(--wp--preset--font-family--playfair);
	font-size: 24px;
	font-weight: 600;
	margin: 0 0 16px;
	line-height: 1.25;
	color: #fff;
}
.ichange-intake__aside-list {
	list-style: none;
	padding: 0;
	margin: 0 0 24px;
	display: grid;
	gap: 12px;
}
.ichange-intake__aside-list li {
	background: rgba(255,255,255,0.08);
	padding: 14px 16px;
	border-radius: 4px;
}
.ichange-intake__aside-list strong {
	color: #6FF9DF;
	display: block;
	font-size: 16px;
	letter-spacing: 0.05em;
}
.ichange-intake__aside-list span {
	font-size: 15px;
	color: #F9D8FF;
}
.ichange-intake__aside-foot {
	font-size: 15px;
	color: #F9D8FF;
	line-height: 1.7;
	margin: 0;
}

/* Tablet — looser stacking, drop the heavy padding. */
@media (max-width: 900px) {
	.ichange-intake {
		grid-template-columns: 1fr;
		gap: 28px;
		padding: 32px;
		border-radius: 20px;
	}
}

/* Mobile — tight padding, full-width submit, smaller aside. */
@media (max-width: 600px) {
	.ichange-intake {
		gap: 24px;
		padding: 22px 18px;
		border-radius: 6px;
	}
	.ichange-intake__form { gap: 16px; }
	.ichange-intake__submit {
		justify-self: stretch;
		text-align: center;
		padding: 16px 24px;
	}
	.ichange-intake__schedule-btn {
		align-self: stretch;
		padding: 16px 24px;
		font-size: 16px;
	}
	.ichange-intake__aside {
		padding: 24px 20px;
		border-radius: 6px;
	}
	.ichange-intake__aside-title { font-size: 20px; }
}


/* ==========================================================================
   GLOBAL MOBILE POLISH — patterns whose inline styles assume desktop widths.
   ========================================================================== */

/* Header — keep the "Start the Process" CTA from squeezing the logo on
   small screens. The header uses inline padding tokens, so we only need
   to tighten margins on phones. */
@media (max-width: 600px) {
	.wp-block-template-part[data-area="header"] .wp-block-button__link,
	header.wp-block-template-part .wp-block-button__link {
		padding: 8px 16px;
		font-size: 13px;
	}
	.ichange-site-logo { height: clamp(72px, 18vw, 104px); }
}

/* ----- Mobile navigation overlay --------------------------------------------
   WordPress's core navigation block opens a full-screen "responsive container"
   on mobile. By default, items keep the desktop justify-right alignment, which
   pins them to the right edge. Stack and pad properly when open. */

.ichange-nav .wp-block-navigation__responsive-container.is-menu-open {
	padding: 88px 24px 40px;
}
.ichange-nav .wp-block-navigation__responsive-container.is-menu-open
	.wp-block-navigation__responsive-container-content {
	width: 100%;
}
.ichange-nav .wp-block-navigation__responsive-container.is-menu-open
	.wp-block-navigation__container {
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
	width: 100%;
}
.ichange-nav .wp-block-navigation__responsive-container.is-menu-open
	.wp-block-navigation-item {
	width: 100%;
}
.ichange-nav .wp-block-navigation__responsive-container.is-menu-open
	.wp-block-navigation-item__content {
	display: block;
	width: 100%;
	padding: 14px 4px;
	font-family: var(--wp--preset--font-family--playfair);
	font-size: 26px;
	font-weight: 600;
	line-height: 1.2;
	color: var(--wp--preset--color--plum-deep);
	border-bottom: 1px solid rgba(138, 124, 153, 0.18);
	text-decoration: none;
}
.ichange-nav .wp-block-navigation__responsive-container.is-menu-open
	.wp-block-navigation-item__content:hover,
.ichange-nav .wp-block-navigation__responsive-container.is-menu-open
	.wp-block-navigation-item__content:focus-visible {
	color: var(--wp--preset--color--teal-pine);
	background: transparent;
}

/* Bigger, more visible hamburger / close icons on mobile. */
@media (max-width: 600px) {
	.ichange-nav .wp-block-navigation__responsive-container-open,
	.ichange-nav .wp-block-navigation__responsive-container-close {
		padding: 8px;
	}
	.ichange-nav .wp-block-navigation__responsive-container-open svg,
	.ichange-nav .wp-block-navigation__responsive-container-close svg {
		width: 28px;
		height: 28px;
	}
}

/* Hero CTAs on phones — smaller, content-sized buttons stacked at the
   start of the row instead of full-width chunky pills. */
@media (max-width: 600px) {
	.ichange-hero__inner {
		padding: clamp(40px, 12vw, 64px) 18px clamp(80px, 18vw, 110px);
	}
	.ichange-hero__ctas {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}
	.ichange-hero__ctas .ichange-btn {
		padding: 11px 22px;
		font-size: 14px;
		gap: 8px;
		width: auto;
	}
	.ichange-hero__card { padding: 18px 18px 18px 20px; }
	/* Smaller scroll-down + mute chips so they don't dominate the frame. */
	.ichange-hero__scroll {
		width: 44px;
		height: 44px;
		font-size: 18px;
		bottom: 24px;
	}
	.ichange-hero__sound {
		width: 40px;
		height: 40px;
		bottom: 24px;
		right: clamp(14px, 5vw, 24px);
	}
}

/* Bridge / Safety gradient panels — the wp:columns block stacks its split
   automatically under ~782px, but the inline 50px section padding stays
   too generous on phones. Lighten the side padding so the gradient panel
   doesn't dominate the viewport. */
@media (max-width: 600px) {
	.wp-block-group.alignwide.has-background[style*="linear-gradient"] {
		padding-left: clamp(20px, 6vw, 32px) !important;
		padding-right: clamp(20px, 6vw, 32px) !important;
	}
}

/* ==========================================================================
   SERVICES CONSULT BANNER — gentle entry-point CTA above the service cards.
   ========================================================================== */
.ichange-services-consult {
	display: flex;
	align-items: center;
	gap: 24px;
	background: #fff;
	border: 1px solid var(--wp--preset--color--outline);
	border-radius: 6px;
	padding: 20px 28px;
}
.ichange-services-consult + .ichange-services-consult {
	margin-top: 12px;
}
/* Variants now use a single coloured left accent strip rather than a
   tinted-gradient fill — flatter, more editorial. */
.ichange-services-consult--family     { border-left: 3px solid var(--wp--preset--color--blush); }
.ichange-services-consult--family .ichange-services-consult__eyebrow     { color: var(--wp--preset--color--plum); }
.ichange-services-consult--adolescent { border-left: 3px solid var(--wp--preset--color--teal-bright); }
.ichange-services-consult--adolescent .ichange-services-consult__eyebrow { color: var(--wp--preset--color--teal-pine); }
.ichange-services-consult--adults     { border-left: 3px solid var(--wp--preset--color--plum); }
.ichange-services-consult--adults .ichange-services-consult__eyebrow     { color: var(--wp--preset--color--plum); }
.ichange-services-consult--couples    { border-left: 3px solid var(--wp--preset--color--blush); }
.ichange-services-consult--couples .ichange-services-consult__eyebrow    { color: var(--wp--preset--color--plum); }
.ichange-services-consult--specialty  { border-left: 3px solid var(--wp--preset--color--teal-pine); }
.ichange-services-consult--specialty .ichange-services-consult__eyebrow  { color: var(--wp--preset--color--teal-pine); }
.ichange-services-consult__copy { flex: 1; min-width: 0; }
.ichange-services-consult__eyebrow {
	margin: 0 0 4px;
	font-family: var(--wp--preset--font-family--dm-sans);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--wp--preset--color--teal-pine);
}
.ichange-services-consult__text {
	margin: 0;
	font-family: var(--wp--preset--font-family--dm-sans);
	font-size: 15px;
	line-height: 1.6;
	color: var(--wp--preset--color--ink-soft);
}
.ichange-services-consult__btn {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	background: var(--wp--preset--color--plum);
	color: #fff;
	border-radius: 6px;
	padding: 14px 24px;
	font-family: var(--wp--preset--font-family--dm-sans);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.02em;
	text-decoration: none;
	transition: transform var(--ichange-transition), box-shadow var(--ichange-transition);
}
.ichange-services-consult__btn:hover,
.ichange-services-consult__btn:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 12px 24px -10px rgba(94,54,108,0.4);
	color: #fff;
}
@media (max-width: 720px) {
	.ichange-services-consult {
		flex-direction: column;
		align-items: stretch;
		text-align: left;
		padding: 20px 22px;
		gap: 16px;
	}
	.ichange-services-consult__btn {
		justify-content: center;
	}
}

/* Page-wide guard: stop horizontal scroll caused by full-bleed video,
   off-canvas splash shapes, and animated bubble drift on phones. */
@media (max-width: 600px) {
	html, body { overflow-x: hidden; }
}
