/* Homepage-only styles: the premium hero composition, assurance strip,
   brand band, documentation panel and closing CTA. Loaded only on the
   front page (see inc/enqueue.php) so other pages don't pay for it.

   The hero background intentionally matches the black/gold label design
   of the real product photography — see DESIGN_SYSTEM.md. */

/* ---------- Hero ---------- */
.ip-hero-premium {
	position: relative;
	overflow: hidden;
	color: var(--wp--preset--color--paper);
	/* Layered lighting on a near-black wall: a warm key light falls where
	   the gallery niches sit, a faint crimson wash anchors the lower left,
	   and hairline verticals keep the surface from reading as flat vinyl. */
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
		radial-gradient(900px 640px at 78% 38%, rgba(192, 138, 62, 0.15), transparent 68%),
		radial-gradient(720px 520px at 8% 112%, rgba(146, 46, 40, 0.17), transparent 62%),
		linear-gradient(180deg, #211d1a 0%, #141110 100%);
	background-size: 96px 100%, auto, auto, auto;
}
/* Gold hairline along the hero's lower edge — echoes the gold banding on
   the real product labels without adding any faux badge/graphic. */
.ip-hero-premium::after {
	content: "";
	position: absolute;
	left: 0; right: 0; bottom: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent 5%, rgba(156, 124, 85, 0.75) 35%, rgba(146, 46, 40, 0.65) 65%, transparent 95%);
}

.ip-hero-premium-inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: clamp(40px, 5vw, 88px);
	align-items: center;
	padding-block: clamp(64px, 7vw, 104px);
	min-height: min(720px, 84vh);
}

/* Both grid items must be allowed to shrink inside the container. */
.ip-hero-copy,
.ip-hero-media {
	min-width: 0;
}

.ip-hero-copy {
	position: relative;
	z-index: 2;
	max-width: 610px;
}

.ip-hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: var(--wp--preset--font-size--micro);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: var(--wp--preset--color--amber);
	margin-bottom: var(--wp--preset--spacing--4);
}
.ip-hero-eyebrow::before {
	content: "";
	width: 28px;
	height: 1px;
	background: var(--wp--preset--color--crimson);
}

.ip-hero-premium h1 {
	color: var(--wp--preset--color--white);
	font-size: clamp(2.65rem, 1.6rem + 3.1vw, 3.95rem);
	line-height: 0.98;
	letter-spacing: -0.025em;
	margin-bottom: var(--wp--preset--spacing--4);
	text-wrap: balance;
}

.ip-hero-lede {
	font-size: var(--wp--preset--font-size--body-lg);
	line-height: 1.65;
	color: rgba(252, 251, 250, 0.74);
	max-width: 44ch;
	margin-bottom: var(--wp--preset--spacing--5);
}

.ip-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--wp--preset--spacing--3);
}

.ip-hero-note {
	margin: var(--wp--preset--spacing--5) 0 0;
	font-size: var(--wp--preset--font-size--micro);
	text-transform: uppercase;
	letter-spacing: 0.085em;
	color: rgba(252, 251, 250, 0.5);
}

/* Buttons on the dark hero surface */
.ip-btn--hero {
	background: var(--wp--preset--color--paper);
	border-color: var(--wp--preset--color--paper);
	color: var(--wp--preset--color--ink);
}
.ip-btn--hero:hover {
	background: var(--wp--preset--color--cream);
	border-color: var(--wp--preset--color--cream);
	color: var(--wp--preset--color--ink);
}
.ip-btn--ghost {
	background: transparent;
	border-color: rgba(252, 251, 250, 0.38);
	color: var(--wp--preset--color--paper);
}
.ip-btn--ghost:hover {
	background: rgba(252, 251, 250, 0.08);
	border-color: rgba(252, 251, 250, 0.65);
	color: var(--wp--preset--color--white);
}

