@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
	--page: #f5efe4;
	--paper: #fffaf1;
	--paper-2: #eee1cf;
	--ink: #231b18;
	--ink-2: #4d403a;
	--muted: #77685f;
	--line: rgba(35, 27, 24, .14);
	--line-strong: rgba(35, 27, 24, .22);
	--accent: #9f623e;
	--accent-dark: #6f3d27;
	--accent-soft: #ddc0a4;
	--olive: #74735d;
	--dark: #18120f;
	--white: #ffffff;
	--font-base: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
	--font-display: 'Cormorant Garamond', Georgia, serif;
	--container: 1180px;
	--header-h: 82px;
	--radius: 28px;
	--radius-lg: 44px;
	--shadow: 0 28px 80px rgba(48, 32, 22, .14);
	--shadow-dark: 0 26px 70px rgba(16, 10, 7, .22);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
	font-family: var(--font-base);
	font-size: 16px;
	line-height: 1.65;
	color: var(--ink);
	background:
		linear-gradient(90deg, rgba(35,27,24,.035) 1px, transparent 1px),
		linear-gradient(rgba(35,27,24,.035) 1px, transparent 1px),
		radial-gradient(circle at 10% 0%, rgba(221,192,164,.65), transparent 30%),
		radial-gradient(circle at 92% 15%, rgba(116,115,93,.22), transparent 32%),
		var(--page);
	background-size: 44px 44px, 44px 44px, auto, auto, auto;
	overflow-x: clip;
}
body::before {
	content: '';
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: -1;
	background: linear-gradient(180deg, rgba(255,250,241,.65), rgba(255,250,241,.18) 42%, rgba(35,27,24,.04));
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input { font: inherit; }
button { border: 0; background: none; cursor: pointer; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 22px; }
.section { padding: clamp(78px, 8vw, 126px) 0; position: relative; }
.section-kicker {
	font-size: .76rem;
	font-weight: 800;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--accent-dark);
	margin-bottom: 14px;
}
.section-kicker--center { text-align: center; }
.section-title {
	font-family: var(--font-display);
	font-size: clamp(2.8rem, 6vw, 6rem);
	line-height: .88;
	font-weight: 700;
	letter-spacing: -.045em;
	text-align: center;
	max-width: 950px;
	margin: 0 auto 44px;
}
.section-title--left { text-align: left; margin-left: 0; margin-right: 0; }
.section-note {
	color: var(--muted);
	font-size: 1.02rem;
	max-width: 520px;
}
.section-head { margin-bottom: 42px; }
.section-head--split {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(280px, .7fr);
	align-items: end;
	gap: 34px;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 15px 25px;
	border-radius: 999px;
	font-size: .86rem;
	font-weight: 800;
	letter-spacing: .04em;
	text-transform: uppercase;
	white-space: nowrap;
	transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.button--primary {
	background: var(--dark);
	color: var(--paper);
	box-shadow: 0 18px 48px rgba(24,18,15,.22);
}
.button--primary:hover { transform: translateY(-3px); box-shadow: 0 24px 64px rgba(24,18,15,.28); }
.button--ghost {
	border: 1px solid var(--line-strong);
	background: rgba(255,250,241,.55);
	color: var(--ink);
}
.button--ghost:hover { transform: translateY(-3px); border-color: rgba(159,98,62,.45); color: var(--accent-dark); }
.button--mini { min-height: 42px; padding: 11px 18px; font-size: .75rem; background: var(--accent); color: var(--white); }

.site-header {
	position: sticky;
	top: 0;
	z-index: 60;
	min-height: var(--header-h);
	background: rgba(245,239,228,.82);
	backdrop-filter: blur(18px);
	border-bottom: 1px solid var(--line);
}
.site-header__inner {
	min-height: var(--header-h);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 22px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.brand__mark {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	font-family: var(--font-display);
	font-size: 1.55rem;
	font-weight: 700;
	line-height: 1;
	color: var(--paper);
	background: radial-gradient(circle at 30% 20%, #c28b65, var(--accent-dark));
	box-shadow: 0 16px 34px rgba(111,61,39,.25);
}
.brand__text {
	font-size: .96rem;
	font-weight: 900;
	letter-spacing: .12em;
	text-transform: uppercase;
}
.site-nav { display: flex; align-items: center; justify-content: center; gap: 6px; }
.site-nav__link {
	padding: 11px 13px;
	border-radius: 999px;
	color: var(--ink-2);
	font-size: .86rem;
	font-weight: 800;
	transition: background .2s ease, color .2s ease;
}
.site-nav__link:hover { background: rgba(159,98,62,.1); color: var(--accent-dark); }
.site-header__actions { display: flex; align-items: center; gap: 12px; }
.site-header__phone { font-size: .86rem; font-weight: 900; color: var(--accent-dark); white-space: nowrap; }
.menu-toggle { display: none; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line-strong); }
.menu-toggle span { display: block; width: 18px; height: 2px; margin: 4px auto; background: var(--ink); border-radius: 99px; transition: transform .2s ease, opacity .2s ease; }
.menu-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.hero { min-height: calc(100vh - var(--header-h)); padding: clamp(54px, 7vw, 92px) 0 clamp(72px, 8vw, 116px); }
.hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.02fr) minmax(380px, .9fr);
	gap: clamp(34px, 6vw, 84px);
	align-items: center;
}
.hero__copy { position: relative; z-index: 2; }
.hero__copy::before {
	content: '';
	position: absolute;
	left: -38px;
	top: -28px;
	width: 118px;
	height: 118px;
	border-radius: 50%;
	border: 1px solid rgba(159,98,62,.28);
	z-index: -1;
}
.hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-size: .78rem;
	font-weight: 900;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--accent-dark);
	margin-bottom: 18px;
}
.hero__eyebrow::before {
	content: '';
	width: 44px;
	height: 1px;
	background: var(--accent);
}
.hero__title {
	font-family: var(--font-display);
	font-size: clamp(4rem, 9vw, 8.7rem);
	line-height: .78;
	font-weight: 700;
	letter-spacing: -.06em;
	max-width: 760px;
	margin-bottom: 28px;
}
.hero__text {
	max-width: 680px;
	font-size: clamp(1rem, 1.4vw, 1.18rem);
	color: var(--ink-2);
	margin-bottom: 26px;
}
.hero__badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.hero__badges span {
	padding: 9px 12px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: rgba(255,250,241,.54);
	font-size: .82rem;
	font-weight: 800;
	color: var(--muted);
}
.hero__buttons { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__visual { position: relative; }
.hero__image-card {
	position: relative;
	padding: 14px;
	background: var(--paper);
	border: 1px solid rgba(35,27,24,.08);
	border-radius: 999px 999px 42px 42px;
	box-shadow: var(--shadow);
	transform: rotate(1.5deg);
}
.hero__image-card::before {
	content: '';
	position: absolute;
	inset: 30px 30px auto auto;
	width: 126px;
	height: 126px;
	border-radius: 50%;
	background: rgba(159,98,62,.2);
	filter: blur(20px);
	z-index: 0;
}
.hero__image-card img {
	position: relative;
	z-index: 1;
	width: 100%;
	height: clamp(500px, 64vw, 680px);
	object-fit: cover;
	border-radius: 999px 999px 30px 30px;
	filter: saturate(.9) contrast(1.03);
}
.hero__location-card {
	position: absolute;
	z-index: 3;
	left: -34px;
	bottom: 38px;
	width: min(280px, 76%);
	padding: 20px;
	border-radius: 24px;
	background: rgba(24,18,15,.9);
	color: var(--paper);
	box-shadow: var(--shadow-dark);
	backdrop-filter: blur(12px);
	transform: rotate(-1.5deg);
}
.hero__location-card span { display: block; color: var(--accent-soft); font-size: .75rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 5px; }
.hero__location-card strong { display: block; font-family: var(--font-display); font-size: 1.45rem; line-height: 1; margin-bottom: 8px; }
.hero__location-card a { color: #fff; font-weight: 900; }
.hero__stats {
	position: relative;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	margin: 18px 28px 0;
}
.hero__stat {
	padding: 16px 14px;
	border-radius: 20px;
	background: rgba(255,250,241,.72);
	border: 1px solid var(--line);
	text-align: center;
	box-shadow: 0 14px 38px rgba(48,32,22,.08);
}
.hero__stat strong { display: block; font-family: var(--font-display); font-size: 2rem; line-height: 1; }
.hero__stat span { display: block; color: var(--muted); font-size: .78rem; font-weight: 800; }

.intro__grid {
	display: grid;
	grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
	gap: clamp(32px, 6vw, 86px);
	align-items: start;
}
.intro__panel {
	padding: clamp(28px, 4vw, 46px);
	border-radius: var(--radius-lg);
	background: var(--dark);
	color: var(--paper);
	box-shadow: var(--shadow-dark);
	position: relative;
	overflow: hidden;
}
.intro__panel::after {
	content: '';
	position: absolute;
	right: -40px;
	bottom: -60px;
	width: 210px;
	height: 210px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(221,192,164,.24), transparent 62%);
}
.intro__lead { font-size: 1.12rem; color: #f1e2d1; margin-bottom: 28px; position: relative; z-index: 1; }
.check-list { display: grid; gap: 14px; position: relative; z-index: 1; }
.check-list li {
	display: grid;
	grid-template-columns: 28px 1fr;
	gap: 12px;
	align-items: start;
	color: #d8c8b9;
	font-weight: 700;
}
.check-list li::before {
	content: '•';
	width: 28px;
	height: 28px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: var(--accent-soft);
	color: var(--dark);
	font-size: 1.3rem;
	line-height: 1;
}

.locations { background: linear-gradient(180deg, rgba(255,250,241,.55), rgba(255,250,241,.16)); }
.location-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.location-card {
	position: relative;
	min-height: 320px;
	padding: clamp(28px, 4vw, 44px);
	border-radius: var(--radius-lg);
	background: var(--paper);
	border: 1px solid rgba(35,27,24,.09);
	box-shadow: var(--shadow);
	overflow: hidden;
}
.location-card::after {
	content: '';
	position: absolute;
	right: -54px;
	bottom: -70px;
	width: 220px;
	height: 220px;
	border: 1px solid rgba(159,98,62,.24);
	border-radius: 50%;
}
.location-card__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--dark);
	color: var(--paper);
	font-family: var(--font-display);
	font-size: 1.55rem;
	font-weight: 700;
	margin-bottom: 34px;
}
.location-card h3 { font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 4rem); line-height: .9; letter-spacing: -.04em; max-width: 430px; margin-bottom: 18px; }
.location-card__address { color: var(--accent-dark); font-weight: 900; font-size: 1.05rem; margin-bottom: 12px; }
.location-card p:not(.location-card__address) { color: var(--muted); max-width: 480px; }
.text-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: 24px;
	font-weight: 900;
	color: var(--accent-dark);
}
.text-link::after { content: '→'; transition: transform .18s ease; }
.text-link:hover::after { transform: translateX(4px); }

