

/* Start:/local/templates/main/template_styles.css?178853455445670*/
:root {
	--ats-navy: #16294B;
	--ats-navy-2: #1F386A;
	--ats-cream: #FBF8F2;
	--ats-cream-2: #F4EDE1;
	--ats-gold: #B89A5E;
	--ats-gold-2: #C7AE76;
	--ats-ink: #2B2620;
	--ats-ink-2: #3A352D;
	--ats-muted: #5C5447;
	--ats-muted-2: #9A8E78;
	--ats-sand: #F2E7CC;
	--ats-sand-2: #E5D6B4;
	--ats-max: 1280px;
	--ats-pad: clamp(20px, 5vw, 64px);
	--ats-serif: "Cormorant Garamond", Georgia, serif;
	--ats-sans: "Jost", "Segoe UI", sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: var(--ats-sans);
	color: var(--ats-ink);
	background: var(--ats-cream);
	line-height: 1.55;
	overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; }

.ats-page { overflow-x: hidden; background: var(--ats-cream); }

/* Announcement */
.ats-announce {
	background: var(--ats-navy);
	color: #E9DCC0;
	font-size: 12.5px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	text-align: center;
	padding: 9px 16px;
	font-weight: 300;
}

/* Header */
.ats-header {
	position: sticky;
	top: 0;
	z-index: 50;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 18px var(--ats-pad);
	background: rgba(251, 248, 242, 0.86);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid rgba(43, 38, 32, 0.08);
}

.ats-logo {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	color: var(--ats-ink);
}

.ats-logo__mark {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: var(--ats-navy);
	overflow: hidden;
	flex: none;
}

.ats-logo__mark img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ats-logo__name {
	font-family: var(--ats-serif);
	font-style: italic;
	font-size: 22px;
	font-weight: 600;
	line-height: 1;
}

.ats-logo__tag {
	display: block;
	font-size: 10px;
	letter-spacing: 0.42em;
	text-transform: uppercase;
	color: var(--ats-muted-2);
	margin-top: 3px;
	padding-left: 2px;
}

.ats-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: clamp(18px, 2.6vw, 40px);
}

.ats-nav a {
	font-size: 13.5px;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--ats-ink-2);
	transition: color .3s ease;
}

.ats-nav a:hover,
.ats-nav .selected > a { color: var(--ats-gold); }

.ats-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	text-decoration: none;
	font-size: 12.5px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	padding: 13px 26px;
	border-radius: 100px;
	border: none;
	cursor: pointer;
	transition: background .3s ease, transform .3s ease, color .3s ease, border-color .3s ease;
}

.ats-btn--primary {
	background: var(--ats-navy);
	color: var(--ats-sand);
}

.ats-btn--primary:hover {
	background: var(--ats-navy-2);
	transform: translateY(-1px);
}

.ats-btn--cream {
	background: var(--ats-sand);
	color: #1A1813;
	font-weight: 500;
	padding: 17px 38px;
}

.ats-btn--cream:hover {
	background: #fff;
	transform: translateY(-2px);
}

.ats-btn--ghost {
	color: #FBF6EC;
	border: 1px solid rgba(251, 246, 236, 0.5);
	padding: 17px 22px;
}

.ats-btn--ghost:hover { background: rgba(251, 246, 236, 0.12); }

.ats-btn--outline {
	border: 1px solid var(--ats-navy);
	color: var(--ats-navy);
	background: transparent;
	padding: 15px 30px;
}

.ats-btn--outline:hover {
	background: var(--ats-navy);
	color: var(--ats-sand);
}

.ats-burger {
	display: none;
	width: 44px;
	height: 44px;
	border: 1px solid rgba(43, 38, 32, 0.2);
	border-radius: 50%;
	background: transparent;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.ats-burger span {
	display: block;
	width: 16px;
	height: 1.5px;
	background: var(--ats-navy);
	position: relative;
}

.ats-burger span::before,
.ats-burger span::after {
	content: "";
	position: absolute;
	left: 0;
	width: 16px;
	height: 1.5px;
	background: var(--ats-navy);
}

.ats-burger span::before { top: -5px; }
.ats-burger span::after { top: 5px; }

/* Common */
.ats-wrap {
	width: min(100% - (var(--ats-pad) * 2), var(--ats-max));
	margin-inline: auto;
}

.ats-kicker {
	color: var(--ats-gold);
	font-size: 13px;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	margin: 0 0 18px;
}

.ats-kicker--light { color: var(--ats-gold-2); }

.ats-title {
	font-family: var(--ats-serif);
	font-weight: 500;
	line-height: 1.05;
	letter-spacing: -0.01em;
	margin: 0;
}

.ats-title em,
.ats-title i {
	font-style: italic;
	color: var(--ats-gold);
	font-weight: 500;
}

.ats-title--xl { font-size: clamp(48px, 8.5vw, 132px); line-height: 0.92; }
.ats-title--lg { font-size: clamp(34px, 5.4vw, 64px); }
.ats-title--md { font-size: clamp(30px, 4.6vw, 54px); }

.ats-lead {
	font-size: clamp(15px, 1.7vw, 19px);
	font-weight: 300;
	line-height: 1.7;
	margin: 0;
}

.ats-text {
	font-size: 16px;
	font-weight: 300;
	line-height: 1.8;
	color: var(--ats-muted);
	margin: 0;
}

.ats-section {
	padding: clamp(64px, 9vw, 130px) var(--ats-pad);
}

.ats-section--tight {
	padding: clamp(56px, 8vw, 110px) var(--ats-pad);
}

.ats-section--sand { background: var(--ats-cream-2); }
.ats-section--navy {
	background: var(--ats-navy);
	color: #F4ECD8;
}

/* Body correction banner */
.ats-body-banner {
	position: relative;
	overflow: hidden;
	min-height: clamp(420px, 62vw, 560px);
	display: flex;
	align-items: center;
}

.ats-body-banner__media {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.ats-body-banner__img {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: auto;
	width: min(48%, 520px);
	height: 100%;
	object-fit: contain;
	object-position: right bottom;
}

.ats-body-banner__shade {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(22, 41, 75, 1) 0%, rgba(22, 41, 75, 0.92) 42%, rgba(22, 41, 75, 0.55) 72%, rgba(22, 41, 75, 0.35) 100%);
}

.ats-body-banner__content {
	position: relative;
	z-index: 1;
	width: 100%;
}

@media (max-width: 700px) {
	.ats-body-banner {
		min-height: 520px;
		align-items: flex-end;
		padding-bottom: clamp(36px, 8vw, 56px);
	}
	.ats-body-banner__img {
		width: 78%;
		max-width: 360px;
		height: 72%;
		top: auto;
		bottom: 0;
		opacity: 0.55;
	}
	.ats-body-banner__shade {
		background:
			linear-gradient(180deg, rgba(22, 41, 75, 0.2) 0%, rgba(22, 41, 75, 0.75) 45%, rgba(22, 41, 75, 0.96) 100%),
			linear-gradient(90deg, rgba(22, 41, 75, 0.85) 0%, rgba(22, 41, 75, 0.4) 100%);
	}
}

/* Hero studio */
.ats-hero {
	position: relative;
	min-height: 90vh;
	display: flex;
	align-items: flex-end;
	overflow: hidden;
	background: #161c26;
}

.ats-hero__picture {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
}

.ats-hero__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 32%;
}

