/* Match the theme's content wrapper to the template's own background so no
   white gap shows around/between the plugin-rendered sections. */
body.single-procedures .site-content {
	background-color: #fffcf7;
}

.ln-procedure-hero {
	position: relative;
	overflow: hidden;
	background-color: #F7F1E8;
	font-family: "Plus Jakarta Sans", sans-serif;
}

.ln-procedure-hero__container {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 1440px;
	min-height: 600px;
	margin: 0 auto;
}

.ln-procedure-hero__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 60%;
	min-height: 600px;
	padding: 64px 56px;
}

/* ── Breadcrumb ── */
.ln-procedure-hero__breadcrumb {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 28px;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.02em;
	color: #8A7C6C;
}

.ln-procedure-hero__breadcrumb a {
	color: #8A7C6C;
	text-decoration: none;
	transition: color 0.2s ease;
}

.ln-procedure-hero__breadcrumb a:hover {
	color: #205247;
}

.ln-procedure-hero__breadcrumb-sep {
	color: #C7BAA9;
}

.ln-procedure-hero__breadcrumb-current {
	color: #2B2119;
}

/* ── Heading ── */
.ln-procedure-hero__title {
	margin: 0 0 18px;
	max-width: 560px;
	font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
	font-size: 56px;
	font-weight: 500;
	line-height: 1.1;
	letter-spacing: -0.01em;
	text-transform: uppercase;
	color: #211710;
}

.ln-procedure-hero__subtitle {
	margin: 0 0 20px;
	max-width: 480px;
	font-family: inherit;
	font-size: 20px;
	font-weight: 500;
	font-style: italic;
	line-height: 1.4;
	color: #205247;
}

.ln-procedure-hero__desc {
	margin: 0 0 36px;
	max-width: 480px;
	font-family: inherit;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.7;
	color: #5B5147;
}

/* ── Stats ── */
.ln-procedure-hero__stats {
	display: flex;
	flex-wrap: wrap;
	gap: 22px 34px;
	margin-bottom: 36px;
}

.ln-procedure-hero__stat {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 10px;
}

.ln-procedure-hero__stat-icon {
	display: inline-flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	color: #205247;
}

.ln-procedure-hero__stat-icon svg {
	width: 100%;
	height: 100%;
}

.ln-procedure-hero__stat-text {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.ln-procedure-hero__stat-value {
	font-family: inherit;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.2;
	color: #211710;
}

.ln-procedure-hero__stat-label {
	font-family: inherit;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.2;
	color: #948573;
}

/* ── Actions ── */
.ln-procedure-hero__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px;
}

.ln-procedure-hero__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 50px;
	padding: 12px 26px;
	border: 1px solid transparent;
	border-radius: 8px;
	font-family: inherit;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.01em;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
	transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.ln-procedure-hero__btn--primary {
	color: #fff;
	background-color: #205247;
}

.ln-procedure-hero__btn--primary:hover {
	background-color: #96602A;
}

.ln-procedure-hero__btn--secondary {
	color: #211710;
	background-color: #FFFFFF;
	border-color: #E7DCC9;
}

.ln-procedure-hero__btn--secondary:hover {
	border-color: #205247;
	color: #205247;
}

.ln-procedure-hero__btn-icon {
	display: inline-flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
}

.ln-procedure-hero__btn-icon svg {
	width: 100%;
	height: 100%;
}

.ln-procedure-hero__btn--primary .ln-procedure-hero__btn-icon {
	color: #fff;
}

.ln-procedure-hero__btn--secondary .ln-procedure-hero__btn-icon {
	color: #205247;
}

/* ── Media ──
 * Positioned as a full-height background layer of .ln-procedure-hero
 * (not confined to the max-width container), so it bleeds to the section's
 * right edge on wide screens while the text stays within the container.
 */
.ln-procedure-hero__media {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 0;
	width: 55%;
	background-color: #EBE1D2;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.ln-procedure-hero__media::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(90deg,
			#F7F1E8 0%,
			#F7F1E8 6%,
			rgba(247, 241, 232, 0) 20%);
	pointer-events: none;
}

