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

:root {
	--bg: #ffffff;
	--bg-soft: #ffffff;
	--surface: rgba(255, 255, 255, 0.92);
	--surface-strong: rgba(255, 255, 255, 0.98);
	--text: #111518;
	--muted: #3a4550;
	--line: rgba(92, 147, 185, 0.14);
	--line-strong: rgba(92, 147, 185, 0.22);
	--accent: #5b90b7;
	--accent-soft: #dcebfa;
	--accent-warm: #9fc7e6;
	--dark: #13202a;
	--white: #ffffff;
	--radius-lg: 32px;
	--radius-md: 22px;
	--radius-sm: 16px;
	--shadow: 0 24px 60px rgba(16, 21, 22, 0.12);
	--container: min(1180px, calc(100vw - 48px));
	--copy: min(620px, 100%);
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 80px;
}

body {
	margin: 0;
	background: var(--bg);
	color: var(--text);
	font-family: "Manrope", "Segoe UI", sans-serif;
	line-height: 1.6;
}

img {
	display: block;
	max-width: 100%;
}

a {
	color: inherit;
	text-decoration: none;
}

button,
input,
textarea {
	font: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	font-family: "Cormorant Garamond", Georgia, serif;
	font-weight: 400;
	line-height: 1.08;
	letter-spacing: -0.03em;
}

p {
	margin: 0;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-main {
	overflow: clip;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 20;
	background: rgba(250, 253, 255, 0.88);
	backdrop-filter: blur(16px);
	border-bottom: 1px solid rgba(92, 147, 185, 0.12);
	box-shadow: 0 10px 28px rgba(91, 144, 183, 0.08);
}

.site-header__inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 28px;
	width: var(--container);
	margin: 0 auto;
	box-sizing: border-box;
	padding: 10px 0;
	color: var(--text);
}

.site-header.is-scrolled .site-header__inner {
	background: transparent;
}

.site-brand {
	display: inline-grid;
	gap: 4px;
}

.site-brand__name {
	font-size: 1.15rem;
	font-weight: 800;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: 0.12em;
}

.site-brand__label {
	font-size: 0.75rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(29, 34, 37, 0.56);
}

.site-nav {
	display: flex;
	justify-content: center;
	gap: 24px;
	font-size: 0.96rem;
}

.site-nav a {
	color: rgba(29, 34, 37, 0.76);
	transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
	color: var(--accent);
}

.site-header__actions {
	display: flex;
	align-items: center;
	gap: 16px;
}

.site-header__phone {
	font-weight: 700;
	white-space: nowrap;
}

.site-header__phone-mobile {
	display: none;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(91, 144, 183, 0.12);
	color: var(--accent);
	transition: background 180ms ease;
}

.site-header__phone-mobile:hover {
	background: rgba(91, 144, 183, 0.22);
}

.site-header__toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(29, 34, 37, 0.08);
	cursor: pointer;
}

.site-header__toggle span {
	display: block;
	width: 18px;
	height: 2px;
	border-radius: 999px;
	background: var(--text);
	transition: transform 250ms ease, opacity 250ms ease;
}

.site-header__toggle span + span {
	margin-top: 5px;
}

body.nav-open .site-header__toggle span:first-child {
	transform: translateY(3.5px) rotate(45deg);
}

body.nav-open .site-header__toggle span:last-child {
	transform: translateY(-3.5px) rotate(-45deg);
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 54px;
	padding: 0 26px;
	border: 1px solid transparent;
	border-radius: 999px;
	background: var(--accent);
	color: var(--white);
	font-size: 0.95rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	line-height: 1;
	text-align: center;
	text-decoration: none;
	box-shadow: 0 12px 28px rgba(46, 87, 88, 0.18);
	transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 14px 32px rgba(46, 87, 88, 0.24);
}

.button--ghost {
	background: rgba(238, 247, 255, 0.96);
	border-color: rgba(91, 144, 183, 0.24);
	color: var(--accent);
	box-shadow: 0 10px 24px rgba(91, 144, 183, 0.12);
}

.button--secondary {
	background: rgba(238, 247, 255, 0.94);
	border-color: rgba(91, 144, 183, 0.24);
	color: var(--text);
	box-shadow: 0 10px 26px rgba(91, 144, 183, 0.12);
}

.section {
	padding: 110px 0;
}

.section__shell {
	width: var(--container);
	margin: 0 auto;
}

.section__shell--narrow {
	max-width: 780px;
}

.section-kicker,
.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--accent);
}

.section-kicker::before,
.eyebrow::before {
	content: "";
	width: 30px;
	height: 1px;
	background: currentColor;
}

.section-heading {
	display: grid;
	gap: 20px;
	max-width: 760px;
	margin-bottom: 50px;
}

