/* Arveon Lift System — DERMORIGIN Lift System product page.
   Tokens and nav/footer rules mirror mu-plugins/arveon-homepage/assets/homepage.css
   so this page reads as the same site; this page has no scroll-driven stage,
   so the content below the nav is normal document flow. */

:root {
	--av-cream: #ecd3c9;
	--av-rose: #c6896e;
	--av-rose-dark: #aa6551;
	--av-ink: #1a1512;
	--av-nav-bg: rgba(17, 15, 13, 0.06);
	--av-nav-border: rgba(26, 21, 18, 0.12);
	--av-nav-chip-bg: rgba(26, 21, 18, 0.04);
	--av-nav-text: #1a1512;
	--av-body: #5a4a42;
	--av-paper: #fbf8f6;
}

html.arveon-lift,
body.arveon-lift {
	margin: 0;
	padding: 0;
	background: var(--av-paper);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
	-webkit-font-smoothing: antialiased;
}

body.arveon-lift * {
	box-sizing: border-box;
}

body.arveon-lift a {
	color: inherit;
}

body.arveon-lift .av-nav__cta,
body.arveon-lift .av-ls-close__cta {
	color: var(--av-ink);
}

body.arveon-lift :focus-visible {
	outline: 2px solid var(--av-rose-dark);
	outline-offset: 3px;
}

/* ------------------------------------------------------------------ *
 * Floating nav — same structure/classes as the homepage, on a fixed
 * light tint since this page never sits over a dark background plate.
 * ------------------------------------------------------------------ */

.av-nav-wrap {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	padding: 18px 20px 0;
	transition: padding 0.45s cubic-bezier(.4, 0, .2, 1);
}

.av-nav-wrap.is-expanded {
	padding: 0;
}

.av-nav {
	width: 100%;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: stretch;
	gap: 12px;
	background: rgba(255, 255, 255, 0.72);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--av-nav-border);
	border-radius: 14px;
	padding: 16px 28px;
	box-shadow: 0 10px 30px rgba(90, 60, 45, 0.1);
	transition: border-radius 0.45s cubic-bezier(.4, 0, .2, 1);
}

.av-nav-wrap.is-expanded .av-nav {
	border-radius: 0;
	background: rgba(255, 255, 255, 0.92);
}

.av-nav__col {
	display: flex;
	align-items: center;
}

.av-nav__col--left {
	justify-content: flex-start;
	gap: 16px;
}

.av-nav__divider {
	width: 1px;
	align-self: stretch;
	margin: -16px 0;
	background: rgba(26, 21, 18, 0.1);
	flex: 0 0 auto;
}

.av-nav__col--center {
	justify-content: center;
}

.av-nav__col--right {
	justify-content: flex-end;
	gap: 10px;
}

.av-nav__logo {
	display: flex;
	align-items: center;
	line-height: 0;
}

.av-nav__logo img {
	height: 28px;
	width: auto;
	display: block;
	filter: brightness(0);
}

.av-nav__icon-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: transparent;
	border: none;
	color: var(--av-nav-text);
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease;
	padding: 0;
}

.av-nav__icon-btn:hover {
	background: rgba(26, 21, 18, 0.06);
	color: var(--av-rose-dark);
}

.av-sound-toggle .av-icon--sound-off {
	display: none;
}

.av-sound-toggle.is-muted .av-icon--sound-on {
	display: none;
}

.av-sound-toggle.is-muted .av-icon--sound-off {
	display: block;
}

.av-nav__lang {
	position: relative;
}

.av-lang-toggle {
	background: none;
	border: none;
	cursor: pointer;
	padding: 4px 2px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	color: var(--av-nav-text);
	transition: color 0.2s ease;
}

.av-lang-toggle:hover {
	color: var(--av-rose-dark);
}

.av-nav__lang-menu {
	position: absolute;
	top: calc(100% + 12px);
	left: 50%;
	transform: translateX(-50%) translateY(-6px);
	min-width: 92px;
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--av-nav-border);
	border-radius: 4px;
	overflow: hidden;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
	z-index: 10;
	box-shadow: 0 10px 30px rgba(90, 60, 45, 0.14);
}

.av-nav__lang:hover .av-nav__lang-menu,
.av-nav__lang:focus-within .av-nav__lang-menu,
.av-nav__lang.is-open .av-nav__lang-menu {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
}