/* ── Quick Actions bar ──
 * Floats over the bottom edge of the hero (negative margin-top).
 */
.ln-procedure-quickbar {
	position: relative;
	z-index: 2;
	max-width: 1440px;
	margin: -35px auto 0;
	padding: 0 24px;
}

.ln-procedure-quickbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 24px 16px;
	background-color: #fff;
	border-radius: 10px;
	padding: 30px 35px;
	box-shadow: 0 20px 45px rgba(33, 23, 16, 0.12);
}

.ln-procedure-quickbar__item {
	display: flex;
	align-items: center;
	/* 4 equal columns: subtract the 3 dividers (1px) and 6 gaps (16px) they
	   introduce between the 4 items so each column is a true 25%. */
	flex: 0 1 calc((100% - 99px) / 4);
	min-width: 0;
	gap: 14px;
	text-decoration: none;
	color: inherit;
}

.ln-procedure-quickbar__icon {
	display: inline-flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	color: #205247;
}

.ln-procedure-quickbar__icon svg {
	width: 30px;
	height: 30px;
}

.ln-procedure-quickbar__text {
	display: flex;
	flex-direction: column;
	gap: 3px;
	min-width: 0;
}

.ln-procedure-quickbar__title {
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.3;
	color: #211710;
}

.ln-procedure-quickbar__subtitle {
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.35;
	color: #8A7C6C;
}

.ln-procedure-quickbar__divider {
	flex-shrink: 0;
	width: 1px;
	height: 40px;
	background-color: #EFE7D9;
}

/* ── About section ── */
.ln-procedure-about {
	background-color: #fffcf7;
	font-family: "Plus Jakarta Sans", sans-serif;
}

.ln-procedure-about__container {
	display: flex;
	align-items: center;
	gap: 40px;
	max-width: 1440px;
	margin: 0 auto;
	padding: 40px 24px;
}

.ln-procedure-about__media {
	position: relative;
	flex: 0 0 44%;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 30px 60px rgba(33, 23, 16, 0.14);
}

.ln-procedure-about__media img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.ln-procedure-about__content {
	flex: 1 1 auto;
	min-width: 0;
}

.ln-procedure-about__eyebrow {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 18px;
	font-family: inherit;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #205247;
}

.ln-procedure-about__eyebrow-line {
	flex: 0 1 100px;
	height: 1px;
	background-color: #D8C6AA;
}

.ln-procedure-about__title {
	margin: 0 0 22px;
	font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
	font-size: 42px;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: -0.01em;
	color: #211710;
}

.ln-procedure-about__desc {
	margin: 0 0 36px;
	font-family: inherit;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.7;
	color: #5B5147;
}

.ln-procedure-about__features {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px 28px;
	padding-top: 24px;
	border-top: 1px solid #ECE2D2;
}

.ln-procedure-about__feature {
	display: flex;
	align-items: center;
	gap: 12px;
}

.ln-procedure-about__feature-icon {
	display: inline-flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 12px;
	background-color: rgba(182, 122, 60, 0.1);
	color: #205247;
}

.ln-procedure-about__feature-icon svg {
	width: 20px;
	height: 20px;
}

.ln-procedure-about__feature-label {
	font-family: inherit;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.35;
	color: #211710;
}

/* ── Services showcase ── */
.ln-procedure-services {
	background-color: #fffcf7;
	font-family: "Plus Jakarta Sans", sans-serif;
}

.ln-procedure-services__container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 24px 96px;
}

.ln-procedure-services__heading {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	margin-bottom: 20px;
}

.ln-procedure-services__heading-line {
	flex: 0 1 64px;
	height: 1px;
	background-color: #D8C6AA;
}

.ln-procedure-services__title {
	margin: 0;
	min-width: 0;
	font-family: inherit;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-align: center;
	color: #211710;
}

.ln-procedure-services__grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 20px;
	margin-bottom: 48px;
}

.ln-procedure-services__card {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
	padding: 32px 20px 25px 20px;
	border: 1px solid #ECE2D2;
	border-radius: 14px;
	text-align: center;
	transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.ln-procedure-services__card:hover {
	border-color: #D8C6AA;
	box-shadow: 0 16px 32px rgba(33, 23, 16, 0.08);
}

.ln-procedure-services__card-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	color: #205247;
}