/* ---------- Hero media: single editorial photograph ---------- */
.ip-hero-media {
	position: relative;
	width: clamp(380px, 38vw, 540px);
	margin: 0;
	justify-self: end;
}
.ip-hero-media::before {
	content: "";
	position: absolute;
	inset: 8% -8% -7% 10%;
	background: radial-gradient(circle, rgba(192, 138, 62, 0.18), transparent 66%);
	filter: blur(16px);
	pointer-events: none;
}
.ip-hero-image-link,
.ip-hero-image-link:hover,
.ip-hero-image-link:focus {
	display: block;
	text-decoration: none;
}
.ip-hero-image-frame {
	position: relative;
	display: block;
	overflow: hidden;
	border: 1px solid rgba(192, 160, 112, 0.58);
	border-radius: clamp(18px, 2vw, 28px);
	background: #f7f4ef;
	padding: clamp(8px, 1vw, 12px);
	box-shadow:
		0 0 0 1px rgba(20, 16, 13, 0.48),
		0 28px 70px -24px rgba(0, 0, 0, 0.76),
		0 8px 22px rgba(0, 0, 0, 0.34);
}
.ip-hero-image-frame::after {
	content: "";
	position: absolute;
	inset: 10px;
	border: 1px solid rgba(146, 46, 40, 0.16);
	border-radius: calc(clamp(18px, 2vw, 28px) - 7px);
	box-shadow: inset 0 0 36px rgba(83, 61, 38, 0.07);
	pointer-events: none;
}
.ip-hero-image-frame img {
	display: block;
	width: 100%;
	height: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	object-position: center;
	border-radius: calc(clamp(18px, 2vw, 28px) - 9px);
}
.ip-hero-media figcaption {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 18px;
	font-size: var(--wp--preset--font-size--micro);
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(252, 251, 250, 0.72);
}
.ip-hero-media figcaption::before {
	content: "";
	width: 32px;
	height: 1px;
	background: linear-gradient(90deg, var(--wp--preset--color--crimson), var(--wp--preset--color--amber));
}
.ip-hero-image-link:focus-visible {
	outline: var(--ip-focus-width) solid var(--ip-focus-color);
	outline-offset: 6px;
	border-radius: clamp(18px, 2vw, 28px);
}

/* Hero entrance: quiet fade/rise, only when motion is welcome. Pure CSS,
   so it degrades to the final resting state without JS. */
@media (prefers-reduced-motion: no-preference) {
	@keyframes ip-hero-rise {
		from { opacity: 0; transform: translateY(14px); }
		to   { opacity: 1; transform: translateY(0); }
	}
	.ip-hero-eyebrow,
	.ip-hero-premium h1,
	.ip-hero-lede,
	.ip-hero-actions,
	.ip-hero-note { animation: ip-hero-rise 550ms ease-out both; }
	.ip-hero-premium h1 { animation-delay: 60ms; }
	.ip-hero-lede { animation-delay: 120ms; }
	.ip-hero-actions { animation-delay: 180ms; }
	.ip-hero-note { animation-delay: 240ms; }

	.ip-hero-media { animation: ip-hero-rise 640ms cubic-bezier(0.33, 1, 0.68, 1) 180ms both; }
}

@media (max-width: 1023px) {
	.ip-hero-premium-inner {
		grid-template-columns: 1fr;
		gap: clamp(40px, 7vw, 64px);
		min-height: 0;
		padding-block: clamp(56px, 8vw, 80px);
	}
	.ip-hero-copy { max-width: 680px; margin-inline: auto; text-align: center; }
	.ip-hero-eyebrow { justify-content: center; }
	.ip-hero-lede { margin-inline: auto; }
	.ip-hero-actions { justify-content: center; }
	.ip-hero-media { width: min(620px, 86vw); justify-self: center; }
	.ip-hero-media figcaption { justify-content: center; }
}
@media (max-width: 479px) {
	.ip-hero-premium-inner { padding-block: 48px 56px; }
	.ip-hero-premium h1 { font-size: clamp(2.45rem, 11vw, 3.2rem); }
	.ip-hero-lede { font-size: 1rem; }
	.ip-hero-actions { flex-direction: column; }
	.ip-hero-actions .ip-btn { width: 100%; }
	.ip-hero-media { width: 100%; }
	.ip-hero-image-frame { padding: 7px; }
	.ip-hero-image-frame img { aspect-ratio: 1 / 1; }
	.ip-hero-media figcaption { margin-top: 14px; }
}