.section-heading h2,
.story__intro h2,
.story__content h2,
.contact__intro h2,
.benefits__intro h2,
.hero h1,
.section--fallback h1 {
	font-size: clamp(1.8rem, 4.5vw, 3.2rem);
}

.section-heading p,
.story__content p,
.contact__intro > p,
.section--fallback p,
.hero__lead,
.contact-strip p,
.service-item__excerpt,
.offer-card__excerpt,
.benefit-item p,
.process-step p,
.review-card p,
.rich-text p {
	color: var(--muted);
	font-size: clamp(1.02rem, 1.5vw, 1.12rem);
	line-height: 1.7;
}

.hero {
	position: relative;
	display: flex;
	align-items: flex-start;
	min-height: 760px;
	padding: 64px 0 88px;
	color: var(--text);
	overflow: visible;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 1.30) 0%, rgba(250, 253, 255, 1.20) 50%, rgba(234, 244, 252, 0.90) 100%),
		var(--hero-image) center/cover no-repeat;
}

.hero::before {
	content: "";
	position: absolute;
	inset: auto auto 5rem 8%;
	width: 16rem;
	aspect-ratio: 1;
	border: 1px solid rgba(91, 144, 183, 0.16);
	border-radius: 50%;
}

.hero::after {
	content: "";
	position: absolute;
	right: 8%;
	top: 22%;
	width: 11rem;
	aspect-ratio: 1;
	border: 1px solid rgba(91, 144, 183, 0.16);
	border-radius: 50%;
}

.hero__overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
		radial-gradient(circle at 20% 20%, rgba(190, 223, 245, 0.32), transparent 22rem);
}

.hero__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
	gap: 48px;
	align-items: end;
	width: var(--container);
	margin: 0 auto;
}

.hero__content {
	display: grid;
	gap: 28px;
	max-width: 680px;
}

.hero__lead {
	max-width: 560px;
	color: rgba(29, 34, 37, 0.78);
	font-size: 1.1rem;
}

.hero__photo {
	display: none;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.hero__metrics {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	margin-top: 18px;
	padding: 18px 20px;
	border: 1px solid rgba(91, 144, 183, 0.24);
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.32);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	box-shadow: 0 10px 26px rgba(91, 144, 183, 0.025);
	transform: translate3d(0, var(--scroll-pull-y, 0px), 0);
	will-change: transform;
}

.hero__metrics div {
	padding-top: 0;
	border-top: 0;
}

.hero__metrics span {
	display: block;
	margin-bottom: 7px;
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	color: var(--text);
}

.hero__metrics p {
	color: rgba(17, 21, 24, 0.88);
	font-size: 0.94rem;
}

.hero__frame {
	display: flex;
	justify-content: flex-end;
	padding-bottom: 52px;
}

.hero__frame-card {
	position: relative;
	width: min(420px, 100%);
	padding: 32px;
	border: 1px solid rgba(91, 144, 183, 0.24);
	border-radius: var(--radius-lg);
	background: rgba(255, 255, 255, 0.32);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	box-shadow: 0 12px 32px rgba(91, 144, 183, 0.03);
	transform: translate3d(0, var(--scroll-pull-y, 0px), 0);
	will-change: transform;
}

.hero__frame-card::after {
	content: "";
	position: absolute;
	inset: 16px;
	border: 1px solid rgba(91, 144, 183, 0.16);
	border-radius: 24px;
	pointer-events: none;
}

.hero__frame-card > p {
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(17, 21, 24, 0.82);
}

.hero__frame-card h2 {
	margin-top: 14px;
	font-size: clamp(2rem, 3vw, 3rem);
}

.hero__frame-card ul {
	display: grid;
	gap: 14px;
	margin-top: 26px;
}

.hero__frame-card li {
	position: relative;
	padding-left: 24px;
	color: rgba(17, 21, 24, 0.9);
}

.hero__frame-card li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.68em;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--accent-warm);
	box-shadow: 0 0 0 5px rgba(193, 145, 94, 0.16);
}

.contact-strip {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	width: var(--container);
	margin: -56px auto 0;
	padding: 22px 28px;
	border: 1px solid rgba(91, 144, 183, 0.24);
	border-radius: 26px;
	background: rgba(255, 255, 255, 0.38);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	box-shadow: 0 10px 28px rgba(91, 144, 183, 0.025);
	position: relative;
	z-index: 2;
	transform: translate3d(0, var(--scroll-pull-y, 0px), 0);
	will-change: transform;
}

.contact-strip span {
	display: block;
	margin-bottom: 8px;
	font-size: 0.74rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--accent);
}

.contact-strip a {
	text-decoration: underline;
	text-decoration-color: rgba(46, 87, 88, 0.22);
	text-underline-offset: 0.26em;
}

.story.section {
	padding-top: 56px;
	padding-bottom: 100px;
}