.ln-procedure-services__card-icon svg {
	width: 100%;
	height: 100%;
}

.ln-procedure-services__card-body {
	display: flex;
	flex-direction: column;
	gap: 8px;
	min-width: 0;
}

.ln-procedure-services__card-title {
	margin: 0;
	font-family: inherit;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.3;
	color: #211710;
}

.ln-procedure-services__card-desc {
	margin: 0;
	font-family: inherit;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.55;
	color: #7A6D5E;
}

.ln-procedure-services__card-arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	margin-top: auto;
	border: 1px solid #E7DCC9;
	border-radius: 50%;
	color: #205247;
	text-decoration: none;
	transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.ln-procedure-services__card-arrow svg {
	width: 16px;
	height: 16px;
}

.ln-procedure-services__card-arrow:hover {
	background-color: #205247;
	border-color: #205247;
	color: #fff;
}

.ln-procedure-services__cta {
	display: flex;
	justify-content: center;
}

.ln-procedure-services__btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 17px;
	background-color: #205247;
	border-radius: 5px;
	font-family: inherit;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.01em;
	color: #fff;
	text-decoration: none;
	transition: background-color 0.25s ease;
}

.ln-procedure-services__btn svg {
	width: 18px;
	height: 18px;
}

.ln-procedure-services__btn:hover {
	background-color: #96602A;
}

/* ── Why Choose Us strip ── */
.ln-procedure-whychoose {
	background-color: #fffcf7;
	font-family: "Plus Jakarta Sans", sans-serif;
}

.ln-procedure-whychoose__container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 24px 40px;
}

.ln-procedure-whychoose__panel {
	position: relative;
	display: flex;
	align-items: center;
	gap: 15px;
	overflow: hidden;
	background: linear-gradient(120deg, #f4f3f1 0%, #f4f3f2 100%);
	border-radius: 24px;
	padding: 30px 20px 30px 45px;
}

.ln-procedure-whychoose__decor {
	position: absolute;
	left: -50px;
	bottom: -50px;
	z-index: 0;
	width: 170px;
	height: 170px;
	color: #205247;
	opacity: 0.1;
	pointer-events: none;
}

.ln-procedure-whychoose__title {
	position: relative;
	z-index: 1;
	flex: 0 0 285px;
	margin: 0;
	font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
	font-size: 22px;
	font-weight: 600;
	line-height: 1.35;
	letter-spacing: 0.01em;
	text-transform: uppercase;
	color: #211710;
}

.ln-procedure-whychoose__items {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex: 1 1 auto;
	gap: 8px;
}

.ln-procedure-whychoose__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex: 1 1 0;
	gap: 12px;
	text-align: center;
}

.ln-procedure-whychoose__item-icon {
	display: inline-flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	color: #205247;
}

.ln-procedure-whychoose__item-icon svg {
	width: 100%;
	height: 100%;
}

.ln-procedure-whychoose__item-label {
	font-family: inherit;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.4;
	color: #211710;
}

.ln-procedure-whychoose__divider {
	flex-shrink: 0;
	width: 1px;
	height: 100px;
	background-color: #fffcf7;
}

/* ══════════════════════════════════════════
 * Brands We Trust
 * ══════════════════════════════════════════ */

.ln-procedure-brands {
	background-color: #fffcf7;
	font-family: "Plus Jakarta Sans", sans-serif;
}

.ln-procedure-brands__container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 24px 96px;
}

.ln-procedure-brands__heading {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	margin-bottom: 10px;
}

.ln-procedure-brands__heading-line {
	flex: 0 1 64px;
	height: 1px;
	background-color: #205247 !important;
}

.ln-procedure-brands__title {
	margin: 0;
	min-width: 0;
	font-family: inherit;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-align: center;
	color: #205247 !important;
}

.ln-procedure-brands__carousel {
	position: relative;
	display: flex;
	align-items: center;
	gap: 16px;
}