/* ---------- Assurance and hero transition ---------- */
.ip-assurance {
	position: relative;
	z-index: 2;
	background: var(--wp--preset--color--white);
	border-bottom: 1px solid var(--ip-border-color);
	box-shadow: 0 -16px 40px rgba(17, 14, 12, 0.08);
}
.ip-assurance-inner {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--wp--preset--spacing--5);
	padding-block: clamp(24px, 3vw, 38px);
}
.ip-assurance-item {
	display: flex;
	gap: var(--wp--preset--spacing--3);
	align-items: flex-start;
	min-width: 0;
}
.ip-assurance-item + .ip-assurance-item {
	border-left: 1px solid var(--ip-border-color);
	padding-left: var(--wp--preset--spacing--5);
}
.ip-assurance-item .ip-icon {
	flex-shrink: 0;
	color: var(--wp--preset--color--crimson);
	margin-top: 2px;
}
.ip-assurance-item h2 {
	font-family: var(--wp--preset--font-family--sans);
	font-size: var(--wp--preset--font-size--body);
	font-weight: 650;
	margin-bottom: 4px;
}
.ip-assurance-item p {
	margin: 0;
	font-size: var(--wp--preset--font-size--small);
	color: var(--wp--preset--color--bronze);
}

/* ---------- Restrained brand-value motion strip ---------- */
.ip-value-strip {
	position: relative;
	overflow: hidden;
	background: #191614;
	border-bottom: 1px solid rgba(192, 138, 62, 0.2);
	color: rgba(252, 251, 250, 0.74);
}
.ip-value-strip::before,
.ip-value-strip::after {
	content: "";
	position: absolute;
	z-index: 2;
	top: 0;
	bottom: 0;
	width: min(9vw, 120px);
	pointer-events: none;
}
.ip-value-strip::before { left: 0; background: linear-gradient(90deg, #191614, transparent); }
.ip-value-strip::after { right: 0; background: linear-gradient(270deg, #191614, transparent); }
.ip-value-track {
	display: flex;
	width: max-content;
	will-change: transform;
	animation: ip-value-scroll 38s linear infinite;
}
.ip-value-strip:hover .ip-value-track,
.ip-value-strip:focus-within .ip-value-track { animation-play-state: paused; }
.ip-value-group {
	display: flex;
	align-items: center;
	flex: none;
	padding: 15px 0;
}
.ip-value-item {
	display: inline-flex;
	align-items: center;
	gap: 18px;
	padding-inline: clamp(22px, 3vw, 46px);
	font-size: 0.69rem;
	font-weight: 650;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	white-space: nowrap;
}
.ip-value-item > span {
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: var(--wp--preset--color--amber);
	box-shadow: 0 0 0 3px rgba(192, 138, 62, 0.1);
}
@keyframes ip-value-scroll { to { transform: translateX(-50%); } }

/* ---------- Featured catalog ---------- */
.ip-featured-products-shell {
	background:
		radial-gradient(760px 360px at 8% 0%, rgba(192, 138, 62, 0.08), transparent 68%),
		var(--wp--preset--color--neutral-100);
	border-bottom: 1px solid var(--ip-border-color);
}
.ip-featured-products .ip-section-head { align-items: flex-end; }
.ip-featured-products .ip-section-intro { max-width: 690px; }
.ip-section-intro h2 {
	font-size: clamp(2rem, 1.45rem + 1.8vw, 3rem);
	line-height: 1.08;
	text-wrap: balance;
}
.ip-section-intro p {
	max-width: 62ch;
	margin: var(--wp--preset--spacing--3) 0 0;
	color: var(--wp--preset--color--bronze);
}
.ip-featured-products .ip-product-card {
	border-color: rgba(90, 74, 62, 0.14);
	box-shadow: 0 12px 34px rgba(27, 25, 23, 0.06);
}
.ip-featured-products .ip-product-card-media {
	position: relative;
	background:
		radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.96), rgba(249, 246, 242, 0.76) 62%, rgba(236, 230, 223, 0.7));
}
.ip-featured-products .ip-product-card-media::after {
	content: "";
	position: absolute;
	left: 12%;
	right: 12%;
	bottom: 8%;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(146, 46, 40, 0.34), transparent);
	pointer-events: none;
}
.ip-featured-products .ip-product-card-body { padding: clamp(20px, 2.3vw, 28px); }
.ip-featured-products .ip-product-card-name { font-size: clamp(1.2rem, 1rem + 0.5vw, 1.45rem); }

/* ---------- Brand band ---------- */
.ip-brand-band {
	background: var(--wp--preset--color--white);
	border-bottom: 1px solid var(--ip-border-color);
}
.ip-brand-band-inner {
	display: grid;
	grid-template-columns: minmax(120px, 0.32fr) minmax(0, 1fr);
	column-gap: clamp(32px, 6vw, 90px);
	row-gap: var(--wp--preset--spacing--4);
	align-items: start;
	padding-block: var(--wp--preset--spacing--8);
}
.ip-brand-band .ip-eyebrow { padding-top: 9px; }
.ip-brand-band-excerpt p {
	font-family: var(--wp--preset--font-family--serif);
	font-size: clamp(1.55rem, 1.1rem + 1.45vw, 2.35rem);
	font-weight: 500;
	line-height: 1.38;
	color: var(--wp--preset--color--ink);
	max-width: 32ch;
	margin: 0;
}
.ip-brand-band-inner > p { grid-column: 2; margin: 0; }
.ip-link-arrow {
	font-weight: 650;
	color: var(--wp--preset--color--crimson);
}
.ip-link-arrow::after { content: " \2192"; }
.ip-link-arrow:hover { color: var(--wp--preset--color--crimson-deep); }

/* ---------- Trust and standards ---------- */
.ip-standards {
	position: relative;
	overflow: hidden;
	color: var(--wp--preset--color--paper);
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
		radial-gradient(720px 480px at 6% 24%, rgba(146, 46, 40, 0.19), transparent 65%),
		linear-gradient(145deg, #211d1a, #131110);
	background-size: 112px 100%, auto, auto;
}
.ip-standards::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(192, 138, 62, 0.58), transparent);
}
.ip-standards-inner {
	display: grid;
	grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
	gap: clamp(48px, 7vw, 108px);
	align-items: start;
	padding-block: clamp(72px, 9vw, 124px);
}
.ip-standards .ip-eyebrow,
.ip-cta-closer .ip-eyebrow { color: var(--wp--preset--color--amber); }
.ip-standards h2 {
	color: var(--wp--preset--color--white);
	font-size: clamp(2.15rem, 1.5rem + 2.2vw, 3.45rem);
	line-height: 1.05;
	margin: var(--wp--preset--spacing--3) 0 var(--wp--preset--spacing--4);
	text-wrap: balance;
}
.ip-standards-copy > p {
	color: rgba(252, 251, 250, 0.68);
	font-size: var(--wp--preset--font-size--body-lg);
	line-height: 1.65;
	max-width: 48ch;
}
.ip-standards-contacts {
	display: grid;
	gap: var(--wp--preset--spacing--3);
	margin-top: var(--wp--preset--spacing--6);
}
.ip-standards-contacts a {
	width: fit-content;
	color: var(--wp--preset--color--paper);
	font-size: var(--wp--preset--font-size--small);
	font-weight: 650;
	text-decoration: none;
}
.ip-standards-contacts a:hover span { color: var(--wp--preset--color--amber); }
.ip-standards-contacts span {
	display: block;
	margin-top: 3px;
	color: rgba(252, 251, 250, 0.55);
	font-weight: 450;
	transition: color var(--ip-transition-fast);
}
.ip-standards-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	border-top: 1px solid rgba(252, 251, 250, 0.16);
	border-left: 1px solid rgba(252, 251, 250, 0.16);
}
.ip-standard-item {
	min-width: 0;
	padding: clamp(24px, 3vw, 38px);
	border-right: 1px solid rgba(252, 251, 250, 0.16);
	border-bottom: 1px solid rgba(252, 251, 250, 0.16);
	background: rgba(255, 255, 255, 0.018);
}
.ip-standard-number {
	display: block;
	margin-bottom: clamp(34px, 4vw, 58px);
	color: var(--wp--preset--color--amber);
	font-size: 0.68rem;
	font-weight: 650;
	letter-spacing: 0.14em;
}
.ip-standard-item h3 {
	color: var(--wp--preset--color--white);
	font-family: var(--wp--preset--font-family--sans);
	font-size: 1rem;
	margin-bottom: 8px;
}
.ip-standard-item p {
	color: rgba(252, 251, 250, 0.6);
	font-size: var(--wp--preset--font-size--small);
	line-height: 1.65;
	margin: 0;
}