.story__shell {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	grid-template-areas:
		"media intro"
		"media content";
	column-gap: 56px;
	row-gap: 22px;
	align-items: start;
}

.story__intro {
	grid-area: intro;
	display: grid;
	gap: 16px;
}

.story__media {
	grid-area: media;
	position: relative;
}

.story__media::before {
	content: "";
	position: absolute;
	inset: -14px -14px auto auto;
	width: 120px;
	height: 120px;
	border: 1px solid var(--line-strong);
	border-radius: 50%;
}

.story__media img {
	width: 100%;
	min-height: 560px;
	object-fit: cover;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
}

.story__content {
	grid-area: content;
	display: grid;
	gap: 22px;
}

.rich-text {
	display: grid;
	gap: 14px;
}

.story__facts {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	margin-top: 8px;
}

.story__facts div {
	padding: 22px;
	border-top: 1px solid var(--line);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0));
}

.story__facts span {
	display: block;
	margin-bottom: 12px;
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--accent-warm);
}

.services__list {
	display: grid;
	border-top: 1px solid var(--line);
}

.service-item {
	display: grid;
	grid-template-columns: 92px minmax(240px, 300px) minmax(0, 1fr);
	gap: 26px;
	align-items: center;
	padding: 28px 0;
	border-bottom: 1px solid var(--line);
}

.service-item__index {
	font-size: clamp(2.4rem, 3vw, 3.2rem);
	font-family: "Cormorant Garamond", Georgia, serif;
	color: rgba(46, 87, 88, 0.42);
}

.service-item__media {
	overflow: hidden;
	border: 1px solid rgba(91, 144, 183, 0.16);
	border-radius: 26px;
	background: linear-gradient(180deg, rgba(248, 252, 255, 0.98), rgba(234, 244, 252, 0.9));
	box-shadow: 0 16px 30px rgba(91, 144, 183, 0.08);
}

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

.service-item__body {
	display: grid;
	gap: 10px;
	max-width: 760px;
}

.service-item h3,
.offer-card h3,
.benefit-item h3,
.process-step h3 {
	font-size: clamp(1.8rem, 2.6vw, 2.4rem);
}

.services .rich-text p,
.offers .rich-text p {
	color: var(--text);
}

.chief {
	padding-top: 72px;
}

.chief-card {
	display: grid;
	grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
	gap: 34px;
	align-items: stretch;
	padding: 26px;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.98)),
		radial-gradient(circle at top left, rgba(91, 144, 183, 0.12), transparent 14rem);
	box-shadow: 0 18px 42px rgba(91, 144, 183, 0.08);
}

.chief-card__media img,
.team-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 26px;
	box-shadow: 0 18px 40px rgba(91, 144, 183, 0.12);
}

.chief-card__media img {
	min-height: 540px;
}

.chief-card__content {
	display: grid;
	align-content: start;
	gap: 16px;
}

.chief-card__content h3,
.team-card__body h3 {
	font-size: clamp(2rem, 3vw, 3rem);
}

.chief-card__position {
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: none;
	color: var(--accent);
}

.team-card__name {
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: none;
	color: var(--accent);
}

.team-card__position {
	font-size: 0.95rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--accent);
}

.chief-card__lead,
.team-card__excerpt {
	font-size: 1.06rem;
	color: var(--text);
}

.tag-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 4px;
}

.tag-list li {
	display: inline-flex;
	align-items: center;
	min-height: 38px;
	padding: 0 16px;
	border: 1px solid rgba(91, 144, 183, 0.18);
	border-radius: 999px;
	background: rgba(220, 235, 250, 0.42);
	color: var(--text);
	font-size: 0.88rem;
	font-weight: 700;
}

.team {
	padding-top: 24px;
}

.team__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.team-card {
	display: grid;
	grid-template-columns: minmax(180px, 0.62fr) minmax(0, 1fr);
	gap: 20px;
	padding: 20px;
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	background: rgba(255, 255, 255, 0.92);
	box-shadow: 0 14px 30px rgba(91, 144, 183, 0.08);
}

.team-card__media img {
	min-height: 250px;
}

.team-card__body {
	display: grid;
	align-content: start;
	gap: 12px;
}

.offers__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.offers__grid .offer-card:last-child:nth-child(3n + 1) {
	grid-column: 1 / -1;
}

.offer-card {
	position: relative;
	display: grid;
	gap: 16px;
	padding: 28px;
	min-height: 320px;
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 255, 0.98)),
		radial-gradient(circle at top right, rgba(91, 144, 183, 0.1), transparent 10rem);
	box-shadow: 0 16px 34px rgba(91, 144, 183, 0.08);
}

.offer-card__label {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 200px;
	height: 38px;
	padding: 0 18px;
	border-radius: 999px;
	background: var(--accent-soft);
	color: var(--accent);
	font-size: 0.77rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	line-height: 1;
	text-transform: uppercase;
	white-space: nowrap;
}