.av-lang-option {
	display: block;
	width: 100%;
	background: none;
	border: none;
	cursor: pointer;
	padding: 16px 22px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	color: var(--av-nav-text);
	text-align: center;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.av-lang-option.is-active {
	display: none;
}

.av-lang-option:hover {
	background: rgba(26, 21, 18, 0.05);
	color: var(--av-rose-dark);
}

.av-nav__menu {
	display: flex;
	align-items: center;
	gap: 10px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.av-nav__menu a {
	display: inline-block;
	font-size: 11.5px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--av-nav-text);
	text-decoration: none;
	padding: 12px 20px;
	background: var(--av-nav-chip-bg);
	border: none;
	border-radius: 4px;
	transition: background-color 0.2s ease, color 0.2s ease;
	white-space: nowrap;
}

.av-nav__menu a:hover {
	color: var(--av-rose-dark);
	background: rgba(26, 21, 18, 0.08);
}

.av-nav__menu a.is-active {
	color: var(--av-rose-dark);
	background: rgba(198, 137, 110, 0.16);
}

.av-nav__cta {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: rgba(198, 137, 110, 0.16);
	color: var(--av-ink);
	font-size: 11.5px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	text-decoration: none;
	padding: 8px 8px 8px 20px;
	border-radius: 5px;
	white-space: nowrap;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.av-nav__cta:hover {
	background: rgba(198, 137, 110, 0.28);
	transform: translateY(-1px);
}

.av-nav__cta-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: var(--av-ink);
	color: var(--av-cream);
	flex: 0 0 auto;
}

.av-nav__cta--mobile .av-nav__cta-icon {
	background: rgba(26, 21, 18, 0.7);
	color: var(--av-cream);
}

.av-nav__burger {
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	width: 30px;
	height: 30px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
}

.av-nav__burger span {
	display: block;
	width: 18px;
	height: 1.5px;
	background: var(--av-nav-text);
	transition: transform 0.25s ease, opacity 0.25s ease;
}

.av-nav-wrap.is-menu-open .av-nav__burger span:first-child {
	transform: translateY(3.25px) rotate(45deg);
}

.av-nav-wrap.is-menu-open .av-nav__burger span:last-child {
	transform: translateY(-3.25px) rotate(-45deg);
}

.av-mobile-menu {
	width: 100%;
	margin-top: 8px;
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--av-nav-border);
	border-radius: 14px;
	overflow: hidden;
	max-height: 0;
	opacity: 0;
	transition: max-height 0.3s ease, opacity 0.3s ease, border-radius 0.45s ease, margin-top 0.45s ease;
	display: none;
}

.av-nav-wrap.is-expanded .av-mobile-menu {
	margin-top: 0;
	border-radius: 0;
}

.av-nav-wrap.is-menu-open .av-mobile-menu {
	max-height: 420px;
	opacity: 1;
}

.av-mobile-menu__list {
	list-style: none;
	margin: 0;
	padding: 14px 18px 4px;
}

.av-mobile-menu__list li + li {
	margin-top: 2px;
}

.av-mobile-menu__list a {
	display: block;
	padding: 12px 4px;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--av-nav-text);
	text-decoration: none;
	border-bottom: 1px solid rgba(26, 21, 18, 0.08);
}

.av-mobile-menu__list a.is-active {
	color: var(--av-rose-dark);
}

.av-nav__cta--mobile {
	display: flex;
	margin: 14px 18px 18px;
}

@media (max-width: 900px) {
	.av-nav {
		grid-template-columns: auto 1fr auto;
	}

	.av-nav__col--center {
		display: none;
	}

	.av-nav__lang {
		display: none;
	}

	/* The full CTA pill plus the burger doesn't fit this column at narrow
	   widths (confirmed the same overflow exists on the homepage nav at
	   375px) — drop the pill here and rely on the burger's own mobile
	   menu, which already repeats "Contact Us" as a full-width link. */
	.av-nav__col--right .av-nav__cta {
		display: none;
	}

	.av-nav__burger {
		display: inline-flex;
	}

	.av-mobile-menu {
		display: block;
	}
}

@media (max-width: 480px) {
	.av-nav__col--left {
		gap: 8px;
	}

	.av-nav__cta {
		padding: 9px 14px;
	}
}

/* ------------------------------------------------------------------ *
 * Shared section rhythm
 * ------------------------------------------------------------------ */