.ln-procedure-brands__track {
	display: flex;
	align-items: center;
	gap: 25px;
	overflow-x: auto;
	scroll-behavior: smooth;
	scrollbar-width: none;
	padding: 4px 2px;
}

.ln-procedure-brands__track::-webkit-scrollbar {
	display: none;
}

.ln-procedure-brands__item {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100px;
}

.ln-procedure-brands__item img {
	max-width: 170px;
	width: auto;
	object-fit: contain;
	filter: grayscale(1);
	opacity: 0.75;
	transition: opacity 0.2s ease, filter 0.2s ease;
}

.ln-procedure-brands__item img:hover {
	filter: grayscale(0);
	opacity: 1;
}

.ln-procedure-brands__item-name {
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.02em;
	color: #6B6055;
	white-space: nowrap;
}

.ln-procedure-brands__arrow {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 35px;
	height: 35px;
	border: 1px solid #D8C6AA;
	border-radius: 50%;
	background: transparent;
	color: #A9835A;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.ln-procedure-brands__arrow svg {
	width: 18px;
	height: 18px;
}

.ln-procedure-brands__arrow:hover {
	background-color: #A9835A;
	color: #FFFFFF;
}

/* ══════════════════════════════════════════
 * Before & After
 * (slider markup/behavior shared with the "Before & After" Elementor
 * widget — see widgets/ln_before_after/assets/{css,js})
 * ══════════════════════════════════════════ */

.ln-procedure-beforeafter {
	background-color: #fffcf7;
	font-family: "Plus Jakarta Sans", sans-serif;
}

.ln-procedure-beforeafter__container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 24px 40px;
}

.ln-procedure-beforeafter__heading {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	margin-bottom: 32px;
}

.ln-procedure-beforeafter__heading-line {
	flex: 0 1 64px;
	height: 1px;
	background-color: #D8C6AA;
}

.ln-procedure-beforeafter__title {
	margin: 0;
	min-width: 0;
	font-family: inherit;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-align: center;
	color: #211710;
}

.ln-procedure-beforeafter__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
	margin-bottom: 40px;
}

.ln-procedure-beforeafter__card .ln-ba-slider {
	height: 200px;
	border-radius: 14px;
}

.ln-procedure-beforeafter .ln-ba-slider__label {
	display: flex;
	align-items: center;
	position: absolute;
	bottom: 0;
	height: 44px;
	padding: 0 14px;
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: 13px;
	font-weight: 600;
	color: #fff;
	z-index: 2;
	pointer-events: none;
}

.ln-procedure-beforeafter .ln-ba-slider__label--before {
	left: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.ln-procedure-beforeafter .ln-ba-slider__label--after {
	right: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.ln-procedure-beforeafter__cta {
	display: flex;
	justify-content: center;
}

.ln-procedure-beforeafter__btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 22px;
	background-color: #205247;
	border-radius: 5px;
	font-family: inherit;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.01em;
	color: #fff;
	text-decoration: none;
	transition: background-color 0.25s ease;
}

.ln-procedure-beforeafter__btn svg {
	width: 18px;
	height: 18px;
}

.ln-procedure-beforeafter__btn:hover {
	background-color: #96602A;
}

/* ══════════════════════════════════════════
 * Testimonials — "What Our Clients Say"
 * ══════════════════════════════════════════ */

.ln-procedure-testimonials {
	background-color: #fffcf7;
	font-family: "Plus Jakarta Sans", sans-serif;
}

.ln-procedure-testimonials__container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 24px 96px;
}

.ln-procedure-testimonials__heading {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	margin-bottom: 40px;
}

.ln-procedure-testimonials__heading-line {
	flex: 0 1 64px;
	height: 1px;
	background-color: #D8C6AA;
}

.ln-procedure-testimonials__title {
	margin: 0;
	min-width: 0;
	font-family: inherit;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-align: center;
	color: #211710;
}

.ln-procedure-testimonials__carousel {
	position: relative;
}

.ln-procedure-testimonials__track {
	display: flex;
	align-items: stretch;
	gap: 24px;
	overflow-x: auto;
	scroll-behavior: smooth;
	scroll-snap-type: x proximity;
	scrollbar-width: none;
	padding: 4px 2px;
}

