/* Reset and shared utilities */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--bpm-color-white);
	color: var(--bpm-color-ink);
	font-family: var(--bpm-font-sans);
	font-size: var(--bpm-font-size-base);
	line-height: var(--bpm-line-height-body);
	-webkit-font-smoothing: antialiased;
}

body.has-open-navigation {
	overflow: hidden;
}

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

img {
	height: auto;
}

svg {
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.7;
}

a {
	color: inherit;
}

button,
input,
select,
textarea {
	font: inherit;
}

button,
select {
	cursor: pointer;
}

h1,
h2,
h3,
p {
	margin-top: 0;
}

h1,
h2,
h3 {
	line-height: var(--bpm-line-height-heading);
}

:focus-visible {
	outline: 3px solid var(--bpm-color-lime-400);
	outline-offset: 3px;
}

.bpm-container {
	width: min(100% - (2 * var(--bpm-gutter)), var(--bpm-container));
	margin-inline: auto;
}

.section {
	padding-block: var(--bpm-section-space);
}

.title-main{
	margin-bottom: 1.1rem;
	font-size: var(--bpm-font-size-2xl);
	font-weight: 800;
	letter-spacing: -0.025em;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link {
	position: fixed;
	z-index: 10000;
	top: 0.75rem;
	left: 0.75rem;
	padding: 0.75rem 1rem;
	transform: translateY(-200%);
	background: var(--bpm-color-white);
	color: var(--bpm-color-navy-950);
	font-weight: 800;
	text-decoration: none;
}

.skip-link:focus {
	transform: translateY(0);
}

/* Buttons */
.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.65rem;
	min-height: 3rem;
	padding: 0.8rem 1.35rem;
	border: 1px solid transparent;
	border-radius: var(--bpm-radius-sm);
	font-size: var(--bpm-font-size-xs);
	font-weight: 800;
	letter-spacing: 0.04em;
	line-height: 1.1;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	transition: background-color var(--bpm-transition), border-color var(--bpm-transition), color var(--bpm-transition), transform var(--bpm-transition);
}

.button:hover {
	transform: translateY(-1px);
}

.button--primary,
.button--header {
	background: var(--bpm-color-green-600);
	color: var(--bpm-color-white);
}

.button--primary:hover,
.button--header:hover {
	background: var(--bpm-color-green-700);
}

.button--ghost {
	border-color: rgb(255 255 255 / 0.75);
	background: rgb(3 21 34 / 0.25);
	color: var(--bpm-color-white);
}

.button--ghost:hover {
	background: rgb(255 255 255 / 0.12);
}

.button--outline {
	border-color: var(--bpm-color-green-600);
	background: transparent;
	color: var(--bpm-color-navy-900);
}

.button--outline:hover {
	background: var(--bpm-color-green-600);
	color: var(--bpm-color-white);
}

.button__icon {
	width: 1.125rem;
	height: 1.125rem;
	flex: 0 0 auto;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
	transition: transform 180ms ease;
}

.button:hover .button__icon,
.button:focus-visible .button__icon {
	transform: translateX(0.25rem);
}

/* Header and navigation */
.site-header {
	position: relative;
	z-index: 100;
	background: var(--bpm-color-navy-900);
	color: var(--bpm-color-white);
}

.home .site-header {
	position: absolute;
	inset: 0 0 auto;
	background: transparent;
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 5rem;
	gap: 2rem;
}

.brand__link {
	display: inline-flex;
	flex-direction: column;
	color: inherit;
	line-height: 1;
	text-decoration: none;
	text-transform: uppercase;
}

.brand__primary {
	font-size: 1.25rem;
	font-weight: 800;
	letter-spacing: 2.6px;
}

.brand__secondary {
	margin-top: 0.18rem;
	    font-size: 11px;
    font-weight: 800;
}

.custom-logo-link,
.custom-logo {
	display: block;
}

.custom-logo {
	width: auto;
	max-height: 3.25rem;
}

.site-header__nav,
.primary-nav__list {
	display: flex;
	align-items: center;
}

.site-header__nav {
	gap: 2rem;
}