.av-ls section {
	scroll-margin-top: 110px;
}

.av-ls-hero__inner,
.av-ls-reframe__inner,
.av-ls-spine__inner,
.av-ls-products__inner,
.av-ls-compare__inner,
.av-ls-exo__inner,
.av-ls-close__inner {
	max-width: 1080px;
	margin: 0 auto;
	padding-left: clamp(20px, 5vw, 80px);
	padding-right: clamp(20px, 5vw, 80px);
}

.av-ls h1,
.av-ls h2,
.av-ls-product__name {
	font-family: "Cormorant Garamond", Georgia, serif;
	color: #1f1a17;
	margin: 0;
}

/* ------------------------------------------------------------------ *
 * 1. Hero
 * ------------------------------------------------------------------ */

.av-ls-hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding: 140px 0 80px;
	background: linear-gradient(180deg, #f7efe9 0%, var(--av-paper) 100%);
}

.av-ls-hero__inner {
	width: 100%;
	text-align: center;
}

.av-ls-hero__eyebrow {
	display: inline-block;
	margin-bottom: 22px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--av-rose-dark);
}

.av-ls-hero__inner .av-ls-hero__headline {
	font-weight: 600;
	font-size: clamp(32px, 5vw, 62px);
	line-height: 1.14;
	letter-spacing: 0.01em;
	text-wrap: balance;
	max-width: 20ch;
	margin: 0 auto 56px;
}

.av-ls-hero__visual {
	display: flex;
	gap: 16px;
	max-width: 820px;
	margin: 0 auto;
}

.av-ls-hero__visual img {
	display: block;
	flex: 1 1 0;
	min-width: 0;
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	border-radius: 14px;
}

/* ------------------------------------------------------------------ *
 * 2. The reframe — short lines, generous whitespace
 * ------------------------------------------------------------------ */

.av-ls-reframe {
	padding: clamp(80px, 10vw, 140px) 0;
}

.av-ls-reframe__inner {
	max-width: 640px;
	text-align: center;
}

.av-ls-reframe__inner p {
	margin: 0 0 clamp(20px, 3vw, 34px);
	font-family: "Cormorant Garamond", Georgia, serif;
	font-weight: 500;
	font-size: clamp(20px, 2.4vw, 30px);
	line-height: 1.45;
	color: #2b2320;
}

.av-ls-reframe__inner p:last-child {
	margin-bottom: 0;
	font-style: italic;
	color: var(--av-rose-dark);
}

/* ------------------------------------------------------------------ *
 * 3. Signal, structure, support
 * ------------------------------------------------------------------ */

.av-ls-spine {
	padding: clamp(60px, 8vw, 100px) 0 clamp(90px, 10vw, 140px);
	background: #f7efe9;
}

.av-ls-spine__title {
	text-align: center;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--av-rose-dark);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
	margin-bottom: clamp(36px, 5vw, 60px);
}

.av-ls-spine__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(20px, 2.4vw, 40px);
}

.av-ls-pillar {
	padding: clamp(28px, 2.6vw, 40px) clamp(22px, 2.2vw, 32px);
	background: #fff;
	border: 1px solid rgba(170, 101, 81, 0.16);
	border-radius: 10px;
	text-align: left;
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.av-ls-pillar.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.av-ls-pillar__name {
	font-weight: 600;
	font-size: clamp(22px, 2vw, 28px);
	margin-bottom: 12px;
}

.av-ls-pillar__desc {
	margin: 0;
	font-size: 14.5px;
	line-height: 1.7;
	color: var(--av-body);
}

/* ------------------------------------------------------------------ *
 * 4. Product blocks
 * ------------------------------------------------------------------ */

.av-ls-products {
	padding: clamp(80px, 9vw, 130px) 0;
}

.av-ls-products__title {
	text-align: center;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--av-rose-dark);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
	margin-bottom: clamp(48px, 6vw, 80px);
}