.ats-hero__shade {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 1;
	background: linear-gradient(180deg, rgba(22,28,38,.30) 0%, rgba(22,28,38,.05) 38%, rgba(30,24,18,.18) 70%, rgba(20,16,12,.62) 100%);
}

.ats-hero__content {
	position: relative;
	z-index: 2;
	width: min(100%, var(--ats-max));
	margin: 0 auto;
	padding: 0 var(--ats-pad) clamp(48px, 7vw, 92px);
	color: #FDFBF6;
}

.ats-hero__content .ats-title i {
	color: #2C190B;
}

.ats-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 36px;
	align-items: center;
}

/* Marquee */
.ats-marquee {
	background: var(--ats-navy);
	color: #E5D6B4;
	overflow: hidden;
	padding: 16px 0;
	white-space: nowrap;
}

.ats-marquee__track {
	display: inline-flex;
	align-items: center;
	animation: atsMarquee 38s linear infinite;
	will-change: transform;
}

.ats-marquee__item {
	font-family: var(--ats-serif);
	font-style: italic;
	font-size: 23px;
	letter-spacing: 0.02em;
	padding: 0 30px;
}

.ats-marquee__dot {
	color: var(--ats-gold);
	font-size: 9px;
}

@keyframes atsMarquee {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

/* Grids */
.ats-about-grid,
.ats-contact-grid,
.ats-school-grid,
.ats-cta-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(36px, 5vw, 76px);
	align-items: center;
	max-width: var(--ats-max);
	margin: 0 auto;
}

@media (min-width: 900px) {
	.ats-about-grid,
	.ats-contact-grid,
	.ats-school-grid,
	.ats-cta-grid { grid-template-columns: 1fr 1fr; }
	.ats-hero-learn { grid-template-columns: 1.1fr 0.9fr !important; }
}

.ats-photo {
	overflow: hidden;
	border-radius: 4px;
}

.ats-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ats-photo--portrait { aspect-ratio: 4/5; }
.ats-photo--square { aspect-ratio: 1/1; }
.ats-photo--card { aspect-ratio: 4/3; border-radius: 6px; }
.ats-photo--tall { aspect-ratio: 3/4; border-radius: 6px; }
.ats-photo--diploma {
	background: #fff;
	padding: 10px;
}
.ats-photo--diploma img {
	object-fit: contain;
	object-position: center;
}
.ats-photo--diploma-wide {
	aspect-ratio: 4 / 3;
	box-shadow: 0 18px 48px rgba(22, 41, 75, 0.1);
}

.ats-badge {
	position: absolute;
	bottom: -26px;
	right: -10px;
	background: var(--ats-navy);
	color: var(--ats-sand);
	padding: 24px 30px;
	border-radius: 4px;
	max-width: 220px;
}

.ats-badge strong {
	display: block;
	font-family: var(--ats-serif);
	font-size: 44px;
	line-height: 1;
	font-weight: 600;
}

.ats-badge span {
	display: block;
	font-size: 12.5px;
	letter-spacing: 0.06em;
	line-height: 1.5;
	margin-top: 8px;
	color: #D9C9A6;
}

.ats-points {
	display: flex;
	flex-wrap: wrap;
	gap: 14px 40px;
	margin-top: 34px;
}

.ats-points__item {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 14px;
	letter-spacing: 0.04em;
}

.ats-points__item i {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--ats-gold);
	flex: none;
}

/* Cards */
.ats-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 18px;
	max-width: var(--ats-max);
	margin: 0 auto;
}

.ats-card {
	background: var(--ats-cream);
	border-radius: 4px;
	padding: 32px 28px;
	border: 1px solid rgba(43, 38, 32, 0.08);
}

.ats-card--service {
	background: var(--ats-cream);
	padding: 0;
	overflow: hidden;
	border-radius: 8px;
}

.ats-card__num {
	font-family: var(--ats-serif);
	font-size: 34px;
	font-weight: 600;
	color: var(--ats-gold);
	margin: 0;
}

.ats-card h3 {
	font-family: var(--ats-serif);
	font-size: clamp(23px, 2.6vw, 30px);
	font-weight: 500;
	line-height: 1.12;
	margin: 0;
}

.ats-card p {
	font-size: 14.5px;
	font-weight: 300;
	line-height: 1.65;
	color: #4A433A;
	margin: 14px 0 0;
}

/* Services list */
/* Services — mockup cards */
.ats-services-wrap {
	max-width: var(--ats-max);
	margin: 0 auto;
}

.ats-services-intro {
	text-align: center;
	max-width: 640px;
	margin: 0 auto clamp(48px, 6vw, 76px);
}

.ats-services-intro .ats-text {
	margin: 22px auto 0;
}

.ats-services-slider {
	margin: 0 calc(-1 * var(--ats-pad));
}

.ats-services-slider__head {
	padding-left: var(--ats-pad);
	padding-right: var(--ats-pad);
}