.offer-card__price {
	font-size: 1.6rem;
	font-weight: 800;
	color: var(--accent);
}

.offer-card__cta {
	margin-top: auto;
	align-self: stretch;
	text-align: center;
}

.benefits {
	padding-top: 124px;
	padding-bottom: 124px;
	background:
		linear-gradient(180deg, #ffffff, #ffffff),
		radial-gradient(circle at top left, rgba(159, 199, 230, 0.14), transparent 22rem);
	color: var(--text);
}

.benefits__shell {
	display: grid;
	grid-template-columns: 430px minmax(0, 1fr);
	gap: 72px;
}

.benefits__intro {
	position: sticky;
	top: 110px;
	align-self: start;
	max-width: 430px;
}

.benefits__intro .section-kicker,
.benefits__intro h2,
.benefits__list p,
.benefits__list h3 {
	color: var(--text);
}

.benefits__list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.benefit-item {
	min-height: 220px;
	padding: 28px;
	border: 1px solid rgba(91, 144, 183, 0.14);
	border-radius: var(--radius-md);
	background: rgba(255, 255, 255, 0.84);
	box-shadow: 0 14px 28px rgba(91, 144, 183, 0.08);
}

.benefit-item__number {
	display: block;
	margin-bottom: 18px;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: rgba(46, 87, 88, 0.58);
}

.process__shell {
	display: grid;
	gap: 28px;
}

.process__list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.process-step {
	padding: 28px;
	border-top: 2px solid var(--accent);
	background: rgba(255, 255, 255, 0.84);
}

.reviews__top {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 50px;
}

.reviews__top .section-heading {
	margin-bottom: 0;
}

.reviews__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 170px;
	padding: 14px 16px;
	border: 1px solid rgba(91, 144, 183, 0.14);
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.92);
	box-shadow: 0 12px 28px rgba(91, 144, 183, 0.08);
}

.reviews__badge iframe {
	display: block;
}

.reviews__track {
	display: grid;
	grid-template-columns: repeat(3, minmax(280px, 1fr));
	gap: 22px;
}

.reviews__action {
	text-align: center;
	margin-top: 32px;
}

.review-card {
	display: grid;
	gap: 20px;
	padding: 28px;
	border-radius: var(--radius-md);
	background: rgba(255, 255, 255, 0.72);
	border: 1px solid var(--line);
	box-shadow: 0 12px 30px rgba(16, 21, 22, 0.05);
}

.review-card footer {
	display: grid;
	gap: 6px;
}

.review-card strong {
	font-size: 1.05rem;
}

.review-card span {
	font-size: 0.92rem;
	color: var(--muted);
}

.contact__shell {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.88fr);
	gap: 36px;
	align-items: start;
}

.contact__intro {
	display: grid;
	gap: 20px;
}

.contact__details {
	display: grid;
	gap: 10px;
	padding-top: 18px;
}

.contact__details a {
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--accent);
}

.contact__social {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 6px;
	font-size: 0.95rem !important;
	font-weight: 600 !important;
	color: var(--accent) !important;
	transition: opacity 200ms;
}

.contact__social:hover {
	opacity: 0.7;
}

.contact__social svg {
	flex-shrink: 0;
}

.contact__map {
	margin-top: 18px;
	border-radius: var(--radius-md);
	overflow: hidden;
	box-shadow: var(--shadow);
}

.contact__map iframe {
	display: block;
	width: 100%;
	min-height: 360px;
	border: 0;
}

.contact__map--placeholder {
	display: grid;
	place-items: center;
	min-height: 320px;
	padding: 28px;
	border: 1px solid rgba(91, 144, 183, 0.16);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 249, 255, 0.98)),
		radial-gradient(circle at top right, rgba(159, 199, 230, 0.22), transparent 12rem);
}

.contact__map-copy {
	display: grid;
	gap: 14px;
	max-width: 420px;
}

.contact__map-label {
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--accent);
}

.contact__map-copy strong {
	font-size: clamp(1.8rem, 3vw, 2.4rem);
	font-family: "Cormorant Garamond", Georgia, serif;
	font-weight: 600;
	line-height: 0.98;
}

.contact__map-copy span {
	color: var(--muted);
}

.contact__form-wrap {
	padding: 32px;
	border-radius: var(--radius-lg);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 252, 255, 0.98));
	border: 1px solid rgba(91, 144, 183, 0.14);
	box-shadow: var(--shadow);
}

.contact-form {
	display: grid;
	gap: 18px;
}

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

.contact-form span {
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--accent);
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	padding: 16px 18px;
	border: 1px solid rgba(29, 34, 37, 0.14);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.82);
	color: var(--text);
	box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
	outline: none;
	border-color: rgba(46, 87, 88, 0.5);
	box-shadow: 0 0 0 4px rgba(46, 87, 88, 0.08);
}