.ln-procedure-testimonials__track::-webkit-scrollbar {
	display: none;
}

.ln-procedure-testimonials__card {
	flex: 0 0 calc(25% - 18px);
	scroll-snap-align: start;
	display: flex;
	flex-direction: column;
	background-color: #FFFFFF;
	border: 1px solid #EFE4D3;
	border-radius: 14px;
	padding: 28px 24px;
}

.ln-procedure-testimonials__quote {
	display: inline-flex;
	width: 30px;
	height: 22px;
	margin-bottom: 14px;
	color: #205247;
}

.ln-procedure-testimonials__quote svg {
	width: 100%;
	height: 100%;
}

.ln-procedure-testimonials__text {
	margin: 0 0 5px;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.65;
	color: #4B4038;
}

.ln-procedure-testimonials__author {
	margin-top: auto;
	font-size: 14px;
	font-weight: 600;
	color: #211710;
}

.ln-procedure-testimonials__stars {
	display: flex;
	gap: 3px;
	margin-top: 10px;
}

.ln-procedure-testimonials__star {
	width: 14px;
	height: 14px;
	color: #E5DCC9;
}

.ln-procedure-testimonials__star.is-filled {
	color: #E8A33D;
}

.ln-procedure-testimonials__dots {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 32px;
}

.ln-procedure-testimonials__dot {
	width: 8px;
	height: 8px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background-color: #E5DCC9;
	cursor: pointer;
	transition: background-color 0.2s ease, width 0.2s ease;
}

.ln-procedure-testimonials__dot.is-active {
	width: 22px;
	border-radius: 4px;
	background-color: #205247;
}

/* ══════════════════════════════════════════
 * CTA Banner
 * (design mirrors the "CTA Banner" Elementor widget — see
 * widgets/ln_cta_banner/assets/css/ln-cta-banner.css)
 * ══════════════════════════════════════════ */

.ln-procedure-cta {
	background-color: #F5EDE0;
	font-family: "Plus Jakarta Sans", sans-serif;
	overflow: visible;
	position: relative;
}

.ln-procedure-cta__inner {
	max-width: 1400px;
	margin: 0 auto;
	padding: 12px 24px;
	display: flex;
	align-items: center;
	min-height: 160px;
	max-height: 180px;
	position: relative;
	overflow: hidden;
}

.ln-procedure-cta__person {
	flex: 0 0 20%;
	width: 20%;
	align-self: flex-start;
	margin: 0;
	line-height: 0;
	margin-bottom: -1px;
}

.ln-procedure-cta__person img {
	display: block;
	width: 100%;
	height: 220px;
	object-fit: cover;
	object-position: top center;
}

.ln-procedure-cta__content {
	flex: 0 0 60%;
	width: 60%;
	align-self: center;
	padding: 0 32px;
}

.ln-procedure-cta__heading {
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: 30px;
	font-weight: 500;
	line-height: 1.2;
	color: #2C1A0A;
	margin: 0 0 5px;
}

.ln-procedure-cta__subtext {
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: 12.5px;
	font-weight: 400;
	color: #7A5C40;
	margin: 0 0 16px;
	line-height: 1.5;
}

.ln-procedure-cta__actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	width: 100%;
}

.ln-procedure-cta__btn--primary {
	margin-right: auto;
}

.ln-procedure-cta__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	padding: 10px 20px;
	border-radius: 4px;
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	white-space: nowrap;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
	letter-spacing: 0.01em;
	cursor: pointer;
	border: 1.5px solid transparent;
}

.ln-procedure-cta__btn--primary {
	background-color: #205247;
	color: #FFFFFF;
	border-color: #205247;
}

.ln-procedure-cta__btn--primary:hover {
	background-color: #5A3018;
	border-color: #5A3018;
	color: #FFFFFF;
}

.ln-procedure-cta__btn--outline {
	background-color: transparent;
	color: #205247;
	border-color: #C4A882;
}

.ln-procedure-cta__btn--outline:hover {
	background-color: #205247;
	border-color: #205247;
	color: #FFFFFF;
}