.primary-nav__list {
	gap: clamp(1rem, 2vw, 2rem);
	padding: 0;
	margin: 0;
	list-style: none;
}

.primary-nav__link {
	position: relative;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.035em;
	text-decoration: none;
	text-transform: uppercase;
}

.primary-nav__link::after {
	position: absolute;
	inset: auto 0 -0.45rem;
	height: 2px;
	background: var(--bpm-color-lime-400);
	content: "";
	transform: scaleX(0);
	transform-origin: left;
	transition: transform var(--bpm-transition);
}

.primary-nav__link:hover::after,
.primary-nav__link:focus-visible::after {
	transform: scaleX(1);
}

.site-header__toggle {
	display: none;
	align-items: center;
	gap: 0.65rem;
	padding: 0.65rem;
	border: 1px solid rgb(255 255 255 / 0.45);
	background: transparent;
	color: var(--bpm-color-white);
}

.site-header__toggle-label {
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.site-header__toggle-icon,
.site-header__toggle-icon::before,
.site-header__toggle-icon::after {
	display: block;
	width: 1.3rem;
	height: 2px;
	background: currentColor;
	content: "";
	transition: transform var(--bpm-transition), opacity var(--bpm-transition);
}

.site-header__toggle-icon::before {
	transform: translateY(-0.42rem);
}

.site-header__toggle-icon::after {
	transform: translateY(0.3rem);
}

.site-header--nav-open .site-header__toggle-icon {
	background: transparent;
}

.site-header--nav-open .site-header__toggle-icon::before {
	transform: translateY(0) rotate(45deg);
}

.site-header--nav-open .site-header__toggle-icon::after {
	transform: translateY(-2px) rotate(-45deg);
}

/* Hero */
.hero {
	position: relative;
	display: grid;
	min-height: 39rem;
	place-items: center;
	background-color: var(--bpm-color-navy-900);
	background-image:
		linear-gradient(90deg, rgb(3 21 34 / 0.92) 0%, rgb(3 21 34 / 0.72) 48%, rgb(3 21 34 / 0.12) 76%),
		var(--hero-image);
	background-position: center right;
	background-size: cover;
	color: var(--bpm-color-white);
}

.hero::after {
	position: absolute;
	inset: auto 0 0;
	height: 22%;
	background: linear-gradient(transparent, rgb(3 21 34 / 0.42));
	content: "";
	pointer-events: none;
}

.hero__inner {
	position: relative;
	z-index: 1;
	padding-top: 6rem;
}

.hero__content {
	max-width: 44rem;
}

.hero__title {
	max-width: 42rem;
	margin-bottom: 1.45rem;
	font-size: var(--bpm-font-size-3xl);
	font-weight: 800;
	letter-spacing: -0.035em;
	line-height: var(--bpm-line-height-tight);
}

.hero__description {
	max-width: 28rem;
	margin-bottom: 1.5rem;
	font-size: clamp(1rem, 1.7vw, 1.25rem);
	line-height: 1.45;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.hero__note {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	margin-top: 1.25rem;
	margin-bottom: 0;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.025em;
	text-transform: uppercase;
}

/* Focus strip */
.focus-strip {
	border-bottom: 1px solid var(--bpm-color-stone-200);
	background: var(--bpm-color-white);
}

.focus-strip__inner {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
}

.focus-strip__item {
	display: flex;
	align-items: center;
	gap: 0.9rem;
	min-height: 7rem;
	padding: 1.25rem;
	border-left: 1px solid var(--bpm-color-stone-200);
}

.focus-strip__item:last-child {
	border-right: 1px solid var(--bpm-color-stone-200);
}

.focus-strip__icon {
	width: 2rem;
	min-width: 2rem;
	color: var(--bpm-color-navy-900);
}

.focus-strip__title {
	max-width: 9rem;
	font-size: 0.7rem;
	font-weight: 800;
	line-height: 1.35;
	text-transform: uppercase;
}

/* Shared section introduction */
.section-intro__eyebrow,
.partnership__eyebrow,
.service-area__eyebrow {
	margin-bottom: 0.8rem;
	color: var(--bpm-color-green-600);
	font-size: var(--bpm-font-size-xs);
	font-weight: 800;
	letter-spacing: var(--bpm-letter-spacing-wide);
	text-transform: uppercase;
}



.section-intro__text,
.partnership__text,
.service-area__text {
	margin-bottom: 1.5rem;
	color: var(--bpm-color-muted);
}

/* Services */
.services {
	background: var(--bpm-color-cream-100);
}

.services__inner {
	display: grid;
	grid-template-columns: minmax(15rem, 0.85fr) minmax(0, 1.65fr);
	gap: clamp(2.5rem, 6vw, 5rem);
	align-items: center;
}

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

.service-card {
	overflow: hidden;
	background: var(--bpm-color-white);
	box-shadow: var(--bpm-shadow-card);
}

.service-card__media {
	position: relative;
	aspect-ratio: 4 / 2.4;
}

.service-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 450ms ease;
}

.service-card:hover .service-card__image {
	transform: scale(1.035);
}

.service-card__icon {
	position: absolute;
	bottom: -1.4rem;
	left: 1.25rem;
	display: grid;
	width: 3.25rem;
	height: 3.25rem;
	place-items: center;
	border: 4px solid var(--bpm-color-white);
	border-radius: 50%;
	background: var(--bpm-color-white);
	color: var(--bpm-color-green-600);
	box-shadow: 0 8px 18px rgb(3 21 34 / 0.12);
}

.service-card__icon svg {
	width: 1.65rem;
	stroke-width: 0;
}

.service-card__body {
	min-height: 14rem;
	padding: 2.35rem 1.3rem 1.5rem;
	background: linear-gradient(145deg, var(--bpm-color-green-700), var(--bpm-color-navy-900));
	color: var(--bpm-color-white);
}

.service-card__title {
	margin-bottom: 0.85rem;
	font-size: 1.05rem;
	font-weight: 800;
	text-transform: uppercase;
}

.service-card__description {
	margin-bottom: 0;
	font-size: 0.84rem;
	line-height: 1.55;
}

.service-card:last-child .service-card__body {
	background: linear-gradient(145deg, var(--bpm-color-navy-800), var(--bpm-color-navy-950));
}

/* Property types */
.property-types {
	background: var(--bpm-color-white);
}

.property-types__inner {
	display: grid;
	grid-template-columns: minmax(15rem, 0.75fr) minmax(0, 1.75fr);
	gap: clamp(2.5rem, 6vw, 5rem);
	align-items: center;
}

.property-types__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0.75rem;
}

