/* ============================================================
   Treatment page, reference layout (v3), 11 Sep 2026.

   A port of the treatment template at skinovatio-treatments.vercel.app.
   Every size, gap and radius below is transcribed from the reference's
   Tailwind classes (noted where it helps), and every colour reads a
   --sk-* token. The palettes match hex for hex:

     background #FAF9F6  --sk-bg          secondary #F5F2ED  --sk-bg-alt
     tint       #DCEBE5  --sk-tile        primary   #0B5C57  --sk-deep
     accent     #019A93  --sk-accent      border    #E6E2DA  --sk-line
     line-strong #CFC8BA --sk-line-strong foreground #292929 --sk-ink
     muted-fg   #5A5F5C  --sk-ink-2       destructive #8E3B3B --sk-error

   Breakpoints follow Tailwind: sm 640, md 768, lg 1024 (min-width).
   Content sits on the site's 1400px shell (.sk-container), by decision,
   rather than the reference's 1152px. Text measures are the reference's.
   ============================================================ */

.sk-tx { color: var(--sk-ink); }
.sk-tx a { text-decoration: none; }
.sk-tx p, .sk-tx h1, .sk-tx h2, .sk-tx h3, .sk-tx dl, .sk-tx dd, .sk-tx ul, .sk-tx ol { margin: 0; }
.sk-tx ul, .sk-tx ol { list-style: none; padding: 0; }
.sk-tx .sk-tx-ico { display: block; flex-shrink: 0; width: 16px; height: 16px; }
.sk-tx .sk-tx-ico--12 { width: 12px; height: 12px; }
.sk-tx .sk-tx-ico--14 { width: 14px; height: 14px; }
.sk-tx .sk-tx-ico--20 { width: 20px; height: 20px; }
.sk-tx-accent { color: var(--sk-accent); }
.sk-tx-danger { color: var(--sk-error); }

/* ---------- Sections ---------- */
.sk-tx-sec { padding-block: 80px; scroll-margin-top: 96px; } /* py-20 */
.sk-tx-sec--tight { padding-block: 64px; } /* py-16 */
.sk-tx-sec--alt { background: var(--sk-bg-alt); border-block: 1px solid var(--sk-line); }
.sk-tx-sec--tint { background: var(--sk-tile); }
.sk-tx-sec--rule { border-top: 1px solid var(--sk-line); }
.sk-tx-sec--alt + .sk-tx-sec--alt { border-top: 0; }
@media (min-width: 768px) {
	.sk-tx-sec { padding-block: 112px; } /* md:py-28 */
	.sk-tx-sec--tight { padding-block: 80px; } /* md:py-20 */
}

/* ---------- Type ---------- */
.sk-tx-h1 {
	font-family: var(--sk-font-display);
	font-weight: 400;
	font-size: 48px; /* text-5xl */
	line-height: 1.05;
	color: var(--sk-ink);
	text-wrap: balance;
}
@media (min-width: 768px) { .sk-tx-h1 { font-size: 72px; } } /* md:text-7xl */

.sk-tx-h2 {
	font-family: var(--sk-font-display);
	font-weight: 400;
	font-size: 36px; /* text-4xl */
	line-height: 1.25; /* leading-tight */
	color: var(--sk-ink);
	text-wrap: balance;
}
@media (min-width: 768px) { .sk-tx-h2 { font-size: 48px; } } /* md:text-5xl */
.sk-tx-h2--primary { color: var(--sk-deep); }
.sk-tx-h2--sm { font-size: 30px; line-height: 1.2; } /* text-3xl */
@media (min-width: 768px) { .sk-tx-h2--sm { font-size: 36px; line-height: 1.111; } } /* md:text-4xl */
.sk-tx-h2--cat { font-size: 36px; line-height: 1.111; }
@media (min-width: 768px) { .sk-tx-h2--cat { font-size: 48px; line-height: 1; } }

.sk-tx-eyebrow {
	margin-bottom: 12px !important; /* mb-3 */
	font-size: 12px;
	line-height: 16px;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--sk-accent);
}
.sk-tx-eyebrow--tight { margin-bottom: 8px !important; }