.ln-procedure-cta__btn-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.ln-procedure-cta__btn-icon svg {
	width: 14px;
	height: 14px;
	line-height: 1;
	vertical-align: middle;
	fill: currentColor;
}

.ln-procedure-cta__deco {
	flex: 0 0 20%;
	width: 20%;
	margin: 0;
	margin-bottom: -1px;
	opacity: 0.5;
	pointer-events: none;
	line-height: 0;
	display: flex;
	justify-content: flex-end;
}

.ln-procedure-cta__deco img {
	display: block;
	height: 200px;
	width: auto;
	max-width: 100%;
	object-fit: contain;
	object-position: bottom right;
}

/* ── 1200px ── */
@media (max-width: 1200px) {
	.ln-procedure-hero__content {
		padding: 56px 40px;
	}

	.ln-procedure-hero__title {
		font-size: 48px;
	}

	.ln-procedure-about__title {
		font-size: 38px;
	}

	.ln-procedure-services__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.ln-procedure-whychoose__panel {
		gap: 28px;
		padding: 40px;
	}

	.ln-procedure-whychoose__title {
		flex: 0 0 200px;
		font-size: 22px;
	}

	.ln-procedure-cta__inner {
		padding: 14px 40px;
		min-height: 160px;
	}

	.ln-procedure-cta__person {
		width: 175px;
	}

	.ln-procedure-cta__person img {
		height: 230px;
	}
}

/* ── 1024px: stack, image on top ── */
@media (max-width: 1024px) {
	.ln-procedure-hero {
		display: flex;
		flex-direction: column;
	}

	.ln-procedure-hero__container {
		order: 2;
		min-height: 0;
	}

	.ln-procedure-hero__content {
		width: 100%;
		min-height: 0;
		padding: 40px 32px 48px;
	}

	.ln-procedure-hero__media {
		position: relative;
		order: 1;
		width: 100%;
		height: 320px;
	}

	.ln-procedure-hero__media::before {
		background: none;
	}

	.ln-procedure-hero__title,
	.ln-procedure-hero__subtitle,
	.ln-procedure-hero__desc {
		max-width: none;
	}

	.ln-procedure-quickbar {
		margin-top: -32px;
		padding: 0 20px;
	}

	.ln-procedure-quickbar__inner {
		padding: 24px;
	}

	.ln-procedure-quickbar__item {
		flex: 1 1 45%;
	}

	.ln-procedure-quickbar__divider {
		display: none;
	}

	.ln-procedure-about__container {
		flex-direction: column;
		padding: 40px 32px;
	}

	.ln-procedure-about__media {
		flex: 0 0 auto;
		width: 100%;
	}

	.ln-procedure-whychoose__panel {
		flex-direction: column;
		align-items: flex-start;
		gap: 32px;
	}

	.ln-procedure-whychoose__title {
		flex: 0 0 auto;
	}

	.ln-procedure-whychoose__items {
		flex-wrap: wrap;
		justify-content: flex-start;
		gap: 28px 16px;
		width: 100%;
	}

	.ln-procedure-whychoose__item {
		flex: 1 1 calc(33.333% - 16px);
		min-width: 130px;
	}

	.ln-procedure-whychoose__divider {
		display: none;
	}

	.ln-procedure-beforeafter__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ln-procedure-testimonials__card {
		flex: 0 0 calc(50% - 12px);
	}

	.ln-procedure-cta__inner {
		padding: 16px 24px;
		min-height: 160px;
		max-height: 180px;
	}

	.ln-procedure-cta__heading {
		font-size: 24px;
	}

	.ln-procedure-cta__content {
		flex: 1 1 auto;
		width: auto;
		padding: 0 20px;
	}

	.ln-procedure-cta__person {
		flex: 0 0 120px;
		width: 120px;
		margin-right: 16px;
	}

	.ln-procedure-cta__person img {
		height: 190px;
	}

	.ln-procedure-cta__deco {
		flex: 0 0 70px;
		width: 70px;
	}

	.ln-procedure-cta__deco img {
		height: 170px;
	}
}