.property-card {
	position: relative;
	min-height: 10rem;
	overflow: hidden;
	background: var(--bpm-color-navy-900);
}

.property-card::after {
	position: absolute;
	inset: 45% 0 0;
	background: linear-gradient(transparent, rgb(3 21 34 / 0.96));
	content: "";
}

.property-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 450ms ease;
}

.property-card:hover .property-card__image {
	transform: scale(1.04);
}

.property-card__title {
	position: absolute;
	z-index: 1;
	inset: auto 0.7rem 0.7rem;
	margin: 0;
	color: var(--bpm-color-white);
	font-size: 0.67rem;
	font-weight: 800;
	line-height: 1.25;
	text-align: center;
	text-transform: uppercase;
}

/* Partnership and service area */
.partnership__grid {
	display: grid;
	grid-template-columns: 1fr 0.5fr 1fr;
	min-height: 30rem;
	padding-left: max(
		var(--bpm-gutter),
		calc((100% - var(--bpm-container)) / 2)
	);
	background: linear-gradient(145deg, var(--bpm-color-navy-900), var(--bpm-color-navy-950));
}

.partnership__content {	
	display: flex;
    flex-direction: column;
    justify-content: center;
	padding-right: var(--bpm-gutter);
	color: var(--bpm-color-white);
}

.partnership__title {
	max-width: 18rem;
}

.partnership__text {
	color: rgb(255 255 255 / 0.82);
	font-size: 0.9rem;
	line-height: 1.55;
}

.partnership__list {
	display: grid;
	gap: 0.55rem;
	padding: 0;
	margin: 0;
	list-style: none;
}