.contact-form__privacy {
	font-size: 0.88rem;
	color: var(--muted);
}

.contact-form__consent {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	cursor: pointer;
}

.contact-form__consent input[type="checkbox"] {
	width: auto;
	margin-top: 3px;
	flex-shrink: 0;
	padding: 0;
	border-radius: 4px;
}

.contact-form__consent > span {
	font-size: 0.82rem;
	color: var(--muted);
	font-weight: 400;
	letter-spacing: normal;
	text-transform: none;
	line-height: 1.5;
}

.contact-form__consent-link {
	background: none;
	border: none;
	color: var(--accent);
	cursor: pointer;
	padding: 0;
	font-size: inherit;
	text-decoration: underline;
}

.site-footer__policy-btn {
	background: none;
	border: none;
	color: inherit;
	cursor: pointer;
	padding: 0;
	font-size: inherit;
	text-decoration: underline;
	opacity: 0.7;
}

.site-footer__policy-btn:hover {
	opacity: 1;
}

.pd-dialog {
	max-width: 680px;
	width: 90%;
	max-height: 80vh;
	overflow-y: auto;
	border: none;
	border-radius: 18px;
	padding: 0;
	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
}

.pd-dialog::backdrop {
	background: rgba(0, 0, 0, 0.48);
}

.pd-dialog__inner {
	position: relative;
	padding: 40px;
}

.pd-dialog__close {
	position: absolute;
	right: 20px;
	top: 16px;
	background: none;
	border: none;
	font-size: 1.6rem;
	line-height: 1;
	cursor: pointer;
	color: var(--muted);
}

.pd-dialog__close:hover {
	color: var(--text);
}

.pd-dialog__body p {
	margin-bottom: 10px;
	font-size: 0.9rem;
	line-height: 1.6;
	color: var(--text);
}

.contact-form__hidden {
	position: absolute;
	left: -9999px;
	opacity: 0;
	pointer-events: none;
}

.contact__notice {
	margin-bottom: 18px;
	padding: 14px 16px;
	border-radius: 18px;
	font-weight: 600;
}

.contact__notice--success {
	background: rgba(112, 181, 138, 0.18);
	color: #1f5a34;
}

.contact__notice--error {
	background: rgba(199, 108, 108, 0.18);
	color: #8d2b2b;
}

.site-footer {
	padding: 0 0 40px;
}

.site-footer__top,
.site-footer__bottom {
	width: var(--container);
	margin: 0 auto;
}

.site-footer__top {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 26px;
	padding: 30px 0;
	border-top: 1px solid var(--line);
}

.site-footer__top h2 {
	font-size: clamp(2.2rem, 3vw, 3rem);
}

.site-footer__top p,
.site-footer__top a,
.site-footer__bottom p {
	color: var(--muted);
}

.site-footer__contacts {
	display: grid;
	gap: 8px;
	justify-items: start;
}

.site-footer__bottom {
	padding-top: 20px;
	border-top: 1px solid var(--line);
	display: flex;
	flex-wrap: wrap;
	gap: 8px 20px;
	align-items: center;
}

.site-footer__social {
	display: inline-block;
	margin-top: 8px;
	font-weight: 600;
	color: var(--accent) !important;
}

.site-footer__check {
	color: var(--muted);
	text-decoration: underline;
	font-size: 0.92rem;
}

.site-main--fallback {
	padding-top: 120px;
}

.section--fallback {
	min-height: 60vh;
}

[data-reveal] {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 600ms ease, transform 600ms ease;
}

[data-reveal].is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* ── Success dialog ── */
.success-dialog {
	max-width: 440px;
	width: 90%;
	border: none;
	border-radius: 24px;
	padding: 0;
	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
	overflow: hidden;
}

.success-dialog::backdrop {
	background: rgba(0, 0, 0, 0.4);
}

.success-dialog__inner {
	display: grid;
	gap: 12px;
	padding: 36px 32px 28px;
	text-align: center;
}

.success-dialog__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	margin: 0 auto 6px;
	border-radius: 50%;
	background: rgba(91, 183, 120, 0.14);
}

.success-dialog__icon svg {
	width: 32px;
	height: 32px;
	color: #3ba55c;
}

.success-dialog h3 {
	font-size: 1.4rem;
	font-family: "Cormorant Garamond", Georgia, serif;
	line-height: 1.2;
}

.success-dialog p {
	font-size: 0.95rem;
	color: var(--muted);
	line-height: 1.5;
}