.ats-services.ats-carousel {
	display: flex;
	gap: 20px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	padding: 6px var(--ats-pad) 22px;
	scroll-padding-left: var(--ats-pad);
	align-items: stretch;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.ats-service {
	flex: 0 0 clamp(260px, 72vw, 300px);
	scroll-snap-align: start;
	background: #fff;
	border-radius: 4px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	min-height: 360px;
	color: #2B2620;
}

.ats-service--navy {
	background: #16294B;
	color: #F4ECD8;
}

.ats-service--sand {
	background: #EDE3D2;
	color: #2B2620;
}

.ats-service__media {
	aspect-ratio: 1 / 1;
	overflow: hidden;
}

.ats-service__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.ats-service__body {
	padding: 26px 24px 28px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.ats-service__tag {
	font-size: 11px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	opacity: 0.6;
	margin-bottom: 12px;
}

.ats-service h3 {
	font-family: var(--ats-serif);
	font-size: 26px;
	font-weight: 600;
	line-height: 1.1;
	margin: 0;
}

.ats-service p {
	margin: 12px 0 0;
	font-size: 13.5px;
	font-weight: 300;
	line-height: 1.65;
	opacity: 0.82;
}

.ats-service__link {
	margin-top: auto;
	padding-top: 20px;
	font-size: 12px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	text-decoration: none;
	color: #B89A5E;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.ats-service--navy .ats-service__link {
	color: #E5D6B4;
}

/* Carousel */
.ats-carousel-head {
	max-width: var(--ats-max);
	margin: 0 auto;
	padding: 0 var(--ats-pad);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 26px;
}

.ats-carousel-head p {
	margin: 0;
	font-size: 12.5px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--ats-muted-2);
}

.ats-carousel-nav {
	display: flex;
	gap: 10px;
}

.ats-carousel-nav button {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: 1px solid rgba(43, 38, 32, 0.22);
	background: transparent;
	color: var(--ats-navy);
	cursor: pointer;
	transition: background .3s ease, color .3s ease;
}

.ats-carousel-nav button:hover {
	background: var(--ats-navy);
	color: var(--ats-sand);
}

.ats-carousel {
	display: flex;
	gap: 24px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	padding: 6px var(--ats-pad) 22px;
	scroll-padding-left: var(--ats-pad);
	align-items: stretch;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.ats-carousel::-webkit-scrollbar {
	width: 0;
	height: 0;
	display: none;
}

.ats-program {
	flex: 0 0 clamp(288px, 84vw, 384px);
	scroll-snap-align: start;
	background: var(--ats-cream);
	border: 1px solid rgba(43, 38, 32, 0.12);
	border-radius: 8px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.ats-program__media {
	position: relative;
	aspect-ratio: 4/3;
	overflow: hidden;
}

.ats-program__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ats-program__num {
	position: absolute;
	top: 14px;
	left: 18px;
	font-family: var(--ats-serif);
	font-size: 58px;
	font-weight: 600;
	color: #F4ECD8;
	line-height: 1;
	text-shadow: 0 2px 20px rgba(0,0,0,.45);
}

.ats-program__body {
	padding: 28px 26px 30px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.ats-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.ats-chip {
	background: #F4EDE1;
	border-radius: 100px;
	padding: 7px 14px;
	font-size: 12.5px;
	color: var(--ats-ink-2);
}

/* Reviews — screenshot grid (3 × 2 on desktop) */
.ats-reviews-wrap {
	max-width: 1180px;
	margin: 0 auto;
}

.ats-reviews-intro {
	text-align: center;
	max-width: 640px;
	margin: 0 auto clamp(44px, 6vw, 68px);
}

.ats-reviews-intro .ats-text {
	margin: 22px auto 0;
}

.ats-reviews-shots {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}

@media (min-width: 640px) {
	.ats-reviews-shots { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1000px) {
	.ats-reviews-shots { grid-template-columns: repeat(3, 1fr); }
}

.ats-review-shot {
	margin: 0;
	border-radius: 10px;
	overflow: hidden;
	background: #fff;
	border: 1px solid rgba(43, 38, 32, 0.08);
	box-shadow: 0 16px 40px -30px rgba(22, 28, 38, 0.5);
}

.ats-review-shot img {
	display: block;
	width: 100%;
	height: auto;
}

/* Text review cards (school page) */
.ats-reviews {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 20px;
	max-width: var(--ats-max);
	margin: 0 auto;
}

.ats-review {
	background: var(--ats-cream-2);
	border: 1px solid rgba(43, 38, 32, 0.08);
	border-radius: 8px;
	padding: 32px 30px;
}

.ats-review__head {
	display: flex;
	align-items: center;
	gap: 14px;
}

.ats-review__avatar {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--ats-serif);
	font-size: 20px;
	font-weight: 600;
	color: #F4ECD8;
	flex: none;
}

.ats-stars {
	color: #C7A34F;
	letter-spacing: 2px;
	margin-top: 18px;
}

/* Learning hero */
.ats-hero-learn-wrap {
	position: relative;
	padding: clamp(72px, 11vw, 150px) var(--ats-pad) clamp(60px, 8vw, 110px);
	background: var(--ats-navy);
	color: #F4ECD8;
	overflow: hidden;
}

.ats-hero-learn {
	position: relative;
	z-index: 2;
	max-width: var(--ats-max);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(40px, 5vw, 72px);
	align-items: center;
	margin-top: 26px;
}

.ats-stats {
	display: flex;
	flex-wrap: wrap;
	gap: 36px;
	margin-top: 40px;
}

.ats-stats strong {
	display: block;
	font-family: var(--ats-serif);
	font-size: clamp(32px, 3.6vw, 46px);
	font-weight: 600;
	line-height: 1;
}

.ats-stats span {
	display: block;
	font-size: 13px;
	letter-spacing: 0.06em;
	color: #B6AB90;
	margin-top: 8px;
	max-width: 200px;
}

.ats-mosaic {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.ats-mosaic__tall {
	grid-row: span 2;
	overflow: hidden;
	border-radius: 6px;
}

.ats-gallery {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 14px;
	max-width: var(--ats-max);
	margin: 0 auto;
}

/* Contact / CTA */
.ats-phone {
	font-family: var(--ats-serif);
	font-size: clamp(30px, 4vw, 44px);
	color: var(--ats-ink);
	text-decoration: none;
	font-weight: 600;
}

.ats-phone:hover { color: var(--ats-gold); }

.ats-hours {
	background: var(--ats-cream-2);
	border-radius: 4px;
	padding: clamp(28px, 4vw, 44px);
}

.ats-hours__row {
	display: flex;
	justify-content: space-between;
	padding: 9px 0;
	font-size: 14.5px;
}

.ats-cta-box {
	background: var(--ats-navy);
	border-radius: 6px;
	padding: clamp(36px, 5vw, 72px);
	color: #F4ECD8;
	max-width: var(--ats-max);
	margin: 0 auto;
}

.ats-cta-links a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	text-decoration: none;
	font-size: 13.5px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 17px 26px;
	border-radius: 100px;
	margin-top: 12px;
}

.ats-cta-links a.is-fill {
	background: var(--ats-sand);
	color: var(--ats-navy);
	font-weight: 500;
}

.ats-cta-links a.is-line {
	border: 1px solid rgba(231, 221, 196, 0.4);
	color: #F4ECD8;
}

/* Footer */
.ats-footer {
	background: var(--ats-navy);
	color: #C9BEA6;
	padding: clamp(48px, 6vw, 72px) var(--ats-pad) 40px;
}

.ats-footer__top {
	max-width: var(--ats-max);
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 32px;
	align-items: flex-start;
}

.ats-footer__nav {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
}

.ats-footer__nav a,
.ats-footer a {
	font-size: 13px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-decoration: none;
	color: #C9BEA6;
	transition: color .3s ease;
}

.ats-footer__nav a:hover { color: #F4ECD8; }

.ats-footer__meta {
	text-align: right;
	font-size: 13.5px;
	font-weight: 300;
	line-height: 1.7;
}

.ats-footer__meta a {
	text-transform: none;
	letter-spacing: 0;
}

.ats-footer__bottom {
	max-width: var(--ats-max);
	margin: 36px auto 0;
	padding-top: 24px;
	border-top: 1px solid rgba(255,255,255,.1);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 12px;
	font-size: 12px;
	color: #807759;
}

@media (max-width: 860px) {
	.ats-nav,
	.ats-header .ats-btn { display: none; }
	.ats-burger { display: inline-flex; }
	.ats-header.is-open .ats-nav {
		display: block;
		position: absolute;
		left: var(--ats-pad);
		right: var(--ats-pad);
		top: calc(100% + 8px);
		background: var(--ats-cream);
		border: 1px solid rgba(43,38,32,.08);
		border-radius: 8px;
		padding: 18px;
		box-shadow: 0 12px 40px rgba(22,41,75,.08);
	}
	.ats-header.is-open .ats-nav ul {
		flex-direction: column;
		gap: 14px;
	}
	.ats-footer__meta { text-align: left; }
}

/* Before / After — as in Aesthetic Tech studio mockup */
.ats-ba-wrap {
	max-width: var(--ats-max);
	margin: 0 auto;
}

.ats-ba-intro {
	text-align: center;
	max-width: 640px;
	margin: 0 auto clamp(44px, 6vw, 68px);
}

.ats-ba-intro .ats-text {
	margin: 22px auto 0;
	max-width: 640px;
}

.ats-ba-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 22px;
}

.ats-ba {
	background: #fff;
	border-radius: 6px;
	overflow: hidden;
	box-shadow: 0 18px 44px -32px rgba(22, 28, 38, .4);
}

.ats-ba__pair {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2px;
	background: #EDE3D2;
}

.ats-ba__shot {
	position: relative;
	aspect-ratio: 3 / 4;
	overflow: hidden;
}

.ats-ba__shot img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.ats-ba__label {
	position: absolute;
	top: 12px;
	left: 12px;
	font-size: 10.5px;
	letter-spacing: .18em;
	text-transform: uppercase;
	padding: 5px 11px;
	border-radius: 100px;
	color: #F4ECD8;
	pointer-events: none;
}

.ats-ba__label--before {
	background: rgba(20, 16, 12, .62);
	backdrop-filter: blur(4px);
}

.ats-ba__label--after {
	background: #16294B;
}

.ats-ba__meta {
	padding: 18px 20px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.ats-ba__zone {
	font-family: var(--ats-serif);
	font-size: 19px;
	font-weight: 600;
	color: #2B2620;
}

.ats-ba__method {
	font-size: 11.5px;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: #B89A5E;
	text-align: right;
}

.ats-ba-note {
	text-align: center;
	font-size: 12.5px;
	color: #9A8E78;
	font-weight: 300;
	margin: clamp(32px, 4vw, 44px) auto 0;
	max-width: 720px;
	line-height: 1.6;
}

/* Partners */
.ats-partners-wrap {
	max-width: var(--ats-max);
	margin: 0 auto;
}

.ats-partners-intro {
	text-align: center;
	max-width: 640px;
	margin: 0 auto clamp(40px, 5vw, 56px);
}

.ats-partners-intro .ats-text {
	margin: 22px auto 0;
}

.ats-partners {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(16px, 3vw, 28px);
	align-items: stretch;
}

@media (min-width: 900px) {
	.ats-partners {
		grid-template-columns: repeat(2, minmax(220px, 320px));
		justify-content: center;
	}
}

.ats-partner {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 140px;
	padding: clamp(28px, 4vw, 40px) clamp(24px, 3vw, 36px);
	background: #fff;
	border: 1px solid rgba(43, 38, 32, 0.08);
	border-radius: 8px;
	box-shadow: 0 16px 40px -30px rgba(22, 28, 38, 0.45);
	text-decoration: none;
}

.ats-partner img {
	display: block;
	width: auto;
	max-width: 100%;
	max-height: 72px;
	object-fit: contain;
}

/* ========== Landing: /pohudenie/ ========== */
.ats-lp-hero {
	position: relative;
	min-height: 92vh;
	display: flex;
	align-items: flex-end;
	overflow: hidden;
}

.ats-lp-hero__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 40%;
}

.ats-lp-hero__shade {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(115deg, rgba(16, 22, 36, .72) 0%, rgba(16, 22, 36, .28) 52%, rgba(20, 16, 12, .45) 100%),
		linear-gradient(180deg, rgba(22, 28, 38, .2) 0%, rgba(20, 16, 12, .7) 100%);
}

.ats-lp-hero__content {
	position: relative;
	z-index: 2;
	width: min(100%, var(--ats-max));
	margin: 0 auto;
	padding: 0 var(--ats-pad) clamp(48px, 7vw, 88px);
	color: #FDFBF6;
}

.ats-lp-hero__content .ats-title i { color: #E5D6B4; }

.ats-lp-offer {
	margin-top: 28px;
	padding: 18px 22px;
	border: 1px solid rgba(229, 214, 180, .35);
	border-radius: 6px;
	background: rgba(22, 41, 75, .42);
	backdrop-filter: blur(8px);
	max-width: 420px;
}

.ats-lp-offer__price {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 12px 16px;
}

.ats-lp-offer__old {
	font-size: 15px;
	color: #B8AD96;
	text-decoration: line-through;
	font-weight: 300;
}

.ats-lp-offer__price strong {
	font-family: var(--ats-serif);
	font-size: clamp(34px, 5vw, 48px);
	font-weight: 600;
	line-height: 1;
	color: #F4ECD8;
}

.ats-lp-offer__badge {
	font-size: 11px;
	letter-spacing: .16em;
	text-transform: uppercase;
	background: var(--ats-sand);
	color: #1A1813;
	padding: 6px 12px;
	border-radius: 100px;
	font-weight: 500;
}

.ats-lp-offer__note {
	margin: 12px 0 0;
	font-size: 13px;
	font-weight: 300;
	color: #D6CCB6;
}

.ats-lp-hooks {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
	max-width: var(--ats-max);
	margin: 0 auto;
}

@media (min-width: 700px) {
	.ats-lp-hooks { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1100px) {
	.ats-lp-hooks { grid-template-columns: repeat(4, 1fr); }
}

.ats-lp-hook {
	background: #fff;
	border: 1px solid rgba(43, 38, 32, .08);
	border-radius: 6px;
	padding: 28px 24px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	min-height: 150px;
}

.ats-lp-hook strong {
	font-family: var(--ats-serif);
	font-size: 26px;
	font-weight: 600;
	line-height: 1.15;
	color: var(--ats-navy);
}

.ats-lp-hook span {
	font-size: 14px;
	font-weight: 300;
	line-height: 1.55;
	color: var(--ats-muted);
}

.ats-lp-why-list {
	display: grid;
	gap: 18px;
	margin-top: 32px;
}

.ats-lp-why-item {
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr);
	gap: 4px 14px;
	align-items: start;
}

.ats-lp-why-item__num {
	grid-row: 1 / span 2;
	font-family: var(--ats-serif);
	font-size: 28px;
	font-weight: 600;
	color: var(--ats-gold);
	line-height: 1;
}

.ats-lp-why-item strong {
	grid-column: 2;
	display: block;
	font-family: var(--ats-serif);
	font-size: 22px;
	font-weight: 600;
	color: var(--ats-ink);
}

.ats-lp-why-item p {
	grid-column: 2;
	margin: 0;
	font-size: 14.5px;
	font-weight: 300;
	line-height: 1.65;
	color: var(--ats-muted);
}

.ats-lp-packages {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
	max-width: var(--ats-max);
	margin: 0 auto;
}

@media (min-width: 720px) {
	.ats-lp-packages { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1100px) {
	.ats-lp-packages { grid-template-columns: repeat(4, 1fr); }
}

.ats-lp-pack {
	background: rgba(255, 255, 255, .05);
	border: 1px solid rgba(229, 214, 180, .22);
	border-radius: 8px;
	padding: 28px 22px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	color: #F4ECD8;
}

.ats-lp-pack--featured {
	background: rgba(229, 214, 180, .12);
	border-color: rgba(229, 214, 180, .55);
}

.ats-lp-pack__zone {
	font-size: 11px;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--ats-gold-2);
}

.ats-lp-pack h3 {
	font-family: var(--ats-serif);
	font-size: 26px;
	font-weight: 600;
	line-height: 1.15;
	margin: 0;
}

.ats-lp-pack p {
	margin: 0;
	font-size: 13.5px;
	font-weight: 300;
	line-height: 1.6;
	color: #D6CCB6;
	flex: 1;
}

.ats-lp-pack__price {
	display: flex;
	align-items: baseline;
	gap: 12px;
	margin-top: 8px;
}

.ats-lp-pack__old {
	font-size: 14px;
	text-decoration: line-through;
	color: #8C8369;
	font-weight: 300;
}

.ats-lp-pack__price strong {
	font-family: var(--ats-serif);
	font-size: 34px;
	font-weight: 600;
	line-height: 1;
}

.ats-lp-pack__note {
	font-size: 12px;
	letter-spacing: .06em;
	color: #A89C82;
	margin-bottom: 8px;
}

.ats-lp-pack .ats-btn { width: 100%; }

.ats-lp-steps {
	list-style: none;
	margin: clamp(40px, 5vw, 64px) auto 0;
	padding: 0;
	max-width: 860px;
	display: grid;
	gap: 14px;
}

@media (min-width: 800px) {
	.ats-lp-steps { grid-template-columns: repeat(2, 1fr); }
}

.ats-lp-steps li {
	display: grid;
	grid-template-columns: 52px 1fr;
	gap: 14px;
	align-items: start;
	background: #fff;
	border: 1px solid rgba(43, 38, 32, .08);
	border-radius: 6px;
	padding: 22px 20px;
}

.ats-lp-steps li span {
	font-family: var(--ats-serif);
	font-size: 28px;
	font-weight: 600;
	color: var(--ats-gold);
	line-height: 1;
}

.ats-lp-steps li p {
	margin: 0;
	font-size: 15px;
	font-weight: 300;
	line-height: 1.6;
	color: var(--ats-muted);
}

.ats-lp-split {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(40px, 6vw, 72px);
	max-width: var(--ats-max);
	margin: 0 auto;
}

@media (min-width: 900px) {
	.ats-lp-split { grid-template-columns: 1fr 1fr; }
}

.ats-lp-checklist,
.ats-lp-numbered,
.ats-lp-after {
	list-style: none;
	margin: 28px 0 0;
	padding: 0;
	display: grid;
	gap: 12px;
}

.ats-lp-checklist li {
	position: relative;
	padding: 14px 16px 14px 42px;
	background: #fff;
	border-radius: 6px;
	border: 1px solid rgba(43, 38, 32, .07);
	font-size: 15px;
	font-weight: 300;
	color: var(--ats-ink-2);
}

.ats-lp-checklist li::before {
	content: "";
	position: absolute;
	left: 16px;
	top: 50%;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--ats-gold);
	transform: translateY(-50%);
}

.ats-lp-numbered li {
	display: grid;
	grid-template-columns: 28px 1fr;
	gap: 12px;
	align-items: start;
	font-size: 15px;
	font-weight: 300;
	color: var(--ats-ink-2);
	padding: 10px 0;
	border-bottom: 1px solid rgba(43, 38, 32, .08);
}

.ats-lp-numbered li span {
	font-family: var(--ats-serif);
	font-weight: 600;
	color: var(--ats-gold);
}

.ats-lp-after {
	margin-top: 32px;
	grid-template-columns: 1fr;
}

@media (min-width: 700px) {
	.ats-lp-after { grid-template-columns: 1fr 1fr; }
}

.ats-lp-after li {
	padding: 18px 20px;
	border: 1px solid rgba(229, 214, 180, .22);
	border-radius: 6px;
	font-size: 14.5px;
	font-weight: 300;
	line-height: 1.55;
	color: #E5D6B4;
}

.ats-lp-quiz {
	max-width: 760px;
	background: #fff;
	border: 1px solid rgba(43, 38, 32, .08);
	border-radius: 10px;
	padding: clamp(28px, 4vw, 48px);
	box-shadow: 0 24px 60px -40px rgba(22, 41, 75, .35);
}

.ats-lp-quiz__intro { margin-bottom: 28px; }

.ats-lp-quiz__progress {
	height: 3px;
	background: rgba(43, 38, 32, .08);
	border-radius: 100px;
	overflow: hidden;
}

.ats-lp-quiz__progress span {
	display: block;
	height: 100%;
	background: var(--ats-navy);
	transition: width .35s ease;
}

.ats-lp-quiz__step-label {
	margin: 12px 0 22px;
	font-size: 12px;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--ats-muted-2);
}

.ats-lp-quiz__panel { display: none; }
.ats-lp-quiz__panel.is-active { display: block; }

.ats-lp-quiz__q {
	font-family: var(--ats-serif);
	font-size: clamp(24px, 3.4vw, 32px);
	font-weight: 500;
	line-height: 1.2;
	margin: 0 0 22px;
	color: var(--ats-navy);
}

.ats-lp-quiz__opts {
	display: grid;
	gap: 10px;
}

.ats-lp-quiz__opts button {
	text-align: left;
	background: var(--ats-cream);
	border: 1px solid rgba(43, 38, 32, .1);
	border-radius: 8px;
	padding: 16px 18px;
	cursor: pointer;
	font-size: 15px;
	font-weight: 300;
	color: var(--ats-ink);
	transition: border-color .25s ease, background .25s ease, transform .25s ease;
}

.ats-lp-quiz__opts button:hover,
.ats-lp-quiz__opts button.is-selected {
	border-color: var(--ats-navy);
	background: #fff;
	transform: translateY(-1px);
}

.ats-lp-quiz__nav {
	margin-top: 22px;
	display: flex;
	gap: 12px;
}

.ats-lp-form {
	display: grid;
	gap: 14px;
}

.ats-lp-form label {
	display: grid;
	gap: 8px;
}

.ats-lp-form label span {
	font-size: 11px;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--ats-muted-2);
}

.ats-lp-form input {
	width: 100%;
	border: 1px solid rgba(43, 38, 32, .14);
	border-radius: 8px;
	background: var(--ats-cream);
	padding: 14px 16px;
	font: inherit;
	font-weight: 300;
	color: var(--ats-ink);
	outline: none;
	transition: border-color .25s ease;
}

.ats-lp-form input:focus { border-color: var(--ats-navy); }

.ats-lp-form__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 6px;
}

.ats-lp-form__hint {
	margin: 4px 0 0;
	font-size: 12px;
	font-weight: 300;
	color: var(--ats-muted-2);
	line-height: 1.5;
}

.ats-lp-sticky {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 60;
	padding: 12px var(--ats-pad) calc(12px + env(safe-area-inset-bottom));
	background: rgba(22, 41, 75, .94);
	backdrop-filter: blur(12px);
	border-top: 1px solid rgba(229, 214, 180, .2);
	transform: translateY(110%);
	transition: transform .35s ease;
}

.ats-lp-sticky.is-visible { transform: translateY(0); }

.ats-lp-sticky__inner {
	width: min(100%, var(--ats-max));
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.ats-lp-sticky__text {
	display: flex;
	flex-direction: column;
	gap: 2px;
	color: #F4ECD8;
	min-width: 0;
}

.ats-lp-sticky__text strong {
	font-family: var(--ats-serif);
	font-size: 18px;
	font-weight: 600;
}

.ats-lp-sticky__text span {
	font-size: 12.5px;
	font-weight: 300;
	color: #D6CCB6;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.ats-lp-sticky__actions {
	display: flex;
	gap: 10px;
	flex: none;
}

.ats-lp-sticky .ats-btn { padding: 12px 18px; }

.ats-page:has(.ats-lp-sticky) { padding-bottom: 88px; }

@media (max-width: 640px) {
	.ats-lp-sticky__text span { display: none; }
	.ats-lp-sticky .ats-btn--ghost { display: none; }
}

/* Express accent + complex detail */
.ats-lp-express {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(36px, 5vw, 72px);
	align-items: center;
	max-width: var(--ats-max);
	margin: 0 auto;
}

@media (min-width: 900px) {
	.ats-lp-express { grid-template-columns: 0.92fr 1.08fr; }
}

.ats-lp-express__visual {
	position: relative;
}

.ats-lp-express__photo {
	border-radius: 6px;
	box-shadow: 0 28px 60px -36px rgba(22, 41, 75, .45);
}

.ats-lp-express__badge {
	position: absolute;
	bottom: -18px;
	right: clamp(8px, 3vw, 24px);
	background: var(--ats-navy);
	color: var(--ats-sand);
	padding: 20px 24px;
	border-radius: 4px;
	max-width: 180px;
	z-index: 2;
}

.ats-lp-express__badge strong {
	display: block;
	font-family: var(--ats-serif);
	font-size: 40px;
	line-height: 1;
	font-weight: 600;
}

.ats-lp-express__badge span {
	display: block;
	font-size: 12px;
	letter-spacing: 0.04em;
	line-height: 1.45;
	margin-top: 8px;
	color: #D9C9A6;
}

.ats-lp-express__hooks {
	list-style: none;
	margin: 28px 0 0;
	padding: 0;
	display: grid;
	gap: 12px;
}

.ats-lp-express__hooks li {
	display: grid;
	gap: 2px;
	padding: 16px 18px;
	background: #fff;
	border: 1px solid rgba(43, 38, 32, .08);
	border-radius: 6px;
	border-left: 3px solid var(--ats-gold);
}

.ats-lp-express__hooks strong {
	font-family: var(--ats-serif);
	font-size: 22px;
	font-weight: 600;
	color: var(--ats-navy);
	line-height: 1.2;
}

.ats-lp-express__hooks span {
	font-size: 13.5px;
	font-weight: 300;
	color: var(--ats-muted);
}

.ats-lp-express__cta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

.ats-lp-express__fine {
	margin: 18px 0 0;
	font-size: 12px;
	font-weight: 300;
	color: var(--ats-muted-2);
	line-height: 1.5;
	max-width: 420px;
}

.ats-lp-complex {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(36px, 5vw, 72px);
	align-items: center;
	max-width: var(--ats-max);
	margin: 0 auto;
}

@media (min-width: 900px) {
	.ats-lp-complex { grid-template-columns: 0.9fr 1.1fr; }
}

.ats-lp-complex__media .ats-photo {
	border-radius: 6px;
	box-shadow: 0 24px 50px -34px rgba(22, 41, 75, .4);
}

.ats-lp-complex__price {
	margin-top: 28px;
	padding: 18px 20px;
	background: var(--ats-cream-2);
	border-radius: 6px;
	border: 1px solid rgba(43, 38, 32, .08);
	display: flex;
	flex-direction: column;
	gap: 4px;
	max-width: 360px;
}

.ats-lp-complex__price span {
	font-family: var(--ats-serif);
	font-size: 36px;
	font-weight: 600;
	color: var(--ats-navy);
	line-height: 1;
}

.ats-lp-complex__price em {
	font-style: normal;
	font-size: 13px;
	font-weight: 300;
	color: var(--ats-muted);
	letter-spacing: 0.04em;
}

/* ========== Landing: /obuchenie/lp/ ========== */
.ats-lp-programs-band .ats-carousel-head p {
	color: #D6CCB6;
}

.ats-lp-programs-band .ats-carousel-nav button {
	border-color: rgba(229, 214, 180, .35);
	color: #F4ECD8;
	background: transparent;
}

.ats-lp-programs-band .ats-carousel-nav button:hover {
	background: #E5D6B4;
	color: var(--ats-navy);
	border-color: #E5D6B4;
}

.ats-lp-hero .ats-lp-offer__price strong {
	font-size: clamp(22px, 3.2vw, 30px);
	line-height: 1.15;
}

.ats-lp-hero--school .ats-lp-hero__bg {
	object-position: 62% 28%;
}

.ats-lp-hero--school .ats-lp-hero__shade {
	background:
		linear-gradient(115deg, rgba(12, 16, 28, .62) 0%, rgba(12, 16, 28, .28) 48%, rgba(16, 12, 10, .35) 100%),
		linear-gradient(180deg, rgba(12, 16, 28, .22) 0%, rgba(12, 14, 22, .55) 100%);
}

/* ========== Landing: /lifting/ ========== */
.ats-lp-hero--lifting .ats-lp-hero__bg {
	object-position: 70% 40%;
}

.ats-lp-hero--lifting .ats-lp-hero__shade {
	background:
		linear-gradient(90deg, rgba(22,41,75,.95) 0%, rgba(22,41,75,.78) 42%, rgba(22,41,75,.4) 72%, rgba(22,41,75,.28) 100%),
		linear-gradient(180deg, rgba(22,41,75,.2) 0%, transparent 35%, rgba(22,41,75,.4) 100%);
}

.ats-lp-tabs {
	display: inline-flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 22px 0 8px;
	padding: 4px;
	border-radius: 999px;
	background: rgba(255,255,255,.08);
	border: 1px solid rgba(255,255,255,.14);
}

.ats-lp-tabs--light {
	background: rgba(22,41,75,.06);
	border-color: rgba(22,41,75,.1);
}

.ats-lp-tabs__btn {
	appearance: none;
	border: 0;
	cursor: pointer;
	padding: 10px 18px;
	border-radius: 999px;
	font-size: 12.5px;
	letter-spacing: .08em;
	text-transform: uppercase;
	font-weight: 400;
	color: #D6CCB6;
	background: transparent;
	transition: background .2s ease, color .2s ease;
}

.ats-lp-tabs--light .ats-lp-tabs__btn {
	color: var(--ats-muted);
}

.ats-lp-tabs__btn.is-active {
	background: #F4ECD8;
	color: var(--ats-navy);
}

.ats-lp-tabs--light .ats-lp-tabs__btn.is-active {
	background: var(--ats-navy);
	color: #F4ECD8;
}

.ats-lp-packages--single {
	grid-template-columns: minmax(0, 420px);
	justify-content: center;
}

.ats-lp-packages--three {
	grid-template-columns: 1fr;
}

@media (min-width: 900px) {
	.ats-lp-packages--three { grid-template-columns: repeat(3, 1fr); }
}

.ats-ba-grid--lift {
	grid-template-columns: 1fr;
}

@media (min-width: 800px) {
	.ats-ba-grid--lift { grid-template-columns: 1fr 1fr; }
}

.ats-ba--single .ats-ba__shot--full {
	aspect-ratio: 4 / 5;
	overflow: hidden;
	border-radius: 6px;
	position: relative;
}

.ats-ba--single .ats-ba__shot--full img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
}

.ats-ba--wide {
	grid-column: 1 / -1;
}

.ats-ba__shot--wide {
	aspect-ratio: 16 / 9;
}

.ats-lp-steps--compact {
	margin-top: 28px;
	grid-template-columns: 1fr;
	gap: 14px;
}

.ats-lp-steps--compact li {
	padding: 16px 18px;
}

.ats-lp-complex--after {
	max-width: var(--ats-max);
	margin: 0 auto;
}

.ats-lp-complex--after .ats-lp-after {
	margin-top: 28px;
}

@media (max-width: 899px) {
	.ats-lp-complex--after {
		display: grid;
		gap: 28px;
	}
	.ats-lp-complex--after .ats-lp-complex__media {
		order: -1;
	}
}

/* ========== Direct LP type scale: /lifting/ ========== */
.ats-page--lift .ats-announce {
	font-size: 13.5px;
	letter-spacing: 0.14em;
	padding: 11px 16px;
}

.ats-page--lift .ats-kicker {
	font-size: 14px;
	letter-spacing: 0.28em;
	margin-bottom: 20px;
}

.ats-page--lift .ats-title--xl {
	font-size: clamp(52px, 9.2vw, 118px);
	line-height: 0.94;
}

.ats-page--lift .ats-title--lg {
	font-size: clamp(40px, 6.2vw, 76px);
	line-height: 1.02;
}

.ats-page--lift .ats-title--md {
	font-size: clamp(34px, 5.2vw, 60px);
}

.ats-page--lift .ats-lead {
	font-size: clamp(18px, 2.1vw, 23px);
	line-height: 1.65;
}

.ats-page--lift .ats-text {
	font-size: 18px;
	line-height: 1.75;
}

.ats-page--lift .ats-btn {
	font-size: 13.5px;
	letter-spacing: 0.12em;
	padding: 16px 28px;
}

.ats-page--lift .ats-lp-hero {
	min-height: clamp(560px, 78vh, 760px);
}

.ats-page--lift .ats-lp-hero__content {
	padding-top: clamp(48px, 8vw, 88px);
	padding-bottom: clamp(48px, 8vw, 88px);
}

.ats-page--lift .ats-lp-offer {
	margin-top: 32px;
	padding: 22px 26px;
	max-width: 480px;
}

.ats-page--lift .ats-lp-offer__old {
	font-size: 18px;
}

.ats-page--lift .ats-lp-offer__price strong,
.ats-page--lift .ats-lp-hero .ats-lp-offer__price strong {
	font-size: clamp(42px, 6.2vw, 62px);
}

.ats-page--lift .ats-lp-offer__badge {
	font-size: 12.5px;
	padding: 8px 14px;
}

.ats-page--lift .ats-lp-offer__note {
	font-size: 15px;
	margin-top: 14px;
}

.ats-page--lift .ats-lp-tabs__btn {
	font-size: 13.5px;
	padding: 12px 22px;
}

.ats-page--lift .ats-lp-express__hooks strong {
	font-size: 20px;
}

.ats-page--lift .ats-lp-express__hooks span {
	font-size: 16px;
}

.ats-page--lift .ats-lp-express__badge strong {
	font-size: 48px;
}

.ats-page--lift .ats-lp-express__badge span {
	font-size: 14px;
}

.ats-page--lift .ats-lp-hook strong {
	font-size: clamp(20px, 2.2vw, 26px);
}

.ats-page--lift .ats-lp-hook span {
	font-size: 16px;
	line-height: 1.55;
}

.ats-page--lift .ats-lp-pack {
	padding: clamp(28px, 3.5vw, 40px);
}

.ats-page--lift .ats-lp-pack__zone {
	font-size: 13px;
}

.ats-page--lift .ats-lp-pack h3 {
	font-size: clamp(28px, 3.2vw, 36px);
}

.ats-page--lift .ats-lp-pack p {
	font-size: 16.5px;
	line-height: 1.6;
}

.ats-page--lift .ats-lp-pack__old {
	font-size: 17px;
}

.ats-page--lift .ats-lp-pack__price strong {
	font-size: clamp(34px, 4vw, 44px);
}

.ats-page--lift .ats-lp-pack__note {
	font-size: 14px;
}

.ats-page--lift .ats-lp-steps li span {
	font-size: 18px;
}

.ats-page--lift .ats-lp-steps li p {
	font-size: 17px;
	line-height: 1.55;
}

.ats-page--lift .ats-lp-checklist li,
.ats-page--lift .ats-lp-numbered li,
.ats-page--lift .ats-lp-after li {
	font-size: 17px;
	line-height: 1.55;
}

.ats-page--lift .ats-lp-quiz__q {
	font-size: clamp(24px, 3.2vw, 34px);
}

.ats-page--lift .ats-lp-quiz__opts button {
	font-size: 17px;
	padding: 16px 18px;
}

.ats-page--lift .ats-lp-form label span {
	font-size: 14px;
}

.ats-page--lift .ats-lp-form input {
	font-size: 18px;
	padding: 16px 18px;
}

.ats-page--lift .ats-phone {
	font-size: clamp(34px, 4.6vw, 52px);
}

.ats-page--lift .ats-lp-sticky__text strong {
	font-size: 17px;
}

.ats-page--lift .ats-lp-sticky__text span {
	font-size: 14px;
}

.ats-page--lift .ats-ba__zone {
	font-size: 22px;
}

.ats-page--lift .ats-ba__method {
	font-size: 13.5px;
}

.ats-page--lift .ats-ba-note {
	font-size: 14px;
}

.ats-page--lift .ats-section {
	padding: clamp(40px, 5vw, 72px) var(--ats-pad);
}

.ats-lp-results-soon {
	margin: 40px auto 0;
	max-width: 520px;
	padding: clamp(36px, 5vw, 56px) 28px;
	border: 1px dashed rgba(43, 38, 32, 0.22);
	border-radius: 8px;
	background: rgba(251, 248, 242, 0.7);
}

.ats-lp-results-soon strong {
	display: block;
	font-family: var(--ats-serif);
	font-size: clamp(28px, 4vw, 40px);
	font-weight: 500;
	color: var(--ats-navy);
	font-style: italic;
}

.ats-lp-results-soon span {
	display: block;
	margin-top: 12px;
	font-size: 16px;
	font-weight: 300;
	color: var(--ats-muted);
	line-height: 1.55;
}

/* Fix: grid/flex display overrides native [hidden] on lift panels */
[data-ats-lift-panel][hidden],
[data-ats-lift-panel].is-lift-hidden {
	display: none !important;
}

.ats-lp-proof {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(28px, 4vw, 48px);
	align-items: center;
	max-width: var(--ats-max);
	margin: 0 auto clamp(28px, 4vw, 44px);
}

@media (min-width: 860px) {
	.ats-lp-proof {
		grid-template-columns: minmax(220px, 320px) 1fr;
	}
}

.ats-lp-proof__photo {
	position: relative;
	overflow: hidden;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 16px 40px rgba(22, 41, 75, 0.12);
	aspect-ratio: 4 / 5;
	max-width: 320px;
	margin-inline: auto;
	width: 100%;
}

.ats-lp-proof__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	display: block;
}