/* ── 768px ── */
@media (max-width: 768px) {
	.ln-procedure-hero__title {
		font-size: 36px;
	}

	.ln-procedure-hero__subtitle {
		font-size: 18px;
	}

	.ln-procedure-hero__desc {
		font-size: 16px;
	}

	.ln-procedure-hero__media {
		height: 260px;
	}

	.ln-procedure-hero__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.ln-procedure-hero__btn {
		width: 100%;
	}

	.ln-procedure-about__title {
		font-size: 32px;
	}

	.ln-procedure-services__title {
		font-size: 17px;
	}

	.ln-procedure-services__heading-line {
		flex: 0 1 40px;
	}

	.ln-procedure-services__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 16px;
	}

	.ln-procedure-whychoose__panel {
		padding: 32px;
	}

	.ln-procedure-whychoose__item {
		flex: 1 1 calc(50% - 8px);
	}

	.ln-procedure-services__card {
		padding: 28px 16px 20px;
	}

	.ln-procedure-brands__track {
		gap: 40px;
	}

	.ln-procedure-brands__container {
		padding: 0 24px 72px;
	}

	.ln-procedure-beforeafter__container {
		padding: 0 24px 32px;
	}

	.ln-procedure-beforeafter__title {
		font-size: 17px;
	}

	.ln-procedure-beforeafter__heading-line {
		flex: 0 1 40px;
	}

	.ln-procedure-testimonials__container {
		padding: 0 24px 72px;
	}

	.ln-procedure-cta {
		overflow: hidden;
	}

	.ln-procedure-cta__inner {
		min-height: 0;
		max-height: none;
		padding: 24px 20px;
		flex-direction: column;
		align-items: flex-start;
		gap: 14px;
	}

	.ln-procedure-cta__person,
	.ln-procedure-cta__deco {
		display: none;
	}

	.ln-procedure-cta__content {
		width: 100%;
		padding: 0;
	}

	.ln-procedure-cta__heading {
		font-size: 22px;
		margin-bottom: 4px;
	}

	.ln-procedure-cta__subtext {
		margin-bottom: 0;
	}

	.ln-procedure-cta__actions {
		flex-direction: row;
		flex-wrap: wrap;
		align-items: stretch;
		width: 100%;
		gap: 8px;
	}

	.ln-procedure-cta__btn--primary {
		margin-right: 0;
	}

	.ln-procedure-cta__btn {
		justify-content: center;
		flex: 1 1 auto;
	}
}