.partnership__item {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	font-size: 0.82rem;
}

.partnership__check {
	width: 1rem;
	color: var(--bpm-color-lime-400);
}

.partnership__image-wrap {
	min-height: 100%;
}

.partnership__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.service-area {
	position: relative;
	display: grid;
	min-height: 100%;
	place-items: center start;
	overflow: hidden;
	background: var(--bpm-color-cream-100);
}

.service-area::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, var(--bpm-color-cream-100) 0%, rgb(246 244 238 / 0.94) 43%, rgb(246 244 238 / 0.22) 80%);
	content: "";
}

.service-area__content {
	position: relative;
	z-index: 2;
	max-width: 24rem;
	padding: clamp(2.5rem, 5vw, 4.5rem);
}

.service-area__map {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

/* Contact */
.contact-section {
	background: var(--bpm-color-cream-100);
}

.contact-section__inner {
	display: grid;
	grid-template-columns: minmax(16rem, 0.72fr) minmax(0, 1.65fr);
	gap: clamp(2.5rem, 6vw, 5rem);
	align-items: start;
}

.contact-section__email {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	margin-top: 0.4rem;
	font-size: 0.95rem;
	font-weight: 700;
	text-decoration: none;
}

.contact-section__email-icon {
	width: 1.5rem;
	color: var(--bpm-color-navy-900);
}

.contact-section__qualification {
	max-width: 22rem;
	margin-top: 1.25rem;
	color: var(--bpm-color-green-700);
	font-size: 0.78rem;
	font-weight: 700;
	line-height: 1.45;
}

.contact-section__form-wrap {
	min-width: 0;
}
/* =========================
   CONTACT FORM 7
   Dark architectural panel
   ========================= */

.wpcf7 {
	width: 100%;
}

/* Основная подложка формы */
.wpcf7-form {
	position: relative;
	width: 100%;
	margin: 0;
	padding: clamp(28px, 3vw, 44px);

	background: #071f31;
	border: 1px solid rgba(7, 31, 49, 0.25);
	border-radius: 3px;

	box-shadow:
		0 20px 45px rgba(7, 31, 49, 0.16),
		10px 10px 0 rgba(39, 130, 53, 0.08);
}

/* Зелёная полоса сверху */
.wpcf7-form::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 6px;
	background: #278235;
}

/* Сетка */
.contact-form__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 21px 16px;
}

/* CF7 добавляет p вокруг полей */
.contact-form__grid > p {
	display: contents;
	margin: 0;
}

/* Поле */
.contact-form__field {
	display: flex;
	flex-direction: column;
	gap: 8px;
	min-width: 0;
}

/* Company Name и textarea на всю ширину */
.contact-form__field--wide {
	grid-column: 1 / -1;
}

/* Названия полей */
.contact-form__label {
	display: block;

	color: #ffffff;
	font-size: 12px;
	font-weight: 800;
	line-height: 1.35;
	letter-spacing: 0.035em;
}

/* Обёртка CF7 */
.contact-form__field .wpcf7-form-control-wrap {
	display: block;
	width: 100%;
}

/* Input и textarea */
.contact-form__control {
	display: block;
	width: 100%;
	min-width: 0;
	height: 51px;
	padding: 0 15px;

	color: #071f31;
	font-family: inherit;
	font-size: 15px;
	line-height: 1.4;

	background: #f7f6f1;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 2px;
	outline: none;

	box-sizing: border-box;

	transition:
		background-color 0.2s ease,
		border-color 0.2s ease,
		box-shadow 0.2s ease;
}

.contact-form__control:hover {
	background: #ffffff;
	border-color: rgba(255, 255, 255, 0.6);
}

.contact-form__control:focus {
	background: #ffffff;
	border-color: #59a95f;
	box-shadow: 0 0 0 3px rgba(89, 169, 95, 0.2);
}

/* Textarea */
textarea.contact-form__control {
	height: auto;
	min-height: 150px;
	padding-top: 14px;
	padding-bottom: 14px;
	resize: vertical;
}

/* Checkbox block */
.contact-form__consent {
	margin-top: 22px;
	padding: 16px 17px;

	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-left: 3px solid #278235;
	border-radius: 2px;
}