.ats-lp-proof__labels {
	position: absolute;
	inset: 12px 12px auto 12px;
	display: flex;
	justify-content: space-between;
	pointer-events: none;
}

.ats-lp-proof__labels span {
	font-size: 11px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	background: rgba(22, 41, 75, 0.82);
	color: #F4ECD8;
	padding: 6px 10px;
	border-radius: 999px;
}

.ats-lp-proof__copy .ats-kicker {
	margin-bottom: 14px;
}

.ats-lp-hero-sand {
	padding-top: clamp(18px, 2.5vw, 28px) !important;
	padding-bottom: clamp(28px, 4vw, 48px) !important;
}

.ats-lp-proof--hero {
	margin-bottom: 0;
	width: min(100% - (var(--ats-pad) * 2), var(--ats-max));
	align-items: start;
	gap: clamp(20px, 3vw, 40px);
}

.ats-lp-proof--hero .ats-lp-proof__copy {
	min-width: 0;
}

.ats-lp-proof--hero .ats-lp-proof__copy .ats-kicker {
	margin-bottom: 10px;
}

.ats-lp-proof--hero .ats-lp-proof__copy .ats-text {
	max-width: 36em;
}

.ats-lp-proof--hero .ats-lp-offer--light {
	margin-top: 18px;
	max-width: 100%;
}