.format-grid {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 18px;
}
.format-card {
	grid-column: span 4;
	min-height: 260px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 28px;
	border-radius: 34px;
	background: rgba(255,250,241,.72);
	border: 1px solid var(--line);
	transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.format-card:nth-child(1), .format-card:nth-child(6) { grid-column: span 5; }
.format-card:nth-child(2), .format-card:nth-child(5) { grid-column: span 7; }
.format-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); background: var(--paper); }
.format-card__tag {
	align-self: flex-start;
	padding: 8px 11px;
	border-radius: 999px;
	background: rgba(159,98,62,.1);
	color: var(--accent-dark);
	font-size: .72rem;
	font-weight: 900;
	letter-spacing: .1em;
	text-transform: uppercase;
	margin-bottom: 34px;
}
.format-card h3 { font-family: var(--font-display); font-size: 2.25rem; line-height: .96; letter-spacing: -.035em; margin-bottom: 14px; }
.format-card p { color: var(--muted); }

.price { background: var(--dark); color: var(--paper); }
.price::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 12% 10%, rgba(221,192,164,.16), transparent 26%),
		linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px),
		linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
	background-size: auto, 48px 48px, 48px 48px;
	pointer-events: none;
}
.price__grid {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr);
	gap: clamp(34px, 5vw, 72px);
	align-items: start;
}
.price .section-title, .price .section-kicker { color: var(--paper); }
.price .section-note { color: #cbb9aa; margin-bottom: 26px; }
.price-cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.price-card {
	padding: 26px;
	border-radius: 30px;
	background: rgba(255,250,241,.08);
	border: 1px solid rgba(255,250,241,.14);
}
.price-card h3 { font-family: var(--font-display); font-size: 2rem; line-height: .95; margin-bottom: 18px; }
.price-card strong { display: block; color: var(--accent-soft); font-size: 1.05rem; margin-bottom: 10px; }
.price-card p { color: #cbb9aa; }

.gallery__subtitle { max-width: 720px; margin: -26px auto 36px; text-align: center; color: var(--muted); }
.slider {
	position: relative;
	overflow: hidden;
	border-radius: var(--radius-lg);
	background: var(--dark);
	box-shadow: var(--shadow-dark);
}
.slider__track { display: flex; transition: transform .35s ease; }
.slider__slide { min-width: 100%; padding: 14px; }
.slider__slide img {
	width: 100%;
	height: clamp(380px, 60vw, 680px);
	object-fit: cover;
	border-radius: 34px;
	filter: sepia(.12) contrast(1.04);
}
.slider__btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background: rgba(255,250,241,.88);
	color: var(--dark);
	font-size: 1.35rem;
	font-weight: 900;
	box-shadow: 0 18px 34px rgba(0,0,0,.2);
}
.slider__btn--prev { left: 28px; }
.slider__btn--next { right: 28px; }
.slider__dots { position: absolute; left: 0; right: 0; bottom: 30px; display: flex; justify-content: center; gap: 8px; }
.slider__dot { width: 9px; height: 9px; border-radius: 999px; background: rgba(255,250,241,.5); transition: width .2s ease, background .2s ease; }
.slider__dot.active { width: 32px; background: var(--paper); }

.process-line {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	border-top: 1px solid var(--line-strong);
	border-bottom: 1px solid var(--line-strong);
}
.process-step { padding: 32px 24px; border-right: 1px solid var(--line); }
.process-step:last-child { border-right: 0; }
.process-step span { display: block; font-family: var(--font-display); font-size: 3.2rem; line-height: 1; color: rgba(159,98,62,.45); margin-bottom: 18px; }
.process-step h3 { font-size: 1.02rem; font-weight: 900; margin-bottom: 10px; }
.process-step p { color: var(--muted); }

.tips__box {
	display: grid;
	grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
	gap: 38px;
	align-items: start;
	padding-top: clamp(34px, 5vw, 58px);
	padding-bottom: clamp(34px, 5vw, 58px);
	border-radius: var(--radius-lg);
	background: var(--paper);
	box-shadow: var(--shadow);
}
.tips__list { display: grid; gap: 13px; counter-reset: tips; }
.tips__list li {
	counter-increment: tips;
	display: grid;
	grid-template-columns: 46px 1fr;
	gap: 14px;
	align-items: center;
	padding: 16px;
	border-radius: 22px;
	background: rgba(245,239,228,.78);
	border: 1px solid var(--line);
	font-weight: 700;
	color: var(--ink-2);
}
.tips__list li::before {
	content: counter(tips, decimal-leading-zero);
	width: 46px;
	height: 46px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: var(--dark);
	color: var(--paper);
	font-family: var(--font-display);
	font-size: 1.25rem;
	line-height: 1;
}

.faq__grid { display: grid; grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr); gap: clamp(34px, 5vw, 76px); }
.faq__list { display: grid; gap: 12px; }
.faq__item { border: 1px solid var(--line); border-radius: 24px; background: rgba(255,250,241,.66); overflow: hidden; }
.faq__question {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 22px 24px;
	color: var(--ink);
	text-align: left;
	font-weight: 900;
}
.faq__question span {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: var(--dark);
	color: var(--paper);
	flex: 0 0 auto;
	transition: transform .2s ease;
}
.faq__question[aria-expanded="true"] span { transform: rotate(45deg); }
.faq__answer { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq__answer.open { max-height: 260px; }
.faq__answer p { padding: 0 24px 24px; color: var(--muted); }

.cta { padding-top: 0; }
.cta__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr);
	gap: 28px;
	align-items: stretch;
	padding: clamp(28px, 5vw, 60px);
	border-radius: var(--radius-lg);
	background: var(--dark);
	color: var(--paper);
	box-shadow: var(--shadow-dark);
	position: relative;
	overflow: hidden;
}
.cta__grid::before {
	content: '';
	position: absolute;
	left: -90px;
	top: -120px;
	width: 330px;
	height: 330px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(221,192,164,.26), transparent 65%);
}
.cta__content, .cta__form { position: relative; z-index: 1; }
.cta__content h2 {
	font-family: var(--font-display);
	font-size: clamp(3rem, 6vw, 6rem);
	line-height: .82;
	letter-spacing: -.055em;
	margin-bottom: 20px;
}
.cta__content p { max-width: 620px; color: #d8c8b9; }
.cta__contacts { display: grid; gap: 8px; margin-top: 30px; }
.cta__contacts a { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1; color: var(--paper); }
.cta__contacts span { color: var(--accent-soft); font-weight: 800; }
.cta__form {
	display: grid;
	align-content: center;
	gap: 12px;
	padding: 22px;
	border-radius: 32px;
	background: rgba(255,250,241,.08);
	border: 1px solid rgba(255,250,241,.14);
}
.cta__input {
	width: 100%;
	min-height: 56px;
	padding: 16px 18px;
	border: 1px solid rgba(255,250,241,.16);
	border-radius: 18px;
	outline: none;
	background: rgba(255,250,241,.08);
	color: var(--paper);
}
.cta__input::placeholder { color: rgba(255,250,241,.54); }
.cta__input:focus { border-color: var(--accent-soft); box-shadow: 0 0 0 4px rgba(221,192,164,.12); }
.cta__form .button--primary { background: var(--paper); color: var(--dark); box-shadow: none; }
.cta__privacy { color: #bca999; font-size: .82rem; }
.cta__msg { min-height: 22px; font-weight: 900; }

.footer {
	background: #110c0a;
	color: #cab9a8;
	padding-top: 58px;
}
.footer__grid { display: grid; grid-template-columns: minmax(0, 1.45fr) repeat(3, minmax(0, .75fr)); gap: 34px; }
.footer .brand__text, .footer h3 { color: var(--paper); }
.footer__brand p { max-width: 440px; margin-top: 18px; }
.footer__col { display: grid; align-content: start; gap: 9px; }
.footer__col h3 { font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 7px; }
.footer__col a { color: var(--paper); font-weight: 800; }
.footer__col a:hover { color: var(--accent-soft); }
.footer__requisites span { font-size: .9rem; }
.footer__bottom { margin-top: 44px; border-top: 1px solid rgba(255,250,241,.11); padding: 18px 0; font-size: .86rem; }

@media (max-width: 1080px) {
	.site-nav {
		position: fixed;
		left: 18px;
		right: 18px;
		top: calc(var(--header-h) + 10px);
		display: grid;
		gap: 4px;
		padding: 14px;
		border-radius: 24px;
		background: rgba(255,250,241,.96);
		border: 1px solid var(--line);
		box-shadow: var(--shadow);
		opacity: 0;
		pointer-events: none;
		transform: translateY(-10px);
		transition: opacity .2s ease, transform .2s ease;
	}
	.site-nav.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
	.site-nav__link { padding: 13px 14px; }
	.menu-toggle { display: block; }
	.site-header__phone { display: none; }
	.hero__grid, .intro__grid, .price__grid, .faq__grid, .cta__grid, .tips__box { grid-template-columns: 1fr; }
	.hero { min-height: auto; }
	.hero__visual { max-width: 640px; }
	.price-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.process-line { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.process-step:nth-child(2) { border-right: 0; }
	.process-step:nth-child(1), .process-step:nth-child(2) { border-bottom: 1px solid var(--line); }
	.footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
	.container { padding: 0 16px; }
	.section { padding: 70px 0; }
	.section-head--split { grid-template-columns: 1fr; align-items: start; }
	.section-title { font-size: clamp(2.8rem, 14vw, 5.2rem); margin-bottom: 30px; }
	.site-header__actions .button { display: none; }
	.brand__mark { width: 38px; height: 38px; }
	.brand__text { font-size: .82rem; letter-spacing: .09em; }
	.hero { padding-top: 44px; }
	.hero__title { font-size: clamp(3.6rem, 19vw, 6.2rem); }
	.hero__image-card { border-radius: 220px 220px 30px 30px; transform: none; }
	.hero__image-card img { height: 430px; border-radius: 200px 200px 22px 22px; }
	.hero__location-card { left: 12px; right: 12px; bottom: 20px; width: auto; }
	.hero__stats { margin: 12px 0 0; }
	.location-grid, .price-cards { grid-template-columns: 1fr; }
	.format-grid { grid-template-columns: 1fr; }
	.format-card, .format-card:nth-child(1), .format-card:nth-child(2), .format-card:nth-child(5), .format-card:nth-child(6) { grid-column: auto; min-height: auto; }
	.process-line { grid-template-columns: 1fr; border-bottom: 0; }
	.process-step { border-right: 0; border-bottom: 1px solid var(--line); }
	.process-step:nth-child(2) { border-bottom: 1px solid var(--line); }
	.slider__slide img { height: 430px; }
	.slider__btn { width: 46px; height: 46px; }
	.slider__btn--prev { left: 16px; }
	.slider__btn--next { right: 16px; }
	.cta__grid { border-radius: 34px; padding: 28px; }
	.cta__form { padding: 16px; }
	.footer__grid { grid-template-columns: 1fr; }
}

@media (max-width: 460px) {
	.hero__buttons { display: grid; }
	.button { width: 100%; }
	.hero__badges span { width: 100%; text-align: center; }
	.hero__stats { grid-template-columns: 1fr; }
	.location-card, .intro__panel, .tips__box { border-radius: 30px; }
	.cta__contacts a { font-size: 2rem; }
}