.contact-form__consent p {
	margin: 0;
}

.contact-form__consent .wpcf7-list-item {
	display: block;
	margin: 0;
}

.contact-form__consent label {
	display: grid;
	grid-template-columns: 18px minmax(0, 1fr);
	align-items: start;
	gap: 11px;
	cursor: pointer;
}

.contact-form__consent input[type="checkbox"] {
	width: 17px;
	height: 17px;
	margin: 2px 0 0;

	accent-color: #59a95f;
	cursor: pointer;
}

.contact-form__consent .wpcf7-list-item-label {
	color: rgba(255, 255, 255, 0.82);
	font-size: 13px;
	line-height: 1.55;
}

/* Кнопка */
.contact-form__actions {
	display: flex;
	margin-top: 22px;
}

.contact-form__actions p {
	display: flex;
	align-items: center;
	margin: 0;
}

.contact-form__submit {
	min-height: 49px;
	padding: 0 25px;

	color: #ffffff;
	font-family: inherit;
	font-size: 11px;
	font-weight: 900;
	line-height: 1;
	letter-spacing: 0.09em;
	text-transform: uppercase;

	background: #278235;
	border: 1px solid #278235;
	border-radius: 2px;
	box-shadow: none;

	cursor: pointer;

	transition:
		background-color 0.2s ease,
		border-color 0.2s ease,
		transform 0.2s ease;
}

.contact-form__submit:hover {
	background: #ffffff;
	border-color: #ffffff;
	color: #071f31;
	transform: translateY(-1px);
}

.contact-form__submit:active {
	transform: translateY(0);
}

.contact-form__submit:focus-visible {
	outline: 2px solid #59a95f;
	outline-offset: 3px;
}

.contact-form__submit:disabled {
	opacity: 0.45;
	cursor: not-allowed;
	transform: none;
}

/* Spinner */
.wpcf7-spinner {
	margin: 0 0 0 12px;
	background-color: rgba(255, 255, 255, 0.7);
}

/* Ошибки */
.wpcf7-not-valid {
	border-color: #ef8d85;
}

.wpcf7-not-valid-tip {
	display: block;
	margin-top: 6px;

	color: #ffaaa3;
	font-size: 12px;
	font-weight: 700;
}