.success-dialog__close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	margin-top: 8px;
	padding: 0 28px;
	border: 1px solid transparent;
	border-radius: 999px;
	background: var(--accent);
	color: var(--white);
	font-size: 0.95rem;
	font-weight: 700;
	cursor: pointer;
	transition: transform 180ms ease, box-shadow 180ms ease;
	box-shadow: 0 8px 20px rgba(46, 87, 88, 0.18);
}

.success-dialog__close:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(46, 87, 88, 0.24);
}

@media (prefers-reduced-motion: reduce) {
	.hero__metrics,
	.hero__frame-card {
		transform: none;
		will-change: auto;
	}
}

@media (max-width: 1080px) {
	.site-header__inner {
		grid-template-columns: minmax(0, 1fr) auto auto;
		gap: 12px;
		width: auto;
		margin: 0 18px;
		padding: 14px 0;
	}

	.site-header__toggle {
		display: inline-flex;
		justify-self: end;
	}

	.site-header__phone-mobile {
		display: inline-flex;
	}

	.site-nav {
		display: none;
	}

	.site-header__actions {
		display: none;
	}

	body.nav-open .site-header {
		background: rgba(250, 253, 255, 0.98);
	}

	body.nav-open .site-header__inner {
		align-items: start;
	}

	body.nav-open .site-nav {
		display: grid;
		grid-column: 1 / -1;
		gap: 4px;
		padding: 16px 0 8px;
		border-top: 1px solid var(--line);
	}

	body.nav-open .site-nav a {
		padding: 12px 0;
		font-size: 1.08rem;
		font-weight: 600;
		color: var(--text);
	}

	body.nav-open .site-header__actions {
		display: flex;
		grid-column: 1 / -1;
		flex-direction: column;
		align-items: stretch;
		gap: 12px;
		padding-bottom: 8px;
	}

	body.nav-open .site-header__actions .button {
		width: 100%;
	}

	.hero {
		min-height: 680px;
		padding-top: 32px;
		padding-bottom: 130px;
	}

	.contact-strip {
		margin-top: -46px;
	}

	.story.section {
		padding-top: 48px;
		padding-bottom: 88px;
	}

	.hero__grid,
	.story__shell,
	.benefits__shell,
	.contact__shell {
		grid-template-columns: 1fr;
	}

	.story__shell {
		grid-template-areas:
			"intro"
			"media"
			"content";
		row-gap: 24px;
	}

	.hero__metrics {
		border-color: rgba(91, 144, 183, 0.22);
		background: rgba(255, 255, 255, 0.38);
		-webkit-backdrop-filter: blur(8px);
		backdrop-filter: blur(8px);
		box-shadow: 0 8px 22px rgba(91, 144, 183, 0.018);
	}

	.hero__frame-card {
		border-color: rgba(91, 144, 183, 0.22);
		background: rgba(255, 255, 255, 0.38);
		-webkit-backdrop-filter: blur(8px);
		backdrop-filter: blur(8px);
		box-shadow: 0 10px 28px rgba(91, 144, 183, 0.02);
	}

	.hero__frame-card::after {
		border-color: rgba(91, 144, 183, 0.08);
	}

	.service-item,
	.chief-card,
	.team-card {
		grid-template-columns: 1fr;
	}

	.hero__frame {
		justify-content: flex-start;
		padding-bottom: 0;
	}

	.hero__metrics,
	.offers__grid,
	.process__list,
	.reviews__track,
	.team__grid {
		grid-template-columns: 1fr;
	}

	.reviews__top {
		flex-direction: column;
		align-items: flex-start;
		margin-bottom: 34px;
	}

	.contact-strip {
		grid-template-columns: 1fr;
		margin-top: 0;
	}

	.service-item__media {
		max-width: 520px;
	}

	.story__facts,
	.benefits__list {
		grid-template-columns: 1fr;
	}

	.benefits__intro {
		position: static;
	}

	.contact__shell {
		grid-template-columns: 1fr;
	}

	.contact__map iframe {
		min-height: 280px;
	}
}