.av-ls-product {
	padding: clamp(40px, 5vw, 64px) 0;
	opacity: 0;
	transform: translateY(22px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.av-ls-product.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.av-ls-product + .av-ls-product {
	border-top: 1px solid rgba(170, 101, 81, 0.16);
}

.av-ls-product__row {
	display: grid;
	grid-template-columns: minmax(200px, 260px) 1fr;
	gap: clamp(28px, 4vw, 56px);
	align-items: start;
}

.av-ls-product__media {
	width: 100%;
}

.av-ls-product__photo {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	border-radius: 3px;
}

.av-ls-product__head {
	display: flex;
	align-items: baseline;
	gap: 22px;
	margin-bottom: 18px;
}

.av-ls-product__step {
	font-family: "Cormorant Garamond", Georgia, serif;
	font-weight: 500;
	font-size: clamp(30px, 3vw, 44px);
	color: var(--av-rose);
	line-height: 1;
	flex: 0 0 auto;
}

.av-ls-product__id {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 10px 14px;
}

.av-ls-product__name {
	font-weight: 600;
	font-size: clamp(24px, 2.4vw, 34px);
	line-height: 1.15;
}

.av-ls-product__name sup {
	font-size: 0.4em;
	vertical-align: super;
}

.av-ls-product__volume {
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.04em;
	color: var(--av-rose-dark);
}

.av-ls-product__role {
	max-width: 60ch;
	margin: 0 0 18px;
	font-size: 15.5px;
	line-height: 1.75;
	color: var(--av-body);
}

.av-ls-product__mechanism {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 10px;
	margin: 0 0 22px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #6a594f;
}

.av-ls-product__mechanism--line {
	font-family: "Cormorant Garamond", Georgia, serif;
	font-weight: 500;
	font-style: italic;
	font-size: clamp(17px, 1.6vw, 21px);
	text-transform: none;
	letter-spacing: 0.01em;
	color: var(--av-rose-dark);
}

.av-ls-product__mech-arrow {
	color: var(--av-rose);
	font-weight: 400;
}

.av-ls-product__tags {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 8px;
	margin-bottom: 26px;
}

.av-ls-tags__label {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #97806f;
}

.av-ls-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.av-ls-tag {
	font-size: 12.5px;
	font-weight: 600;
	color: var(--av-rose-dark);
	background: rgba(198, 137, 110, 0.12);
	border: 1px solid rgba(170, 101, 81, 0.2);
	border-radius: 20px;
	padding: 6px 14px;
}

/* Accordion */

.av-ls-acc {
	max-width: 74ch;
	border-top: 1px solid rgba(170, 101, 81, 0.16);
}

.av-ls-acc__heading {
	margin: 0;
	font-weight: normal;
}

.av-ls-acc__item + .av-ls-acc__item {
	border-top: 1px solid rgba(170, 101, 81, 0.16);
}

.av-ls-acc__trigger {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	width: 100%;
	padding: 17px 2px;
	background: none;
	border: none;
	cursor: pointer;
	text-align: left;
	font: inherit;
	font-size: 14.5px;
	font-weight: 600;
	color: #2b2320;
}

.av-ls-acc__trigger:hover {
	color: var(--av-rose-dark);
}

.av-ls-acc__chev {
	flex: 0 0 auto;
	color: var(--av-rose-dark);
	transition: transform 0.25s ease;
}

.av-ls-acc__trigger[aria-expanded="true"] .av-ls-acc__chev {
	transform: rotate(180deg);
}

/* Height is measured and set by lift-system.js (via scrollHeight), not a
   fixed guess, so panels of any length animate correctly. */
.av-ls-acc__panel {
	overflow: hidden;
	max-height: 0;
	transition: max-height 0.3s ease;
}

/* No overflow here — the outer .av-ls-acc__panel already clips the
   collapsed state, and overflow on a grid ITEM resets its automatic
   minimum size to 0, which would stop the "auto" row (and the 1fr row
   once open) from ever sizing to the content's real height. */
.av-ls-acc__panel-inner {
	min-height: 0;
}

.av-ls-acc__desc,
.av-ls-acc__list {
	margin: 0;
	padding: 0 2px 20px;
	font-size: 14px;
	line-height: 1.75;
	color: var(--av-body);
}

.av-ls-acc__list {
	list-style: none;
}

.av-ls-acc__list li + li {
	margin-top: 10px;
}

.av-ls-acc__ingredient {
	font-weight: 600;
	color: #2b2320;
}

/* ------------------------------------------------------------------ *
 * 5. Comparison
 * ------------------------------------------------------------------ */

.av-ls-compare {
	padding: clamp(80px, 9vw, 120px) 0;
	background: #f7efe9;
}

.av-ls-compare__inner h2 {
	text-align: center;
	font-weight: 600;
	font-size: clamp(28px, 3.4vw, 44px);
	margin-bottom: clamp(40px, 5vw, 64px);
}

.av-ls-compare__table-wrap {
	overflow-x: auto;
	background: #fff;
	border-radius: 12px;
	border: 1px solid rgba(170, 101, 81, 0.16);
}

.av-ls-compare__table {
	width: 100%;
	min-width: 560px;
	border-collapse: collapse;
}

.av-ls-compare__table th,
.av-ls-compare__table td {
	text-align: left;
	padding: 18px 24px;
}

.av-ls-compare__table th:first-child,
.av-ls-compare__table td:first-child {
	width: 22%;
}

.av-ls-compare__table thead th {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #97806f;
	background: #f7efe9;
	border-bottom: 1px solid rgba(170, 101, 81, 0.16);
}

.av-ls-compare__table thead th.av-ls-compare__th--new {
	color: var(--av-rose-dark);
}

.av-ls-compare__table tbody th {
	font-weight: 500;
	font-size: 14px;
	color: var(--av-body);
	white-space: nowrap;
}

.av-ls-compare__table tbody td {
	font-size: 15px;
	color: #2b2320;
}

.av-ls-compare__table tbody td.av-ls-compare__cell--new {
	font-weight: 600;
	color: var(--av-ink);
}

.av-ls-compare__table tbody tr + tr th,
.av-ls-compare__table tbody tr + tr td {
	border-top: 1px solid rgba(170, 101, 81, 0.12);
}

/* ------------------------------------------------------------------ *
 * 5b. Testimonials
 * ------------------------------------------------------------------ */

.av-ls-testimonials {
	padding: clamp(80px, 9vw, 120px) 0;
}

.av-ls-testimonials__inner h2 {
	text-align: center;
	font-weight: 600;
	font-size: clamp(28px, 3.4vw, 44px);
	margin-bottom: clamp(40px, 5vw, 64px);
}

.av-ls-testimonials__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: clamp(16px, 2vw, 24px);
}

.av-ls-testimonial {
	margin: 0;
	border-radius: 10px;
	overflow: hidden;
	border: 1px solid rgba(170, 101, 81, 0.16);
	box-shadow: 0 10px 30px rgba(90, 60, 45, 0.08);
}

.av-ls-testimonial img {
	display: block;
	width: 100%;
	height: auto;
}

@media (max-width: 900px) {
	.av-ls-testimonials__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 480px) {
	.av-ls-testimonials__grid {
		grid-template-columns: 1fr;
	}
}

/* ------------------------------------------------------------------ *
 * 6. What an exosome is
 * ------------------------------------------------------------------ */

.av-ls-exo {
	padding: clamp(80px, 9vw, 130px) 0;
}

.av-ls-exo__inner {
	max-width: 620px;
	text-align: center;
}

.av-ls-exo__inner h2 {
	font-weight: 600;
	font-size: clamp(26px, 3vw, 38px);
	margin-bottom: clamp(28px, 3.5vw, 42px);
}

.av-ls-exo__inner p {
	margin: 0 0 20px;
	font-size: clamp(15px, 1.2vw, 17px);
	line-height: 1.85;
	color: var(--av-body);
}

.av-ls-exo__inner p:last-child {
	margin-bottom: 0;
	font-weight: 600;
	color: #2b2320;
}

/* ------------------------------------------------------------------ *
 * 8. Close
 * ------------------------------------------------------------------ */

.av-ls-close {
	padding: clamp(90px, 10vw, 150px) 0;
	text-align: center;
}

.av-ls-close__inner h2 {
	font-weight: 600;
	font-size: clamp(30px, 3.6vw, 46px);
	margin-bottom: 30px;
}

.av-ls-close__cta {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	background: rgba(198, 137, 110, 0.16);
	color: var(--av-ink);
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	text-decoration: none;
	padding: 12px 12px 12px 26px;
	border-radius: 6px;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.av-ls-close__cta:hover {
	background: rgba(198, 137, 110, 0.28);
	transform: translateY(-1px);
}

/* ------------------------------------------------------------------ *
 * Footer — utility only (link columns + bar). The homepage's closing
 * statement and cross-sell route cards are deliberately not repeated here.
 * ------------------------------------------------------------------ */

.av-ls-footer {
	background: #fbf8f6;
	color: #2b2320;
	padding: clamp(60px, 7vw, 90px) clamp(20px, 5vw, 80px) 0;
	font-size: 14px;
	border-top: 1px solid rgba(170, 101, 81, 0.16);
}

.av-ls-footer .av-footer__inner {
	max-width: 1240px;
	margin: 0 auto;
}

.av-ls-footer .av-footer__grid {
	display: grid;
	grid-template-columns: 1.5fr repeat(3, 1fr) 1.7fr;
	gap: clamp(24px, 3vw, 52px);
	padding-bottom: clamp(48px, 6vw, 84px);
}

.av-ls-footer .av-footer__brand img {
	height: 30px;
	width: auto;
	display: block;
	margin-bottom: 18px;
	filter: brightness(0);
}

.av-ls-footer .av-footer__brand p {
	margin: 0;
	max-width: 30ch;
	font-size: 13px;
	line-height: 1.75;
	color: #6a594f;
}

.av-ls-footer .av-fcol h3 {
	margin: 0 0 16px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #97806f;
}

.av-ls-footer .av-fcol ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.av-ls-footer .av-fcol li + li {
	margin-top: 11px;
}

.av-ls-footer .av-fcol a {
	font-size: 13.5px;
	color: #3d332e;
	text-decoration: none;
	transition: color 0.2s ease;
}

.av-ls-footer .av-fcol a:hover {
	color: var(--av-rose-dark);
}

.av-ls-footer .av-signup p {
	margin: 0 0 16px;
	font-size: 13px;
	line-height: 1.7;
	color: #6a594f;
}

.av-ls-footer .av-footer__bar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 26px 0 30px;
	border-top: 1px solid rgba(170, 101, 81, 0.16);
	font-size: 12px;
	color: #7d6a5e;
}

.av-ls-footer .av-footer__legal {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
}

.av-ls-footer .av-footer__legal a {
	color: #7d6a5e;
	text-decoration: none;
	transition: color 0.2s ease;
}

.av-ls-footer .av-footer__legal a:hover {
	color: var(--av-rose-dark);
}

.av-ls-footer .av-footer__social {
	display: flex;
	gap: 6px;
}

.av-ls-footer .av-footer__social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	color: #7d6a5e;
	border: 1px solid rgba(170, 101, 81, 0.2);
	transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.av-ls-footer .av-footer__social a:hover {
	color: var(--av-rose-dark);
	border-color: rgba(170, 101, 81, 0.45);
	background: rgba(255, 255, 255, 0.7);
}

/* ------------------------------------------------------------------ *
 * Responsive
 * ------------------------------------------------------------------ */

@media (max-width: 1080px) {
	.av-ls-footer .av-footer__grid {
		grid-template-columns: 1fr 1fr 1fr;
		row-gap: 44px;
	}

	.av-ls-footer .av-footer__brand,
	.av-ls-footer .av-signup {
		grid-column: span 3;
	}
}

@media (max-width: 900px) {
	.av-ls-spine__grid {
		grid-template-columns: 1fr;
	}

	.av-ls-product__head {
		flex-wrap: wrap;
	}

	.av-ls-product__row {
		grid-template-columns: 1fr;
	}

	.av-ls-product__media {
		max-width: 220px;
	}
}

@media (max-width: 640px) {
	.av-ls-compare__table th,
	.av-ls-compare__table td {
		padding: 14px 16px;
		font-size: 13px;
	}

	.av-ls-footer .av-footer__grid {
		grid-template-columns: 1fr 1fr;
	}

	.av-ls-footer .av-footer__brand,
	.av-ls-footer .av-signup {
		grid-column: span 2;
	}

	.av-ls-footer .av-footer__bar {
		justify-content: center;
		text-align: center;
	}

	.av-ls-hero {
		padding-top: 120px;
	}

	.av-ls-hero__visual {
		max-width: 320px;
	}
}

@media (max-width: 375px) {
	.av-ls-product__step {
		font-size: 26px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.av-ls-pillar,
	.av-ls-product,
	.av-ls-acc__panel,
	.av-ls-acc__chev,
	.av-nav__cta,
	.av-ls-close__cta {
		transition: none !important;
	}

	.av-ls-pillar,
	.av-ls-product {
		opacity: 1;
		transform: none;
	}
}