/* ---------- Documentation panel ---------- */
.ip-coa-callout { padding-block: clamp(64px, 8vw, 104px); }
.ip-doc-panel {
	position: relative;
	overflow: hidden;
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.6fr);
	gap: var(--wp--preset--spacing--6);
	align-items: center;
	background:
		radial-gradient(480px 240px at 96% 0%, rgba(192, 138, 62, 0.11), transparent 72%),
		var(--wp--preset--color--white);
	border: 1px solid rgba(90, 74, 62, 0.2);
	border-radius: var(--ip-radius-md);
	padding: clamp(30px, 5vw, 70px);
	box-shadow: 0 18px 50px rgba(27, 25, 23, 0.07);
}
.ip-doc-panel-copy h2 { margin: var(--wp--preset--spacing--2) 0 var(--wp--preset--spacing--3); }
.ip-doc-panel-copy p { color: var(--wp--preset--color--bronze); max-width: 52ch; }
.ip-doc-panel-figure {
	display: flex;
	align-items: center;
	justify-content: center;
}
.ip-doc-panel-icon {
	width: clamp(84px, 10vw, 124px);
	height: clamp(84px, 10vw, 124px);
	color: rgba(90, 74, 62, 0.28);
	stroke-width: 0.8;
}

/* ---------- FAQ preview ---------- */
.ip-faq-preview {
	background: var(--wp--preset--color--neutral-100);
	border-top: 1px solid var(--ip-border-color);
}
.ip-faq-preview-inner {
	display: grid;
	grid-template-columns: minmax(0, 0.62fr) minmax(0, 1fr);
	gap: clamp(44px, 8vw, 112px);
}
.ip-faq-intro { align-self: start; }
.ip-faq-intro h2 {
	font-size: clamp(2rem, 1.45rem + 1.8vw, 3rem);
	line-height: 1.08;
	margin: var(--wp--preset--spacing--2) 0 var(--wp--preset--spacing--3);
	text-wrap: balance;
}
.ip-faq-intro p { color: var(--wp--preset--color--bronze); max-width: 42ch; }
.ip-faq-intro .ip-btn { margin-top: var(--wp--preset--spacing--3); }