.ats-lp-proof--hero .ats-lp-proof__photo {
	max-width: 340px;
	aspect-ratio: 4 / 5;
	margin-inline: 0 0;
	justify-self: end;
	width: 100%;
}

@media (max-width: 899px) {
	.ats-lp-proof--hero .ats-lp-proof__photo {
		order: -1;
		margin-inline: auto;
		max-width: 280px;
	}
}

@media (min-width: 900px) {
	.ats-lp-proof--hero {
		grid-template-columns: minmax(0, 1.35fr) minmax(240px, 340px);
		gap: clamp(28px, 4vw, 56px);
		align-items: center;
	}
}

.ats-lp-offer--light {
	background: #fff;
	border: 1px solid rgba(43, 38, 32, 0.12);
	box-shadow: 0 10px 28px rgba(22, 41, 75, 0.06);
	backdrop-filter: none;
}

.ats-lp-offer--light .ats-lp-offer__price strong {
	color: var(--ats-navy);
}

.ats-lp-offer--light .ats-lp-offer__old {
	color: var(--ats-muted-2);
}

.ats-lp-offer--light .ats-lp-offer__note {
	color: var(--ats-muted);
}

.ats-page--lift .ats-lp-hero-sand .ats-title--lg {
	font-size: clamp(34px, 5.2vw, 58px);
	line-height: 1.05;
	max-width: none;
}

.ats-page--lift .ats-lp-hero-sand {
	padding-bottom: clamp(12px, 2vw, 20px) !important;
}

.ats-page--lift .ats-lp-tech.ats-section--tight {
	padding-top: clamp(12px, 2vw, 24px) !important;
}

.ats-page--lift .ats-marquee {
	margin: 0;
}

.ats-page--lift .ats-lp-tech {
	padding-bottom: clamp(16px, 2.5vw, 28px) !important;
}

.ats-page--lift #hooks.ats-section--tight {
	padding-top: clamp(16px, 2.5vw, 28px) !important;
	padding-bottom: clamp(40px, 5vw, 72px) !important;
}

.ats-page--lift .ats-lp-express {
	align-items: start;
}

/* End */
/* /local/templates/main/template_styles.css?178853455445670 */