/* ── 480px ── */
@media (max-width: 480px) {
	.ln-procedure-hero__content {
		padding: 32px 20px 40px;
	}

	.ln-procedure-hero__title {
		font-size: 32px;
	}

	.ln-procedure-hero__stats {
		gap: 22px 28px;
	}

	.ln-procedure-quickbar {
		margin-top: -24px;
		padding: 0 16px;
	}

	.ln-procedure-quickbar__inner {
		padding: 20px;
		gap: 16px;
	}

	.ln-procedure-quickbar__item {
		flex: 1 1 100%;
	}

	.ln-procedure-quickbar__divider {
		display: block;
		width: 100%;
		height: 1px;
	}

	.ln-procedure-about__container {
		padding: 35px 20px;
		gap: 30px;
	}

	.ln-procedure-about__title {
		margin-bottom: 10px;
		font-size: 24px;
	}

	.ln-procedure-about__desc {
		margin-bottom: 20px;
		font-size: 15px;
	}

	.ln-procedure-about__features {
		grid-template-columns: 1fr;
	}

	.ln-procedure-services__heading {
		gap: 12px;
		margin-bottom: 28px;
	}

	.ln-procedure-services__heading-line {
		display: none;
	}

	.ln-procedure-services__title {
		margin-top: 30px;
		font-size: 14px;
		line-height: 18px;
		letter-spacing: 0.06em;
	}

	.ln-procedure-services__grid {
		grid-template-columns: 1fr;
		gap: 16px;
		margin-bottom: 32px;
	}

	.ln-procedure-services__card {
		flex-direction: row;
		align-items: center;
		gap: 14px;
		padding: 16px;
		text-align: left;
	}

	.ln-procedure-services__card-icon {
		flex-shrink: 0;
		width: 36px;
		height: 36px;
	}

	.ln-procedure-services__card-body {
		gap: 3px;
	}

	.ln-procedure-services__card-title {
		font-size: 15px;
	}

	.ln-procedure-services__card-desc {
		font-size: 13px;
	}

	.ln-procedure-services__card-arrow {
		flex-shrink: 0;
		width: 28px;
		height: 28px;
		margin-top: 0;
		margin-left: auto;
	}

	.ln-procedure-services__card-arrow svg {
		width: 14px;
		height: 14px;
	}

	.ln-procedure-services__container {
		padding: 0 20px 45px;
	}

	.ln-procedure-services__btn {
		width: 100%;
		justify-content: center;
	}

	.ln-procedure-whychoose__container {
		padding: 0 20px 20px;
	}

	.ln-procedure-whychoose__panel {
		padding: 28px 20px;
	}

	.ln-procedure-whychoose__title {
		font-size: 20px;
	}

	.ln-procedure-whychoose__items {
		flex-direction: column;
		align-items: stretch;
		gap: 20px;
	}

	.ln-procedure-whychoose__item {
		flex: 1 1 auto;
		flex-direction: row;
		align-items: center;
		gap: 14px;
		padding-bottom: 20px;
		border-bottom: 1px solid #E7DCC9;
		text-align: left;
	}

	.ln-procedure-whychoose__item:last-child {
		padding-bottom: 0;
		border-bottom: none;
	}

	.ln-procedure-whychoose__item-icon {
		flex-shrink: 0;
	}

	.ln-procedure-brands__container {
		padding: 0 20px 45px;
	}

	.ln-procedure-brands__heading {
		gap: 12px;
		margin-bottom: 15px;
	}

	.ln-procedure-brands__heading-line {
		display: none;
	}

	.ln-procedure-brands__title {
		font-size: 14px;
		line-height: 18px;
		letter-spacing: 0.06em;
	}

	.ln-procedure-brands__carousel {
		gap: 10px;
	}

	.ln-procedure-brands__track {
		gap: 5px;
		padding: 0;
	}

	.ln-procedure-brands__item {
		height: 92px;
	}

	.ln-procedure-brands__item img {
		max-width: 160px;
		filter: none;
		opacity: 1;
	}

	.ln-procedure-brands__arrow {
		display: none;
	}

	.ln-procedure-beforeafter__container {
		padding: 0 20px 20px;
	}

	.ln-procedure-beforeafter__heading {
		gap: 12px;
		margin-bottom: 20px;
	}

	.ln-procedure-beforeafter__heading-line {
		display: none;
	}

	.ln-procedure-beforeafter__title {
		font-size: 14px;
		line-height: 18px;
		letter-spacing: 0.06em;
	}

	.ln-procedure-beforeafter__grid {
		grid-template-columns: 1fr;
		gap: 10px;
		margin-bottom: 28px;
	}

	.ln-procedure-beforeafter__card {
		width: 100%;
	}

	.ln-procedure-beforeafter__card .ln-ba-slider {
		height: 150px;
		border-radius: 10px;
	}

	.ln-procedure-beforeafter .ln-ba-slider__label {
		height: 30px;
		padding: 0 8px;
		font-size: 11px;
	}

	.ln-procedure-beforeafter__btn {
		width: 100%;
		justify-content: center;
	}

	.ln-procedure-testimonials__container {
		padding: 30px 20px 45px;
	}

	.ln-procedure-testimonials__heading {
		gap: 12px;
		margin-bottom: 20px;
	}

	.ln-procedure-testimonials__heading-line {
		display: none;
	}

	.ln-procedure-testimonials__title {
		font-size: 14px;
		line-height: 18px;
		letter-spacing: 0.06em;
	}

	.ln-procedure-testimonials__card {
		flex: 0 0 100%;
		padding: 22px 20px;
	}

	.ln-procedure-testimonials__dots {
		margin-top: 20px;
	}

	.ln-procedure-cta__inner {
		padding: 20px 16px;
	}

	.ln-procedure-cta__heading {
		font-size: 20px;
	}

	.ln-procedure-cta__actions {
		flex-direction: column;
	}

	.ln-procedure-cta__btn {
		width: 100%;
	}
}