/* Сообщения */
.wpcf7 form .wpcf7-response-output {
	margin: 20px 0 0;
	padding: 13px 15px;

	color: #ffffff;
	font-size: 13px;
	line-height: 1.5;

	background: rgba(255, 255, 255, 0.06);
	border: 1px solid #59a95f;
	border-radius: 2px;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
	border-color: #dba94b;
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output,
.wpcf7 form.spam .wpcf7-response-output {
	border-color: #ef8d85;
}

/* Autofill */
.contact-form__control:-webkit-autofill {
	-webkit-text-fill-color: #071f31;
	-webkit-box-shadow: 0 0 0 1000px #ffffff inset;
}

/* Mobile */
@media (max-width: 767px) {
	.wpcf7-form {
		padding: 28px 20px;
		box-shadow: 6px 6px 0 rgba(39, 130, 53, 0.08);
	}

	.contact-form__grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.contact-form__field--wide {
		grid-column: auto;
	}

	.contact-form__submit {
		width: 100%;
	}

	.contact-form__actions,
	.contact-form__actions p {
		width: 100%;
	}
}
/* Footer */
.site-footer {
	padding-block: 2.5rem 1.5rem;
	background: linear-gradient(120deg, var(--bpm-color-navy-900), var(--bpm-color-navy-950));
	color: var(--bpm-color-white);
}

.site-footer__inner {
	display: grid;
	grid-template-columns: 1.35fr 0.75fr 1fr 0.35fr;
	gap: 2.5rem;
}

.site-footer__heading {
	margin-bottom: 0.7rem;
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.site-footer__summary,
.site-footer__copyright,
.site-footer__area,
.footer-nav__link,
.site-footer__contact-link {
	font-size: 0.72rem;
	line-height: 1.45;
}

.site-footer__summary {
	max-width: 19rem;
	margin-top: 0.9rem;
	color: rgb(255 255 255 / 0.75);
}

.site-footer__copyright {
	margin-bottom: 0;
	color: rgb(255 255 255 / 0.55);
}

.footer-nav__list {
	display: grid;
	gap: 0.15rem;
	padding: 0;
	margin: 0;
	list-style: none;
}

.footer-nav__link,
.site-footer__contact-link {
	color: rgb(255 255 255 / 0.82);
	text-decoration: none;
}

.footer-nav__link:hover,
.site-footer__contact-link:hover {
	color: var(--bpm-color-lime-400);
}

.site-footer__contact-link {
	display: flex;
	align-items: flex-start;
	gap: 0.55rem;
	word-break: break-word;
}

.site-footer__contact-icon {
	width: 1rem;
	min-width: 1rem;
	margin-top: 0.1rem;
}

.site-footer__area {
	margin-top: 0.8rem;
	color: rgb(255 255 255 / 0.62);
}

.site-footer__social-link {
	display: grid;
	width: 2rem;
	height: 2rem;
	place-items: center;
	color: var(--bpm-color-white);
}

.site-footer__social-link svg {
	width: 1.6rem;
}

/* Generic content templates */
.content-area {
	min-height: 60vh;
	padding-block: clamp(7rem, 10vw, 10rem) var(--bpm-section-space);
	background: var(--bpm-color-cream-100);
}

.content-area__inner--narrow {
	max-width: var(--bpm-content);
}

.content-area__header {
	margin-bottom: 3rem;
}

.content-area__title,
.entry__title,
.error-page__title {
	font-size: var(--bpm-font-size-2xl);
	font-weight: 800;
	letter-spacing: -0.03em;
}

.post-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 2rem;
}

.post-card {
	overflow: hidden;
	background: var(--bpm-color-white);
	box-shadow: var(--bpm-shadow-card);
}

.post-card__media {
	display: block;
	aspect-ratio: 16 / 9;
	overflow: hidden;
}

.post-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.post-card__body {
	padding: 1.5rem;
}

.post-card__meta,
.entry-meta {
	margin-bottom: 0.5rem;
	color: var(--bpm-color-muted);
	font-size: 0.75rem;
	text-transform: uppercase;
}

.post-card__title {
	font-size: 1.35rem;
}

.post-card__link {
	text-decoration: none;
}

.entry__content > * {
	max-width: 100%;
}

.entry__content a {
	color: var(--bpm-color-green-700);
}

.entry__media {
	margin: 2rem 0;
}

.comments-area {
	padding-top: 3rem;
	margin-top: 3rem;
	border-top: 1px solid var(--bpm-color-stone-300);
}

.search-form {
	display: flex;
	gap: 0.75rem;
}

.search-form__field {
	flex: 1;
}

.search-form__input {
	width: 100%;
	min-height: 3rem;
	padding: 0.75rem;
	border: 1px solid var(--bpm-color-stone-300);
}

.error-page {
	padding-block: 4rem;
	text-align: center;
}

.error-page__eyebrow {
	color: var(--bpm-color-green-600);
	font-size: 4rem;
	font-weight: 800;
}

/* Responsive */
@media (max-width: 1100px) {
	.site-header__nav {
		gap: 1rem;
	}

	.services__inner,
	.property-types__inner {
		grid-template-columns: 1fr;
	}

	.services__intro,
	.property-types__intro {
		max-width: 40rem;
	}

	.partnership__grid {
		grid-template-columns: 0.9fr 0.65fr 1.25fr;
	}

	.contact-section__inner {
		grid-template-columns: 0.8fr 1.3fr;
	}
}

@media (max-width: 900px) {
	.home .site-header,
	.site-header {
		position: absolute;
		inset: 0 0 auto;
		background: var(--bpm-color-navy-900);
	}

	.site-header__toggle {
		display: inline-flex;
	}

	.site-header__nav {
		position: fixed;
		inset: 5rem 0 auto;
		display: grid;
		gap: 1.5rem;
		padding: 2rem var(--bpm-gutter) 2.5rem;
		background: var(--bpm-color-navy-950);
		box-shadow: 0 20px 40px rgb(3 21 34 / 0.35);
		opacity: 0;
		pointer-events: none;
		transform: translateY(-1rem);
		transition: opacity var(--bpm-transition), transform var(--bpm-transition);
	}

	.site-header--nav-open .site-header__nav {
		opacity: 1;
		pointer-events: auto;
		transform: translateY(0);
	}

	.primary-nav__list {
		display: grid;
		gap: 1rem;
	}

	.primary-nav__link {
		font-size: 1rem;
	}

	.button--header {
		justify-self: start;
	}

	.hero {
		min-height: 43rem;
		background-image:
			linear-gradient(90deg, rgb(3 21 34 / 0.94) 0%, rgb(3 21 34 / 0.68) 68%, rgb(3 21 34 / 0.26) 100%),
			var(--hero-image);
	}

	.focus-strip__inner {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.focus-strip__item,
	.focus-strip__item:last-child {
		border-right: 1px solid var(--bpm-color-stone-200);
		border-bottom: 1px solid var(--bpm-color-stone-200);
	}

	.services__grid {
		grid-template-columns: repeat(3, minmax(15rem, 1fr));
		overflow-x: auto;
		padding-bottom: 1rem;
		scroll-snap-type: x proximity;
	}

	.service-card {
		scroll-snap-align: start;
	}

	.property-types__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

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

	.service-area {
		grid-column: 1 / -1;
		min-height: 30rem;
	}

	.contact-section__inner {
		grid-template-columns: 1fr;
	}

	.contact-section__intro {
		max-width: 40rem;
	}

	.site-footer__inner {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 620px) {
	:root {
		--bpm-gutter: 1.25rem;
	}

	.hero {
		min-height: 42rem;
		background-position: 62% center;
	}

	.hero__inner {
		padding-top: 7rem;
	}

	.hero__title {
		font-size: clamp(2.4rem, 13vw, 3.5rem);
	}

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

	.hero__actions .button {
		width: 100%;
	}

	.focus-strip__inner,
	.property-types__grid,
	.contact-form__grid,
	.site-footer__inner {
		grid-template-columns: 1fr;
	}

	.focus-strip__item {
		min-height: 5.5rem;
	}

	.services__grid {
		grid-template-columns: 1fr;
		overflow: visible;
	}

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

	.partnership__image-wrap {
		min-height: 24rem;
	}

	.service-area {
		grid-column: auto;
		min-height: 32rem;
	}

	.service-area::after {
		background: linear-gradient(180deg, var(--bpm-color-cream-100) 0%, rgb(246 244 238 / 0.94) 58%, rgb(246 244 238 / 0.38) 100%);
	}

	.service-area__content {
		align-self: start;
	}

	.contact-form__field--wide {
		grid-column: auto;
	}

	.contact-form__submit {
		float: none;
		width: 100%;
	}

	.post-list {
		grid-template-columns: 1fr;
	}

	.search-form {
		flex-direction: column;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}
/* =========================
   BULK SALT — FULL WIDTH
   ========================= */

.bulk-salt {
	--bulk-salt-split: 62%;

	display: grid;
	grid-template-columns:
		minmax(0, var(--bulk-salt-split))
		minmax(320px, calc(100% - var(--bulk-salt-split)));

	width: 100%;
	overflow: hidden;

	border-top: 1px solid rgba(7, 31, 49, 0.1);
	border-bottom: 1px solid rgba(7, 31, 49, 0.1);
}

/* Левая светлая часть */

.bulk-salt__content {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;

	min-height: 480px;

	padding-top: clamp(72px, 8vw, 110px);
	padding-right: clamp(40px, 7vw, 110px);
	padding-bottom: clamp(72px, 8vw, 110px);
	padding-left: max(
		var(--bpm-gutter, 24px),
		calc((100vw - var(--bpm-container, 1200px)) / 2)
	);

	background:
		linear-gradient(
			135deg,
			rgba(39, 130, 53, 0.055),
			transparent 48%
		),
		#f4f2eb;
}


.bulk-salt__eyebrow {
	margin: 0 0 14px;
	color: var(--bpm-green, #278235);
	font-size: 11px;
	font-weight: 900;
	line-height: 1.2;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

.bulk-salt__text {
	max-width: 660px;
	margin: 0;

	color: #435159;
	font-size: clamp(16px, 1.4vw, 18px);
	line-height: 1.7;
}

.bulk-salt__note {
	margin: 20px 0 0;
	color: var(--bpm-navy, #071f31);
	font-size: 13px;
	font-weight: 700;
	line-height: 1.55;
}

.bulk-salt__button {
	margin-top: 28px;
}


.bulk-salt__details {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;

	min-height: 480px;

	padding-top: clamp(64px, 7vw, 100px);
	padding-right: max(
		var(--bpm-gutter, 24px),
		calc((100vw - var(--bpm-container, 1200px)) / 2)
	);
	padding-bottom: clamp(64px, 7vw, 100px);
	padding-left: clamp(44px, 5vw, 78px);

	color: #ffffff;

	background:
		linear-gradient(
			145deg,
			rgba(39, 130, 53, 0.2),
			transparent 45%
		),
		var(--bpm-navy, #071f31);
}

.bulk-salt__details::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;

	width: 5px;
	height: 100%;

	background: var(--bpm-green, #278235);
}

.bulk-salt__icon {
	display: grid;
	place-items: center;

	width: 62px;
	height: 62px;
	margin-bottom: 27px;

	color: #ffffff;
	background: var(--bpm-green, #278235);
}

.bulk-salt__icon svg {
	display: block;
	width: 34px;
	height: 34px;
}

.bulk-salt__icon svg path,
.bulk-salt__icon svg circle {
	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.bulk-salt__details-eyebrow {
	margin: 0 0 12px;

	color: #69bd70;
	font-size: 10px;
	font-weight: 900;
	line-height: 1.2;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.bulk-salt__details-title {
	max-width: 370px;
	margin: 0 0 26px;

	color: #ffffff;
	font-size: clamp(25px, 2.4vw, 34px);
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: -0.025em;
}

.bulk-salt__list {
	display: grid;
	gap: 15px;

	max-width: 360px;
	margin: 0;
	padding: 24px 0 0;

	border-top: 1px solid rgba(255, 255, 255, 0.15);
	list-style: none;
}

.bulk-salt__list li {
	position: relative;
	padding-left: 25px;

	color: rgba(255, 255, 255, 0.8);
	font-size: 14px;
	line-height: 1.5;
}

.bulk-salt__list li::before {
	content: "";
	position: absolute;
	top: 0.43em;
	left: 1px;

	width: 8px;
	height: 5px;

	border-bottom: 2px solid #69bd70;
	border-left: 2px solid #69bd70;

	transform: rotate(-45deg);
}

/* Планшеты */

@media (max-width: 960px) {
	.bulk-salt {
		grid-template-columns: 1fr;
	}

	.bulk-salt__content,
	.bulk-salt__details {
		min-height: auto;

		padding-right: max(var(--bpm-gutter, 24px), 6vw);
		padding-left: max(var(--bpm-gutter, 24px), 6vw);
	}

	.bulk-salt__content {
		padding-top: 76px;
		padding-bottom: 76px;
	}

	.bulk-salt__content::before {
		top: 76px;
		left: max(var(--bpm-gutter, 24px), 6vw);
	}

	.bulk-salt__details {
		padding-top: 64px;
		padding-bottom: 68px;
	}

	.bulk-salt__details::before {
		top: 0;
		width: 100%;
		height: 5px;
	}
}

/* Телефоны */

@media (max-width: 600px) {
	.bulk-salt__content {
		padding-top: 62px;
		padding-bottom: 62px;
	}

	.bulk-salt__content::before {
		top: 62px;
		height: 37px;
	}

	.bulk-salt__title {
		font-size: 42px;
	}

	.bulk-salt__button {
		width: 100%;
		text-align: center;
	}

	.bulk-salt__details {
		padding-top: 52px;
		padding-bottom: 56px;
	}

	.bulk-salt__details-title {
		font-size: 27px;
	}
}