.sk-tx-measure { max-width: 42rem; } /* max-w-2xl */
.sk-tx-lead-p,
.sk-tx-lead > p {
	margin-top: 20px !important; /* mt-5 */
	font-size: 18px;
	line-height: 1.625; /* text-lg leading-relaxed */
	color: var(--sk-ink-2);
	text-wrap: pretty;
}
.sk-tx-lead > p + p { margin-top: 16px !important; font-size: 16px; }
.sk-tx-lead-p--xl { max-width: 36rem; } /* max-w-xl */
.sk-tx-lead--aside > p + p { font-size: 14px; } /* the aside's note: text-sm */
.sk-tx a:not([class]) { color: var(--sk-deep); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 0.18em; text-decoration-color: color-mix(in srgb, var(--sk-deep) 35%, transparent); }
.sk-tx a:not([class]):hover { color: var(--sk-accent); }

.sk-tx-footnote { margin-top: 32px; max-width: 48rem; } /* mt-8 max-w-3xl */
.sk-tx-footnote--tight { margin-top: 24px; }
.sk-tx-footnote p { font-size: 14px; line-height: 1.625; color: var(--sk-ink-2); }
.sk-tx-footnote p + p { margin-top: 12px; }

/* ---------- Buttons ---------- */
.sk-tx-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 14px 28px; /* px-7 py-3.5 */
	border-radius: 999px;
	border: 1px solid transparent;
	font-family: var(--sk-font-body);
	font-size: 16px;
	line-height: 24px;
	font-weight: 500;
	text-align: center;
	transition: background-color 150ms ease, color 150ms ease, border-color 150ms ease;
}
.sk-tx .sk-tx-btn--primary { background: var(--sk-deep); color: #FFFFFF; }
.sk-tx .sk-tx-btn--primary:hover { background: var(--sk-accent); color: #FFFFFF; }
.sk-tx .sk-tx-btn--secondary { border-color: var(--sk-line-strong); color: var(--sk-deep); background: transparent; }
.sk-tx .sk-tx-btn--secondary:hover { background: var(--sk-bg-alt); color: var(--sk-deep); }
.sk-tx-btn--block { display: flex; width: 100%; margin-top: 24px; padding-inline: 24px; }

.sk-tx-actions { margin-top: 36px; display: flex; flex-direction: column; gap: 12px; } /* mt-9 */
@media (min-width: 640px) { .sk-tx-actions { flex-direction: row; align-items: center; flex-wrap: wrap; } }

/* ---------- Hero ---------- */
.sk-tx-hero { position: relative; overflow: hidden; }
.sk-tx-hero__inner { padding-block: 40px 64px; } /* pt-10 pb-16 */
@media (min-width: 768px) { .sk-tx-hero__inner { padding-block: 64px 96px; } } /* md:pt-16 md:pb-24 */

.sk-tx-crumbs { margin-bottom: 40px; display: flex; flex-wrap: wrap; align-items: center; gap: 6px; font-size: 12px; line-height: 16px; color: var(--sk-ink-2); }
.sk-tx .sk-tx-crumbs a { color: var(--sk-ink-2); }
.sk-tx .sk-tx-crumbs a:hover { color: var(--sk-deep); }
.sk-tx-crumbs [aria-current] { color: var(--sk-ink); }

.sk-tx-hero__grid { display: grid; align-items: center; gap: 48px; } /* gap-12 */
@media (min-width: 1024px) {
	.sk-tx-hero__grid { grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); }
	/* The photo holds the reference's size on the wider shell, on the right edge. */
	.sk-tx-hero__media { width: 100%; max-width: 468px; justify-self: end; }
	.sk-tx-hero__copy { max-width: 636px; }
}
.sk-tx-hero__copy { min-width: 0; }

.sk-tx-pill {
	margin-bottom: 24px; /* mb-6 */
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 16px; /* px-4 py-1.5 */
	border: 1px solid var(--sk-line);
	border-radius: 999px;
	background: #FFFFFF;
	font-size: 12px;
	line-height: 16px;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--sk-ink-2);
}
.sk-tx-hero__lead { margin-top: 24px !important; max-width: 36rem; font-size: 18px; line-height: 1.625; color: var(--sk-ink-2); text-wrap: pretty; }
.sk-tx-chips { margin-top: 28px; display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.sk-tx-chip { border-radius: 999px; background: var(--sk-bg-alt); padding: 6px 14px; font-size: 14px; line-height: 20px; font-weight: 500; color: var(--sk-deep); }
.sk-tx-hero__note { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; line-height: 20px; color: var(--sk-ink-2); }
@media (min-width: 640px) { .sk-tx-hero__note { margin-left: 8px; } }

.sk-tx-hero__media { position: relative; min-width: 0; }
.sk-tx-hero__frame { position: relative; aspect-ratio: 4 / 5; max-width: 100%; overflow: hidden; border-radius: 24px; background: var(--sk-bg-alt); } /* rounded-3xl */
.sk-tx-hero__img { position: absolute; inset: 0; width: 100%; height: 100% !important; object-fit: cover; border-radius: 0; }
.sk-tx-float {
	position: absolute;
	left: -24px;
	bottom: -24px; /* -bottom-6 -left-6 */
	display: none;
	padding: 20px;
	border: 1px solid var(--sk-line);
	border-radius: 16px;
	background: #FFFFFF;
	box-shadow: 0 1px 3px 0 rgba(41, 41, 41, 0.1), 0 1px 2px -1px rgba(41, 41, 41, 0.1); /* shadow-sm */
}
@media (min-width: 640px) { .sk-tx-float { display: block; } }
.sk-tx-float__big { font-family: var(--sk-font-display); font-size: 30px; line-height: 36px; color: var(--sk-deep); }
.sk-tx-float__small { font-size: 12px; line-height: 16px; color: var(--sk-ink-2); }
@media (min-width: 640px) and (max-width: 1023px) {
	/* Stacked: the card needs room beside the frame's left edge. */
	.sk-tx-hero__media { margin-left: 24px; }
}

/* ---------- At a glance ---------- */
.sk-tx-glance__head { margin-bottom: 40px; display: flex; align-items: baseline; justify-content: space-between; gap: 16px; }
.sk-tx-glance__head span { font-size: 14px; line-height: 20px; color: var(--sk-ink-2); text-align: right; }
.sk-tx-glance__grid { display: grid; gap: 1px; overflow: hidden; border: 1px solid var(--sk-line); border-radius: 16px; background: var(--sk-line); }
@media (min-width: 640px) { .sk-tx-glance__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .sk-tx-glance__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.sk-tx-glance__cell { background: #FFFFFF; padding: 24px; min-width: 0; }
.sk-tx .sk-tx-glance__ico { margin-bottom: 16px; }
.sk-tx-glance__cell dt { font-size: 12px; line-height: 16px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sk-ink-2); }
.sk-tx-glance__cell dd { margin-top: 6px !important; font-size: 16px; line-height: 1.375; color: var(--sk-ink); }

/* ---------- Steps ---------- */
.sk-tx-steps { margin-top: 56px !important; display: grid; gap: 24px; } /* mt-14 gap-6 */
@media (min-width: 768px) { .sk-tx-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .sk-tx-steps { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.sk-tx-step { border: 1px solid var(--sk-line); border-radius: 16px; background: #FFFFFF; padding: 24px; min-width: 0; }
.sk-tx-step__num { display: flex; width: 44px; height: 44px; align-items: center; justify-content: center; border-radius: 999px; background: var(--sk-tile); font-family: var(--sk-font-display); font-size: 20px; line-height: 28px; color: var(--sk-deep); }
.sk-tx-step h3 { margin-top: 20px; font-family: var(--sk-font-body); font-size: 18px; line-height: 28px; font-weight: 500; color: var(--sk-ink); text-wrap: wrap; }
.sk-tx-step p { margin-top: 8px; font-size: 15px; line-height: 1.625; color: var(--sk-ink-2); }

/* ---------- Results timeline ---------- */
.sk-tx-results { display: grid; gap: 56px; } /* gap-14 */
@media (min-width: 1024px) { .sk-tx-results { grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); } }
.sk-tx-results__lead { margin-top: 20px !important; max-width: 28rem; line-height: 1.625; color: var(--sk-ink-2); text-wrap: pretty; }
.sk-tx-tl { position: relative; border-left: 1px solid color-mix(in srgb, var(--sk-deep) 20%, transparent); padding-left: 32px; }
.sk-tx-tl li { position: relative; padding-bottom: 36px; } /* pb-9 */
.sk-tx-tl li:last-child { padding-bottom: 0; }
.sk-tx-tl__dot { position: absolute; left: -37px; top: 4px; width: 16px; height: 16px; border-radius: 999px; background: var(--sk-accent); box-shadow: 0 0 0 4px var(--sk-tile); }
.sk-tx-tl__when { font-family: var(--sk-font-display); font-size: 24px; line-height: 32px; color: var(--sk-deep); }
.sk-tx-tl__title { margin-top: 2px !important; font-size: 16px; line-height: 24px; font-weight: 500; color: var(--sk-ink); }
.sk-tx-tl__text { margin-top: 6px !important; max-width: 28rem; line-height: 1.625; color: var(--sk-ink-2); }

/* ---------- Cost ---------- */
.sk-tx-cost { display: grid; gap: 48px; }
@media (min-width: 1024px) { .sk-tx-cost { grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr); } }
.sk-tx-checklist { margin-top: 32px !important; display: grid; gap: 12px; } /* mt-8 gap-3 */
@media (min-width: 640px) { .sk-tx-checklist { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.sk-tx-checklist li { display: flex; align-items: flex-start; gap: 12px; min-width: 0; }
.sk-tx-check { margin-top: 2px; display: flex; width: 20px; height: 20px; flex-shrink: 0; align-items: center; justify-content: center; border-radius: 999px; background: var(--sk-tile); color: var(--sk-deep); }
.sk-tx-checklist li > span:last-child { font-size: 15px; line-height: 1.375; color: var(--sk-ink); }

.sk-tx-price { border: 1px solid var(--sk-line); border-radius: 24px; background: #FFFFFF; padding: 32px; min-width: 0; align-self: start; }
.sk-tx-price__head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; border-bottom: 1px solid var(--sk-line); padding-bottom: 24px; }
.sk-tx-price__head > div { min-width: 0; }
.sk-tx-price__label { font-size: 14px; line-height: 20px; color: var(--sk-ink-2); }
.sk-tx-price__name { margin-top: 4px !important; font-family: var(--sk-font-display); font-size: 24px; line-height: 32px; color: var(--sk-ink); }
.sk-tx-price__fig { text-align: right; flex-shrink: 0; }
.sk-tx-price__amount { font-family: var(--sk-font-display); font-size: 36px; line-height: 40px; color: var(--sk-deep); }
.sk-tx-price__unit { font-size: 12px; line-height: 16px; color: var(--sk-ink-2); }
.sk-tx-price__rows { padding-block: 24px; font-size: 14px; line-height: 20px; }
.sk-tx-price__rows > div { display: flex; justify-content: space-between; gap: 16px; }
.sk-tx-price__rows > div + div { margin-top: 16px; }
.sk-tx-price__rows dt { color: var(--sk-ink-2); }
.sk-tx-price__rows dd { text-align: right; font-weight: 500; color: var(--sk-ink); }
.sk-tx-price__note { border-radius: 12px; background: var(--sk-bg-alt); padding: 16px; font-size: 13px; line-height: 1.625; color: var(--sk-ink-2); }

/* ---------- Comparison ---------- */
.sk-tx-table { display: none; margin-top: 48px; overflow: hidden; border: 1px solid var(--sk-line); border-radius: 16px; background: #FFFFFF; }
@media (min-width: 768px) { .sk-tx-table { display: block; } }
.sk-tx-table table { width: 100%; border-collapse: collapse; text-align: left; font-size: 15px; line-height: 1.5; }
.sk-tx-table thead tr { border-bottom: 1px solid var(--sk-line); }
.sk-tx-table tbody tr + tr { border-top: 1px solid var(--sk-line); }
.sk-tx-table th, .sk-tx-table td { padding: 20px; vertical-align: top; }
.sk-tx-table__corner, .sk-tx-table__row { font-size: 12px; line-height: 16px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sk-ink-2); }
.sk-tx-table__row { padding-top: 22px !important; }
.sk-tx-table__col { font-family: var(--sk-font-display); font-weight: 400; font-size: 18px; line-height: 28px; color: var(--sk-ink); }
.sk-tx-table__col.is-first { color: var(--sk-deep); }
.sk-tx-table td { color: var(--sk-ink-2); }
.sk-tx-table td.is-first { background: color-mix(in srgb, var(--sk-tile) 40%, transparent); color: var(--sk-ink); }

.sk-tx-mcompare { margin-top: 40px; display: grid; gap: 16px; }
@media (min-width: 768px) { .sk-tx-mcompare { display: none; } }
.sk-tx-mcompare__card { border: 1px solid var(--sk-line); border-radius: 16px; background: #FFFFFF; padding: 20px; }
.sk-tx-mcompare__label { margin-bottom: 12px !important; font-size: 12px; line-height: 16px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sk-ink-2); }
.sk-tx-mcompare dl { font-size: 15px; line-height: 1.5; }
.sk-tx-mcompare dl > div { display: flex; justify-content: space-between; gap: 16px; }
.sk-tx-mcompare dl > div + div { margin-top: 8px; }
.sk-tx-mcompare dt { color: var(--sk-ink-2); min-width: 0; }
.sk-tx-mcompare dd { text-align: right; color: var(--sk-ink-2); min-width: 0; }
.sk-tx-mcompare .is-first dt { color: var(--sk-deep); }
.sk-tx-mcompare .is-first dd { color: var(--sk-ink); }

/* ---------- Who it's for ---------- */
.sk-tx-fit { margin-top: 48px; display: grid; gap: 24px; }
@media (min-width: 768px) { .sk-tx-fit { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.sk-tx-fit__card { border: 1px solid var(--sk-line); border-radius: 16px; background: #FFFFFF; padding: 28px; min-width: 0; } /* p-7 */
.sk-tx-fit__card h3 { margin-bottom: 20px; display: flex; align-items: center; gap: 8px; font-family: var(--sk-font-body); font-size: 18px; line-height: 28px; font-weight: 500; color: var(--sk-ink); }
.sk-tx-fit__badge { display: flex; width: 28px; height: 28px; flex-shrink: 0; align-items: center; justify-content: center; border-radius: 999px; background: var(--sk-tile); color: var(--sk-deep); }
.sk-tx-fit__badge--no { background: var(--sk-bg-alt); color: var(--sk-error); }
.sk-tx-fit__card li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; line-height: 1.375; color: var(--sk-ink-2); }
.sk-tx-fit__card li + li { margin-top: 12px; }
.sk-tx-fit__card li .sk-tx-ico { margin-top: 2px; }
.sk-tx-fit__note { margin: 32px auto 0 !important; max-width: 48rem; text-align: center; font-size: 14px; line-height: 1.625; color: var(--sk-ink-2); }

/* ---------- In detail: pinned heading, content beside it ---------- */
.sk-tx-detail { display: grid; gap: 48px; }
@media (min-width: 1024px) {
	.sk-tx-detail { grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); }
	.sk-tx-detail__aside { position: sticky; top: 112px; align-self: start; } /* lg:sticky lg:top-28 */
}
.sk-tx-detail > div { min-width: 0; }
.sk-tx-prose { max-width: 62ch; }
.sk-tx-prose > p { font-size: 18px; line-height: 1.625; color: var(--sk-ink-2); text-wrap: pretty; }
.sk-tx-prose > * + * { margin-top: 20px !important; }
.sk-tx-prose > h3 { margin-top: 36px !important; font-family: var(--sk-font-display); font-size: 24px; line-height: 1.375; color: var(--sk-ink); }
.sk-tx-prose > ul li { position: relative; padding-left: 28px; font-size: 16px; line-height: 1.5; color: var(--sk-ink-2); }
.sk-tx-prose > ul li + li { margin-top: 12px; }
.sk-tx-prose > ul li::before { content: ""; position: absolute; left: 0; top: 3px; width: 16px; height: 16px; background: var(--sk-accent); -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat; }

/* ---------- Accordion ---------- */
.sk-tx-acc { border-block: 1px solid var(--sk-line); }
.sk-tx-acc__item + .sk-tx-acc__item { border-top: 1px solid var(--sk-line); }
.sk-tx-acc__h { font-size: inherit; line-height: inherit; }
.sk-tx-acc__btn { display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 0; border: 0; background: none; text-align: left; cursor: pointer; color: inherit; }
.sk-tx-acc__title { font-family: var(--sk-font-display); font-size: 20px; line-height: 1.375; color: var(--sk-ink); }
@media (min-width: 768px) { .sk-tx-acc__title { font-size: 24px; } }
.sk-tx-acc__icon { display: flex; width: 32px; height: 32px; flex-shrink: 0; align-items: center; justify-content: center; border: 1px solid var(--sk-line-strong); border-radius: 999px; color: var(--sk-deep); transition: transform 300ms ease; }
.sk-tx-acc__item.is-open .sk-tx-acc__icon { transform: rotate(45deg); }
.sk-tx-acc__panel { display: grid; grid-template-rows: 1fr; opacity: 1; transition: grid-template-rows 300ms ease-out, opacity 300ms ease-out; }
.sk-js .sk-tx-acc__item:not(.is-open) .sk-tx-acc__panel { grid-template-rows: 0fr; opacity: 0; }
.sk-tx-acc__clip { overflow: hidden; min-height: 0; }
.sk-tx-acc__body { max-width: 62ch; padding: 0 48px 24px 0; font-size: 15px; line-height: 1.625; color: var(--sk-ink-2); }
.sk-tx-acc__body p + p { margin-top: 12px; }
@media (prefers-reduced-motion: reduce) {
	.sk-tx-acc__icon, .sk-tx-acc__panel { transition: none; }
}

/* ---------- Brand cards ---------- */
.sk-tx-brands { margin-top: 48px; display: grid; gap: 16px; }
@media (min-width: 640px) { .sk-tx-brands { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .sk-tx-brands { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.sk-tx-brand { border: 1px solid var(--sk-line); border-radius: 16px; background: #FFFFFF; padding: 24px; min-width: 0; }
.sk-tx-brand__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.sk-tx-brand__head h3 { font-family: var(--sk-font-display); font-size: 24px; line-height: 32px; color: var(--sk-ink); }
.sk-tx-brand__badge { border-radius: 999px; padding: 4px 10px; background: var(--sk-tile); font-size: 11px; line-height: 16px; font-weight: 500; letter-spacing: 0.025em; text-transform: uppercase; color: var(--sk-deep); text-align: center; }
.sk-tx-brand__badge.is-off { background: var(--sk-bg-alt); color: var(--sk-ink-2); }
.sk-tx-brand dl { margin-top: 16px; font-size: 14px; line-height: 20px; }
.sk-tx-brand dl > div { display: flex; justify-content: space-between; gap: 12px; }
.sk-tx-brand dl > div + div { margin-top: 8px; }
.sk-tx-brand dt { color: var(--sk-ink-2); }
.sk-tx-brand dd { text-align: right; color: var(--sk-ink); }

/* ---------- FAQ ---------- */
.sk-tx-faq { max-width: 832px; margin-inline: auto; } /* max-w-4xl less its gutter */
.sk-tx-faq__head { margin-bottom: 48px; text-align: center; }

/* ---------- Related: the reference's menu card ---------- */
.sk-tx-cathead { margin-bottom: 40px; display: flex; flex-direction: column; gap: 12px; }
@media (min-width: 768px) { .sk-tx-cathead { flex-direction: row; align-items: flex-end; justify-content: space-between; gap: 24px; } }
.sk-tx-concerns { max-width: 28rem; }
.sk-tx-concerns p { margin-bottom: 8px !important; font-size: 14px; line-height: 20px; color: var(--sk-ink-2); }
.sk-tx-concerns div { display: flex; flex-wrap: wrap; gap: 8px; }
@media (min-width: 768px) { .sk-tx-concerns { text-align: right; } .sk-tx-concerns div { justify-content: flex-end; } }
.sk-tx .sk-tx-pilllink { display: inline-flex; align-items: center; min-height: 44px; padding: 10px 16px; border: 1px solid var(--sk-line-strong); border-radius: 999px; font-size: 14px; line-height: 20px; font-weight: 500; color: var(--sk-deep); transition: background-color 150ms ease; }
.sk-tx .sk-tx-pilllink:hover { background: #FFFFFF; color: var(--sk-deep); }

.sk-tx-cards { display: grid; gap: 24px; }
@media (min-width: 640px) { .sk-tx-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .sk-tx-cards { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.sk-tx-cards > li { min-width: 0; }
.sk-tx .sk-tx-card { display: flex; height: 100%; flex-direction: column; overflow: hidden; border: 1px solid var(--sk-line); border-radius: 16px; background: #FFFFFF; color: var(--sk-ink); transition: border-color 150ms ease, box-shadow 150ms ease; }
.sk-tx .sk-tx-card:hover { border-color: var(--sk-line-strong); box-shadow: 0 1px 3px 0 rgba(41, 41, 41, 0.1), 0 1px 2px -1px rgba(41, 41, 41, 0.1); color: var(--sk-ink); }
.sk-tx-card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--sk-bg-alt); }
.sk-tx-card__img { position: absolute; inset: 0; width: 100%; height: 100% !important; object-fit: cover; border-radius: 0; transition: transform 500ms ease; }
.sk-tx-card:hover .sk-tx-card__img { transform: scale(1.05); }
.sk-tx-card__body { display: flex; flex: 1; flex-direction: column; padding: 24px; }
.sk-tx-card__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.sk-tx-card__title { font-family: var(--sk-font-display); font-size: 24px; line-height: 1.25; color: var(--sk-ink); min-width: 0; }
.sk-tx-card__badge { margin-top: 4px; max-width: 55%; border-radius: 999px; background: var(--sk-tile); padding: 4px 10px; font-size: 11px; line-height: 16px; font-weight: 500; color: var(--sk-deep); text-align: center; }
.sk-tx-card__line { margin-top: 12px !important; flex: 1; font-size: 15px; line-height: 1.625; color: var(--sk-ink-2); }
.sk-tx-card__more { margin-top: 20px; display: inline-flex; align-items: center; gap: 6px; font-size: 14px; line-height: 20px; font-weight: 500; color: var(--sk-deep); }
.sk-tx-card__more .sk-tx-ico { transition: transform 150ms ease; }
.sk-tx-card:hover .sk-tx-card__more .sk-tx-ico { transform: translateX(4px); }

/* ---------- Start with a consult ---------- */
.sk-tx-book { display: grid; overflow: hidden; border: 1px solid var(--sk-line); border-radius: 24px; background: #FFFFFF; }
@media (min-width: 1024px) { .sk-tx-book { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.sk-tx-book__media { position: relative; min-height: 256px; background: var(--sk-bg-alt); } /* min-h-64 */
.sk-tx-book__img { position: absolute; inset: 0; width: 100%; height: 100% !important; object-fit: cover; border-radius: 0; }
.sk-tx-book__body { padding: 32px; min-width: 0; }
@media (min-width: 768px) { .sk-tx-book__body { padding: 48px; } }
.sk-tx-book__lead { margin-top: 20px !important; line-height: 1.625; color: var(--sk-ink-2); text-wrap: pretty; }
.sk-tx-book__rows { margin-top: 32px; }
.sk-tx-book__rows > * + * { margin-top: 16px !important; }
.sk-tx .sk-tx-book__row { display: flex; align-items: center; gap: 12px; color: var(--sk-ink); transition: color 150ms ease; }
.sk-tx a.sk-tx-book__row:hover { color: var(--sk-deep); }
.sk-tx-book__ico { display: flex; width: 40px; height: 40px; flex-shrink: 0; align-items: center; justify-content: center; border-radius: 999px; background: var(--sk-tile); color: var(--sk-deep); }
.sk-tx-actions--book { margin-top: 36px; }
@media (min-width: 640px) { .sk-tx-actions--book { flex-wrap: wrap; } }
.sk-tx-book__note { margin-top: 24px !important; font-size: 13px; line-height: 1.625; color: var(--sk-ink-2); }

/* ---------- Phones ---------- */
@media (max-width: 767px) {
	.sk-tx-glance__head { flex-wrap: wrap; }
	.sk-tx-price { padding: 24px; }
	.sk-tx-acc__body { padding-right: 0; }
}

/* ---------- Treatments menu ---------- */
.sk-tx-hero__inner--menu { padding-block: 40px 56px; } /* pt-10 pb-14 */
@media (min-width: 768px) { .sk-tx-hero__inner--menu { padding-block: 64px 80px; } } /* md:pt-16 md:pb-20 */
.sk-tx-menu__head { max-width: 48rem; } /* max-w-3xl */
.sk-tx-hero__lead--wide { max-width: 48rem; }
.sk-tx-menu__actions { margin-top: 32px; display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.sk-tx-menu__pills { display: flex; flex-wrap: wrap; gap: 8px; }
.sk-tx-btn--icon { gap: 8px; min-height: 44px; padding: 12px 24px; font-size: 14px; line-height: 20px; }
.sk-tx-cathead__line { max-width: 28rem; line-height: 1.625; color: var(--sk-ink-2); text-wrap: pretty; }
.sk-tx-close { max-width: 56rem; margin-inline: auto; text-align: center; }
.sk-tx-close__lead { margin-top: 20px !important; margin-inline: auto; max-width: 36rem; font-size: 18px; line-height: 1.625; color: var(--sk-ink-2); text-wrap: pretty; }
.sk-tx-actions--center { justify-content: center; }
.sk-tx-menu .sk-tx-h2--cat a { color: inherit; text-decoration: none; }
.sk-tx-menu .sk-tx-h2--cat a:hover { color: var(--sk-deep); }