@media (max-width: 720px) {
	:root {
		--container: min(1180px, calc(100vw - 32px));
	}

	/* ── Hero: делаем заметным, убираем белое полотно ── */
	.hero {
		min-height: auto;
		padding-top: 28px;
		padding-bottom: 48px;
		background:
			linear-gradient(180deg,
				rgba(255, 255, 255, 1.30) 0%,
				rgba(250, 253, 255, 1.20) 50%,
				rgba(234, 244, 252, 0.90) 100%),
			var(--hero-image) center/cover no-repeat;
	}

	.hero__overlay {
		background:
			radial-gradient(ellipse at 30% 20%, rgba(91, 144, 183, 0.14), transparent 60%),
			radial-gradient(ellipse at 80% 80%, rgba(159, 199, 230, 0.10), transparent 50%);
	}

	.hero::before,
	.hero::after {
		display: none;
	}

	.section {
		padding: 56px 0;
	}

	.section-heading {
		gap: 14px;
		margin-bottom: 32px;
	}

	/* ── Contact strip: визуально отделяем от героя ── */
	.contact-strip {
		margin-top: 0;
		padding: 20px;
		gap: 16px;
		border-radius: 18px;
		background: rgba(255, 255, 255, 0.72);
		border-color: rgba(91, 144, 183, 0.22);
		-webkit-backdrop-filter: blur(8px);
		backdrop-filter: blur(8px);
		box-shadow: 0 6px 18px rgba(91, 144, 183, 0.06);
	}

	.hero__metrics {
		background: rgba(255, 255, 255, 0.72);
		-webkit-backdrop-filter: blur(8px);
		backdrop-filter: blur(8px);
		box-shadow: 0 8px 22px rgba(91, 144, 183, 0.06);
	}

	.hero__frame-card {
		background: rgba(255, 255, 255, 0.72);
		-webkit-backdrop-filter: blur(8px);
		backdrop-filter: blur(8px);
		box-shadow: 0 10px 28px rgba(91, 144, 183, 0.06);
	}

	.story.section {
		padding-top: 32px;
		padding-bottom: 56px;
	}

	.story__shell {
		gap: 18px;
	}

	.story__intro {
		gap: 12px;
	}

	.story__content {
		gap: 14px;
	}

	.site-header__inner {
		margin: 0 14px;
		gap: 12px;
	}

	.site-brand__name {
		font-size: 1.02rem;
	}

	.site-brand__label {
		max-width: 200px;
		font-size: 0.66rem;
		line-height: 1.35;
	}

	.hero__content {
		gap: 20px;
	}

	.hero h1 {
		font-size: 1.65rem;
		line-height: 1.08;
		padding-bottom: 16px;
		border-bottom: 2px solid var(--accent);
	}

	.hero__lead {
		font-size: 0.95rem;
		line-height: 1.6;
	}

	.eyebrow {
		font-size: 0.7rem;
	}

	.hero__actions {
		flex-direction: column;
		align-items: stretch;
		gap: 10px;
		margin-top: 4px;
	}

	.hero__actions .button,
	.site-header__actions .button,
	.contact__map-copy .button {
		width: 100%;
	}

	.button {
		min-height: 46px;
		padding: 0 18px;
		font-size: 0.86rem;
		box-sizing: border-box;
		max-width: 100%;
	}

	/* ── Metrics: белая полупрозрачная карточка ── */
	.hero__metrics {
		display: grid;
		grid-template-columns: 1fr;
		gap: 0;
		padding: 8px 18px;
		margin-top: 8px;
		border: 1px solid rgba(91, 144, 183, 0.24);
		border-radius: 22px;
		background: rgba(255, 255, 255, 0.32);
		-webkit-backdrop-filter: blur(8px);
		backdrop-filter: blur(8px);
		box-shadow: 0 10px 26px rgba(91, 144, 183, 0.025);
	}

	.hero__metrics div {
		padding: 12px 0;
		border-top: none;
		border-bottom: 1px solid rgba(91, 144, 183, 0.16);
	}

	.hero__metrics div:last-child {
		border-bottom: none;
	}

	.hero__metrics span {
		color: var(--text);
		font-size: 0.82rem;
	}

	/* ── Frame card: белая полупрозрачная карточка ── */
	.hero__frame-card {
		padding: 22px;
		border-radius: 18px;
		background: rgba(255, 255, 255, 0.32);
		border-color: rgba(91, 144, 183, 0.24);
		-webkit-backdrop-filter: blur(8px);
		backdrop-filter: blur(8px);
		box-shadow: 0 12px 32px rgba(91, 144, 183, 0.03);
	}

	.hero__frame-card::after {
		display: none;
	}

	.hero__frame-card h2 {
		font-size: 1.5rem;
	}

	.hero__frame-card li {
		font-size: 0.92rem;
	}

	/* ── Chief / Doctor card ── */
	.chief {
		padding-top: 48px;
	}

	.chief-card {
		padding: 16px;
		border-radius: 22px;
	}

	.chief-card__media img {
		min-height: 280px;
		border-radius: 18px;
	}

	.chief-card__content h3 {
		font-size: 1.6rem;
	}

	.chief-card__position {
		font-size: 1.15rem;
	}

	.chief-card__lead {
		font-size: 0.95rem;
	}

	/* ── Story section ── */
	.story__media img {
		min-height: 260px;
		border-radius: 22px;
	}

	.story__media::before {
		display: none;
	}

	.story__intro h2 {
		font-size: 1.6rem;
	}

	.story__facts {
		gap: 10px;
	}

	.story__facts div {
		padding: 16px 18px;
		border-top: none;
		border-radius: 14px;
		background: rgba(91, 144, 183, 0.06);
		border-left: 3px solid var(--accent-warm);
	}

	/* ── Services: карточки вместо плоских строк ── */
	.services.section {
		background: linear-gradient(180deg, #f5f9fd 0%, #ffffff 100%);
	}

	.services__list {
		border-top: none;
		display: grid;
		gap: 14px;
	}

	.service-item {
		gap: 14px;
		padding: 20px;
		border-bottom: none;
		border: 1px solid rgba(91, 144, 183, 0.14);
		border-radius: 18px;
		background: var(--white);
		box-shadow: 0 4px 16px rgba(91, 144, 183, 0.07);
	}

	.service-item__index {
		font-size: 1.8rem;
		color: var(--accent);
	}

	.service-item__media {
		display: none;
	}

	.service-item h3 {
		font-size: 1.4rem;
	}

	/* ── Team cards ── */
	.team {
		padding-top: 16px;
	}

	.team-card {
		padding: 14px;
		border-radius: 18px;
	}

	.team-card__media img {
		min-height: 220px;
		border-radius: 14px;
	}

	.team-card__body h3 {
		font-size: 1.4rem;
	}

	.team-card__position {
		font-size: 0.78rem;
	}

	.team-card__excerpt {
		font-size: 0.92rem;
	}

	.tag-list {
		gap: 6px;
	}

	.tag-list li {
		min-height: 32px;
		padding: 0 12px;
		font-size: 0.78rem;
	}

	/* ── Offers ── */
	.offer-card {
		padding: 22px;
		min-height: auto;
		border-radius: 18px;
	}

	.offer-card h3 {
		font-size: 1.4rem;
	}

	/* ── Benefits: контрастный фон секции ── */
	.benefits {
		padding-top: 56px;
		padding-bottom: 56px;
		background:
			linear-gradient(180deg, #f0f6fc, #f7fafd);
	}

	.benefits__shell {
		gap: 32px;
	}

	.benefit-item {
		min-height: auto;
		padding: 22px;
		border-radius: 18px;
		background: var(--white);
	}

	.benefit-item h3 {
		font-size: 1.3rem;
	}

	/* ── Process ── */
	.process-step {
		padding: 22px;
		border-radius: 0 0 14px 14px;
	}

	.process-step h3 {
		font-size: 1.3rem;
	}

	/* ── Reviews ── */
	.reviews.section {
		background: linear-gradient(180deg, #ffffff 0%, #f5f9fd 100%);
	}

	.review-card {
		padding: 22px;
		border-radius: 18px;
		background: var(--white);
	}

	.reviews__badge {
		padding: 10px 12px;
		border-radius: 14px;
	}

	/* ── Contact ── */
	.contact.section {
		background: linear-gradient(180deg, #f5f9fd 0%, #ffffff 100%);
	}

	.contact__shell {
		display: flex;
		flex-direction: column;
		gap: 20px;
	}

	.contact__intro {
		display: contents;
	}

	.contact__intro .section-kicker {
		order: 1;
	}

	.contact__intro h2 {
		order: 2;
	}

	.contact__intro > p {
		order: 3;
	}

	.contact__form-wrap {
		order: 4;
	}

	.contact__details {
		order: 5;
		padding-top: 0;
	}

	.contact__map {
		order: 6;
		margin-top: 0;
	}

	.contact__intro h2 {
		font-size: 1.6rem;
	}

	.contact__details a {
		font-size: 1.2rem;
	}

	.contact__map {
		border-radius: 18px;
	}

	.contact__map iframe {
		min-height: 240px;
	}

	.contact__form-wrap {
		padding: 22px;
		border-radius: 22px;
	}

	.contact-form input,
	.contact-form textarea {
		padding: 14px 16px;
		border-radius: 14px;
		font-size: 1rem;
	}

	.contact-form .button {
		width: 100%;
	}

	/* ── Footer ── */
	.site-footer {
		padding: 0 0 28px;
	}

	.site-footer__top {
		grid-template-columns: 1fr;
		gap: 20px;
		padding: 24px 0;
	}

	.site-footer__top h2 {
		font-size: 1.6rem;
		line-height: 1.1;
	}

	.site-footer__top > p {
		font-size: 0.88rem;
		line-height: 1.5;
	}

	.site-footer__contacts {
		gap: 6px;
	}

	.site-footer__contacts a,
	.site-footer__contacts p {
		font-size: 0.88rem;
		line-height: 1.5;
	}

	.site-footer__bottom {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
		padding-top: 16px;
	}

	.site-footer__bottom p {
		font-size: 0.76rem;
		line-height: 1.55;
		word-break: break-word;
	}

	.section-kicker {
		font-size: 0.7rem;
	}

	.section-kicker::before,
	.eyebrow::before {
		width: 20px;
	}

	.rich-text p {
		font-size: 0.92rem;
	}
}