/* ---------- Closing contact CTA ---------- */
.ip-cta-closer {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(820px 430px at 92% 110%, rgba(146, 46, 40, 0.3), transparent 62%),
		linear-gradient(180deg, #1b1815 0%, #131110 100%);
}
.ip-cta-closer::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent 5%, rgba(156, 124, 85, 0.6) 50%, transparent 95%);
}
.ip-cta-closer-inner {
	display: grid;
	grid-template-columns: minmax(0, 0.74fr) minmax(0, 1.26fr);
	gap: clamp(44px, 7vw, 100px);
	align-items: center;
	padding-block: clamp(72px, 9vw, 120px);
}
.ip-cta-closer h2 {
	color: var(--wp--preset--color--paper);
	font-size: clamp(2.05rem, 1.45rem + 2vw, 3.25rem);
	line-height: 1.06;
	margin: var(--wp--preset--spacing--2) 0 var(--wp--preset--spacing--3);
	text-wrap: balance;
}
.ip-cta-closer-copy p {
	color: rgba(252, 251, 250, 0.66);
	line-height: 1.65;
	margin: 0;
}
.ip-contact-routes { display: grid; gap: var(--wp--preset--spacing--3); }
.ip-contact-route {
	display: grid;
	gap: 5px;
	padding: clamp(22px, 3vw, 32px);
	border: 1px solid rgba(252, 251, 250, 0.16);
	border-radius: var(--ip-radius-md);
	background: rgba(255, 255, 255, 0.035);
	color: var(--wp--preset--color--paper);
	text-decoration: none;
	transition: background var(--ip-transition-fast), border-color var(--ip-transition-fast), transform var(--ip-transition-fast);
}
.ip-contact-route:hover {
	background: rgba(255, 255, 255, 0.065);
	border-color: rgba(192, 138, 62, 0.5);
	color: var(--wp--preset--color--white);
	text-decoration: none;
}
.ip-contact-route-label {
	font-size: 0.66rem;
	font-weight: 650;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	color: var(--wp--preset--color--amber);
}
.ip-contact-route strong {
	font-size: clamp(0.92rem, 0.82rem + 0.45vw, 1.15rem);
	overflow-wrap: anywhere;
}
.ip-contact-route > span:last-child {
	font-size: var(--wp--preset--font-size--small);
	color: rgba(252, 251, 250, 0.56);
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
	.ip-contact-route:hover { transform: translateX(4px); }
}

@media (max-width: 1023px) {
	.ip-assurance-inner { grid-template-columns: 1fr; gap: 0; }
	.ip-assurance-item { padding-block: var(--wp--preset--spacing--3); }
	.ip-assurance-item + .ip-assurance-item {
		border-left: 0;
		border-top: 1px solid var(--ip-border-color);
		padding-left: 0;
	}
	.ip-standards-inner,
	.ip-cta-closer-inner { grid-template-columns: 1fr; }
	.ip-standards-copy { max-width: 660px; }
}

@media (max-width: 767px) {
	.ip-featured-products .ip-section-head { align-items: stretch; }
	.ip-featured-products .ip-section-head,
	.ip-brand-band-inner,
	.ip-faq-preview-inner { grid-template-columns: 1fr; }
	.ip-featured-products .ip-section-head { flex-direction: column; }
	.ip-featured-products .ip-section-head .ip-btn,
	.ip-faq-intro .ip-btn { width: 100%; }
	.ip-brand-band-inner { display: grid; gap: var(--wp--preset--spacing--3); }
	.ip-brand-band .ip-eyebrow { padding-top: 0; }
	.ip-brand-band-inner > p { grid-column: 1; }
	.ip-standards-grid { grid-template-columns: 1fr; }
	.ip-standard-number { margin-bottom: 24px; }
	.ip-doc-panel { grid-template-columns: 1fr; }
	.ip-doc-panel-figure { display: none; }
	.ip-faq-preview-inner { gap: var(--wp--preset--spacing--6); }
}

@media (max-width: 479px) {
	.ip-section-intro h2,
	.ip-faq-intro h2 { font-size: clamp(1.8rem, 9vw, 2.2rem); }
	.ip-standards h2,
	.ip-cta-closer h2 { font-size: clamp(1.95rem, 10vw, 2.45rem); }
	.ip-contact-route { padding: 20px; }
}

@media (prefers-reduced-motion: reduce) {
	.ip-value-track {
		width: 100%;
		animation: none;
		will-change: auto;
	}
	.ip-value-group:first-child {
		width: 100%;
		justify-content: center;
		flex-wrap: wrap;
		gap: 10px 0;
	}
	.ip-value-group[aria-hidden="true"] { display: none; }
	.ip-value-item { white-space: normal; }
	.ip-faq-toggle::before,
	.ip-faq-toggle::after { transition: none; }
}
