:root {
	--color-ink: #101828;
	--color-muted: #475467;
	--color-line: #e4e7ec;
	--color-surface: #f7f9fc;
	--color-white: #fff;
	--color-brand: #0b63ce;
	--color-brand-dark: #084b9c;
	--color-accent: #f59e0b;
	--shadow-sm: 0 8px 24px rgba(16, 24, 40, 0.08);
	--shadow-lg: 0 20px 60px rgba(16, 24, 40, 0.14);
	--radius-sm: 0.6rem;
	--radius-md: 1rem;
	--radius-lg: 1.5rem;
	--container: 1180px;
	--font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
	scroll-behavior: smooth;
}

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

body.menu-open {
	overflow: hidden;
}

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

a {
	color: var(--color-brand);
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.16em;
}

a:hover {
	color: var(--color-brand-dark);
}

button,
input,
textarea {
	font: inherit;
}

button,
a {
	-webkit-tap-highlight-color: transparent;
}

/* Hide SEOPress' large fixed preferences button after a choice is saved. */
.seopress-user-consent.seopress-edit-choice {
	display: none !important;
}

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

h1,
h2,
h3 {
	margin-top: 0;
	color: var(--color-ink);
	font-weight: 760;
	line-height: 1.15;
	letter-spacing: -0.025em;
}

h1 {
	font-size: clamp(2.25rem, 6vw, 4.25rem);
}

h2 {
	font-size: clamp(1.75rem, 4vw, 2.75rem);
}

h3 {
	font-size: 1.25rem;
}

p {
	margin-top: 0;
}

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

.screen-reader-text,
.skip-link:not(:focus) {
	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:focus {
	position: fixed;
	top: 0.75rem;
	left: 0.75rem;
	z-index: 1000;
	padding: 0.7rem 1rem;
	background: var(--color-white);
	color: var(--color-ink);
	border-radius: var(--radius-sm);
	box-shadow: var(--shadow-sm);
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, 0.96);
	border-bottom: 1px solid var(--color-line);
	backdrop-filter: blur(12px);
}

.header-inner {
	display: flex;
	align-items: center;
	min-height: 74px;
	gap: 1.25rem;
}

.site-brand {
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
	color: var(--color-ink);
	text-decoration: none;
	flex-shrink: 0;
}

.site-brand:hover {
	color: var(--color-ink);
}

.site-brand__mark {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: 12px;
	background: var(--color-brand);
	color: var(--color-white);
	font-weight: 800;
	letter-spacing: -0.04em;
}

.site-brand__text {
	display: flex;
	flex-direction: column;
	line-height: 1.15;
}

.site-brand__text strong {
	font-size: 1rem;
}

.site-brand__text small {
	margin-top: 0.25rem;
	color: var(--color-muted);
	font-size: 0.72rem;
}

.primary-navigation {
	margin-left: auto;
}

.primary-navigation ul,
.site-footer .menu {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.primary-navigation a {
	color: var(--color-ink);
	font-size: 0.94rem;
	font-weight: 650;
	text-decoration: none;
}

.primary-navigation a:hover,
.primary-navigation .current-menu-item > a {
	color: var(--color-brand);
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 0.9rem;
}

.header-phone {
	color: var(--color-ink);
	font-weight: 750;
	text-decoration: none;
	white-space: nowrap;
}

.menu-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	margin-left: auto;
	padding: 0;
	background: var(--color-white);
	border: 1px solid var(--color-line);
	border-radius: var(--radius-sm);
	cursor: pointer;
}

.menu-toggle__icon,
.menu-toggle__icon::before,
.menu-toggle__icon::after {
	display: block;
	width: 20px;
	height: 2px;
	background: var(--color-ink);
	transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle__icon {
	position: relative;
}

.menu-toggle__icon::before,
.menu-toggle__icon::after {
	position: absolute;
	left: 0;
	content: "";
}

.menu-toggle__icon::before { top: -6px; }
.menu-toggle__icon::after { top: 6px; }
.menu-toggle[aria-expanded="true"] .menu-toggle__icon { background: transparent; }
.menu-toggle[aria-expanded="true"] .menu-toggle__icon::before { top: 0; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle__icon::after { top: 0; transform: rotate(-45deg); }

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0.72rem 1.15rem;
	border: 2px solid transparent;
	border-radius: var(--radius-sm);
	font-weight: 720;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

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

.button--primary {
	background: var(--color-brand);
	color: var(--color-white);
}

.button--primary:hover {
	background: var(--color-brand-dark);
	color: var(--color-white);
}

.button--secondary {
	background: var(--color-white);
	border-color: var(--color-line);
	color: var(--color-ink);
}

.button--secondary:hover {
	border-color: var(--color-brand);
	color: var(--color-brand);
}

.button--small {
	min-height: 42px;
	padding: 0.58rem 0.9rem;
	font-size: 0.9rem;
}

.text-link,
.card-link {
	font-weight: 720;
	text-decoration: none;
}

.eyebrow {
	margin-bottom: 0.75rem;
	color: var(--color-brand);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.eyebrow--light {
	color: #b8d8ff;
}

.hero {
	position: relative;
	overflow: hidden;
	padding: 1.25rem 0 3.5rem;
	background: linear-gradient(135deg, #f4f8ff 0%, #fff 55%, #fff8e8 100%);
}

.hero::after {
	position: absolute;
	top: -160px;
	right: -180px;
	width: 520px;
	height: 520px;
	border: 1px solid rgba(11, 99, 206, 0.12);
	border-radius: 50%;
	box-shadow: 0 0 0 70px rgba(11, 99, 206, 0.025), 0 0 0 140px rgba(11, 99, 206, 0.02);
	content: "";
	pointer-events: none;
}

.hero__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
	grid-template-areas:
		"intro visual"
		"summary visual"
		"support visual";
	align-items: center;
	gap: 1rem clamp(2.5rem, 5vw, 5rem);
}

.hero__intro { grid-area: intro; align-self: end; }
.hero__summary { grid-area: summary; }
.hero__support { grid-area: support; align-self: start; }

.hero h1 {
	max-width: 850px;
	margin-bottom: 0;
}

.hero__lead {
	max-width: 720px;
	margin-bottom: 1.4rem;
	color: var(--color-muted);
	font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.hero__phone-link {
	display: inline-flex;
	align-items: baseline;
	gap: 0.65rem;
	color: var(--color-ink);
	font-weight: 760;
	text-decoration: none;
}

.hero__contact-row {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.messenger-links {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
}

.messenger-link {
	display: inline-flex;
	width: 38px;
	height: 38px;
	align-items: center;
	justify-content: center;
	border: 1px solid transparent;
	border-radius: 50%;
	transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.messenger-link svg {
	width: 21px;
	height: 21px;
	fill: currentColor;
}

.messenger-link__detail {
	fill: #fff;
}

.messenger-link--viber { color: #665cac; background: #f1effa; border-color: #ded9f2; }
.messenger-link--whatsapp { color: #168c50; background: #ebf8f0; border-color: #d3eedf; }
.messenger-link--telegram { color: #168bd2; background: #edf7fd; border-color: #d6ebf8; }

.messenger-link:hover,
.messenger-link:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 7px 16px rgba(15, 32, 56, 0.12);
}

.hero__phone-link span {
	color: var(--color-brand);
	font-size: 0.78rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

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

.hero__benefits {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem 1.5rem;
	margin: 1.15rem 0 0;
	padding: 0;
	color: var(--color-muted);
	font-size: 0.92rem;
	list-style: none;
}

.hero__benefits li::before {
	margin-right: 0.45rem;
	color: var(--color-brand);
	content: "✓";
	font-weight: 800;
}

.hero__visual {
	grid-area: visual;
	position: relative;
	margin: 0;
	overflow: hidden;
	background: #f1e5d5;
	border: 1px solid rgba(125, 83, 36, 0.12);
	border-radius: calc(var(--radius-lg) + 0.35rem);
	box-shadow: 0 22px 60px rgba(80, 53, 24, 0.14);
}

.hero__visual picture {
	display: block;
}

.hero__visual img {
	width: 100%;
	aspect-ratio: 8 / 7;
	object-fit: cover;
	object-position: 54% center;
}

.hero__visual--real {
	aspect-ratio: 8 / 9;
}

.hero__visual--real picture,
.hero__visual--real img {
	display: block;
	width: 100%;
	height: 100%;
}

.hero__visual--real img {
	aspect-ratio: auto;
	object-position: center;
}

.visual-services {
	padding: clamp(2.5rem, 5vw, 4rem) 0;
	background: var(--color-white);
	border-bottom: 1px solid var(--color-line);
}

.visual-services__heading {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(260px, 0.55fr);
	align-items: end;
	gap: 2rem;
	margin-bottom: 1.6rem;
}

.visual-services__heading h2,
.visual-services__heading p {
	margin-bottom: 0;
}

.visual-services__heading > p {
	color: var(--color-muted);
}

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

.visual-service {
	position: relative;
	min-width: 0;
	margin: 0;
	overflow: hidden;
	background: var(--color-ink);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
}

.visual-service::after {
	position: absolute;
	inset: 35% 0 0;
	background: linear-gradient(180deg, transparent, rgba(5, 18, 36, 0.92));
	content: "";
	pointer-events: none;
}

.visual-service img {
	width: 100%;
	aspect-ratio: 3 / 2;
	object-fit: cover;
	transition: transform 280ms ease;
}

.visual-service:hover img {
	transform: scale(1.025);
}

.visual-service figcaption {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	display: flex;
	flex-direction: column;
	padding: 1rem;
	color: var(--color-white);
	line-height: 1.3;
}

.visual-service figcaption strong {
	font-size: 1.02rem;
}

.visual-service figcaption span {
	margin-top: 0.25rem;
	color: #d7e6f9;
	font-size: 0.8rem;
}

.section {
	padding: clamp(4rem, 8vw, 7rem) 0;
}

.section--compact {
	padding-top: 0;
}

.section--surface {
	background: var(--color-surface);
}

.section--brand {
	background: #092f62;
	color: var(--color-white);
}

.section--brand h2,
.section--brand a {
	color: var(--color-white);
}

.section-heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 1.5rem;
	margin-bottom: 2.5rem;
}

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

.section-heading--center {
	display: block;
	max-width: 700px;
	margin-inline: auto;
	text-align: center;
}

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

.service-card,
.content-card {
	overflow: hidden;
	background: var(--color-white);
	border: 1px solid var(--color-line);
	border-radius: var(--radius-md);
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.service-card {
	display: flex;
	flex-direction: column;
	padding: 1.5rem;
}

.service-card:hover,
.content-card:hover {
	transform: translateY(-3px);
	border-color: rgba(11, 99, 206, 0.35);
	box-shadow: var(--shadow-sm);
}

.service-card__icon {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	margin-bottom: 1.2rem;
	background: #eaf3ff;
	border-radius: 12px;
	color: var(--color-brand);
	font-weight: 800;
}

.service-card h3 a,
.content-card h2 a {
	color: var(--color-ink);
	text-decoration: none;
}

.service-card p,
.content-card p {
	color: var(--color-muted);
}

.service-card .card-link {
	margin-top: auto;
}

.process-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 2rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.process-grid li {
	position: relative;
	padding: 2rem;
	background: var(--color-white);
	border-radius: var(--radius-md);
}

.process-grid li > span {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	margin-bottom: 1.2rem;
	background: var(--color-brand);
	border-radius: 50%;
	color: var(--color-white);
	font-weight: 800;
}

.process-grid p {
	margin-bottom: 0;
	color: var(--color-muted);
}

.reviews-section {
	border-top: 1px solid var(--color-line);
}

.reviews-heading {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: end;
	gap: 2rem;
	margin-bottom: 2.5rem;
}

.reviews-heading h2 {
	margin-bottom: 0;
}

.reviews-summary {
	display: grid;
	grid-template-columns: auto auto;
	align-items: center;
	gap: 0.1rem 0.75rem;
	min-width: 230px;
}

.reviews-summary strong {
	grid-row: 1 / 3;
	font-size: 2.75rem;
	line-height: 1;
	letter-spacing: -0.06em;
}

.reviews-summary__stars,
.review-card__stars {
	color: var(--color-accent);
	letter-spacing: 0.08em;
}

.reviews-summary > span:not(.reviews-summary__stars) {
	color: var(--color-muted);
	font-size: 0.88rem;
}

.reviews-summary a {
	grid-column: 1 / -1;
	margin-top: 0.45rem;
	font-weight: 700;
	text-decoration: none;
}

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

.review-card {
	display: flex;
	flex-direction: column;
	min-height: 250px;
	margin: 0;
	padding: 1.5rem;
	background: var(--color-surface);
	border: 1px solid var(--color-line);
	border-radius: var(--radius-md);
}

.review-card__stars {
	margin-bottom: 1rem;
	font-size: 0.95rem;
}

.review-card p {
	margin-bottom: 1.5rem;
	color: var(--color-ink);
	font-size: 1.02rem;
	line-height: 1.65;
}

.review-card footer {
	display: flex;
	flex-direction: column;
	margin-top: auto;
	line-height: 1.35;
}

.review-card footer span {
	margin-top: 0.2rem;
	color: var(--color-muted);
	font-size: 0.82rem;
}

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

.brand-list a {
	display: grid;
	place-items: center;
	min-height: 78px;
	padding: 0.8rem;
	background: var(--color-surface);
	border: 1px solid var(--color-line);
	border-radius: var(--radius-sm);
	color: var(--color-ink);
	font-weight: 760;
	text-align: center;
	text-decoration: none;
}

.brand-list a:hover {
	border-color: var(--color-brand);
	color: var(--color-brand);
}

.request-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
	align-items: start;
	gap: clamp(2rem, 7vw, 6rem);
}

.request-grid > div:first-child > p:not(.eyebrow) {
	color: #d7e6f9;
	font-size: 1.08rem;
}

.request-details {
	margin: 2rem 0 0;
	padding: 0;
	list-style: none;
}

.request-details li {
	margin: 0.5rem 0;
}

.request-card {
	padding: clamp(1.25rem, 4vw, 2.25rem);
	background: var(--color-white);
	border-radius: var(--radius-lg);
	color: var(--color-ink);
	box-shadow: var(--shadow-lg);
}

.request-card a {
	color: var(--color-brand);
}

.request-card a:hover {
	color: var(--color-brand-dark);
}

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

.form-field {
	margin-bottom: 1rem;
}

.form-field label {
	display: block;
	margin-bottom: 0.4rem;
	font-size: 0.9rem;
	font-weight: 700;
}

.form-field input,
.form-field textarea {
	width: 100%;
	padding: 0.78rem 0.9rem;
	background: var(--color-white);
	border: 1px solid #cbd2dc;
	border-radius: 0.5rem;
	color: var(--color-ink);
}

.form-field input:focus,
.form-field textarea:focus {
	border-color: var(--color-brand);
	box-shadow: 0 0 0 3px rgba(11, 99, 206, 0.12);
	outline: 0;
}

.form-field--honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.form-consent {
	font-size: 0.86rem;
}

.form-consent label {
	display: flex;
	align-items: flex-start;
	gap: 0.55rem;
}

.form-consent input {
	width: 18px;
	height: 18px;
	margin-top: 0.2rem;
	flex: 0 0 auto;
}

.form-notice {
	padding: 0.85rem 1rem;
	border-radius: var(--radius-sm);
	font-weight: 650;
}

.form-notice--success {
	background: #e9f8ef;
	color: #166534;
}

.form-notice--error {
	background: #fff0f0;
	color: #9f1239;
}

.editor-hint,
.empty-state {
	padding: 2rem;
	background: var(--color-surface);
	border: 1px dashed #b8c1cc;
	border-radius: var(--radius-md);
}

.content-layout {
	padding-top: clamp(3.5rem, 8vw, 6rem);
	padding-bottom: clamp(4rem, 8vw, 7rem);
}

.entry {
	max-width: 820px;
	margin-inline: auto;
}

.entry-header {
	margin-bottom: 2rem;
}

.entry-header h1 {
	font-size: clamp(2.25rem, 5vw, 3.75rem);
}

.entry-lead,
.archive-description {
	color: var(--color-muted);
	font-size: 1.16rem;
}

.entry-meta {
	margin-bottom: 0.65rem;
	color: var(--color-muted);
	font-size: 0.86rem;
}

.entry-hero {
	margin: 0 0 2.5rem;
}

.entry-hero img {
	width: 100%;
	border-radius: var(--radius-md);
}

.entry--about {
	max-width: var(--container);
}

.about-page-hero {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
	align-items: center;
	gap: clamp(2rem, 6vw, 5rem);
	margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
}

.about-page-hero .entry-header,
.entry-hero--about {
	margin: 0;
}

.entry-hero--about {
	overflow: hidden;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-md);
}

.entry-hero--about img {
	display: block;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	border-radius: 0;
}

.entry--about > .entry-content {
	max-width: 820px;
	margin-inline: auto;
}

.entry-content > * + * {
	margin-top: 1.25em;
}

.entry-content .wp-block-columns {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
	margin-block: 2rem 3rem;
}

.entry-content .wp-block-column {
	padding: 1.5rem;
	background: var(--color-surface);
	border: 1px solid var(--color-line);
	border-radius: var(--radius-md);
}

.entry-content .wp-block-column h3 {
	margin-bottom: 0.75rem;
}

.entry-content .wp-block-column p:last-child {
	margin-bottom: 0;
}

.entry-content h2,
.entry-content h3 {
	margin-top: 1.8em;
}

.entry-content a {
	word-break: break-word;
}

.entry-content .alignwide {
	width: min(100vw - 2rem, var(--container));
	max-width: none;
	margin-left: 50%;
	transform: translateX(-50%);
}

.inline-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	max-width: 920px;
	margin: 4rem auto 0;
	padding: 2rem;
	background: var(--color-surface);
	border-radius: var(--radius-md);
}

.inline-cta h2 {
	margin-bottom: 0;
	font-size: clamp(1.4rem, 3vw, 2rem);
}

.post-navigation {
	max-width: 920px;
	margin: 2.5rem auto 0;
}

.post-navigation .nav-links {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
}

.archive-header {
	padding: clamp(3.5rem, 8vw, 6rem) 0;
	background: var(--color-surface);
}

.archive-header h1 {
	margin-bottom: 0;
	font-size: clamp(2.25rem, 5vw, 3.75rem);
}

.archive-description {
	max-width: 760px;
	margin-top: 1rem;
}

.archive-content {
	padding-top: 4rem;
	padding-bottom: 6rem;
}

.content-card__image {
	display: block;
	aspect-ratio: 3 / 2;
	overflow: hidden;
}

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

.content-card__body {
	padding: 1.5rem;
}

.content-card h2 {
	font-size: 1.35rem;
}

.nav-links {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	margin-top: 3rem;
}

.page-numbers {
	display: grid;
	place-items: center;
	min-width: 42px;
	height: 42px;
	padding: 0 0.55rem;
	border: 1px solid var(--color-line);
	border-radius: 0.45rem;
	text-decoration: none;
}

.page-numbers.current {
	background: var(--color-brand);
	border-color: var(--color-brand);
	color: var(--color-white);
}

.contact-grid {
	display: grid;
	grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
	gap: 3rem;
}

.contact-panel {
	padding: 1.75rem;
	background: var(--color-surface);
	border-radius: var(--radius-md);
}

.contact-panel h2 {
	font-size: 1.6rem;
}

.contact-data div {
	margin-bottom: 1.2rem;
}

.contact-data dt {
	color: var(--color-muted);
	font-size: 0.82rem;
	font-weight: 750;
	text-transform: uppercase;
}

.contact-data dd {
	margin: 0.2rem 0 0;
	font-weight: 650;
}

.contact-data__note {
	max-width: 34rem;
	margin: 0.55rem 0 0;
	color: var(--color-muted);
	font-size: 0.92rem;
	line-height: 1.55;
}

.contact-arrival {
	display: grid;
	grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
	align-items: center;
	gap: clamp(1.5rem, 5vw, 3.5rem);
	margin-top: 3rem;
	padding: clamp(1.25rem, 3vw, 2rem);
	border: 1px solid var(--color-line);
	border-radius: var(--radius-lg);
	background: var(--color-surface);
}

.contact-arrival__media {
	overflow: hidden;
	margin: 0;
	border-radius: var(--radius-md);
}

.contact-arrival__media img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
}

.contact-arrival__copy h2 {
	margin: 0.3rem 0 1rem;
}

.contact-arrival__copy p:not(.eyebrow) {
	color: var(--color-muted);
}

.contact-map {
	margin-top: 3rem;
	padding: clamp(1.25rem, 3vw, 2rem);
	border: 1px solid var(--color-line);
	border-radius: var(--radius-lg);
	background: var(--color-white);
	box-shadow: var(--shadow-sm);
}

.contact-map__header {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 1.5rem;
	margin-bottom: 1.5rem;
}

.contact-map__header h2 {
	margin: 0.25rem 0 0;
}

.contact-map__frame {
	overflow: hidden;
	border-radius: var(--radius-md);
	background: var(--color-surface);
}

.contact-map__frame iframe {
	display: block;
	width: 100%;
	min-height: 420px;
	border: 0;
}

.contact-form-section {
	max-width: 820px;
	margin: 4rem auto 0;
	padding: clamp(1.5rem, 4vw, 2.5rem);
	border: 1px solid var(--color-line);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
}

.not-found {
	display: grid;
	place-items: center;
	min-height: 64vh;
	padding: 5rem 0;
	text-align: center;
}

.not-found__inner {
	max-width: 680px;
}

.not-found__inner .hero__actions {
	justify-content: center;
}

.site-footer {
	padding-top: 4rem;
	background: #0d1728;
	color: #cbd5e1;
}

.site-footer a {
	color: #e2e8f0;
}

.site-brand--footer,
.site-brand--footer:hover {
	color: var(--color-white);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr 1fr;
	gap: 3rem;
}

.footer-grid > div:first-child p {
	max-width: 340px;
	margin-top: 1.2rem;
}

.footer-title {
	margin-bottom: 1rem;
	color: var(--color-white);
	font-size: 1rem;
	letter-spacing: 0;
}

.site-footer .menu {
	align-items: flex-start;
	flex-direction: column;
	gap: 0.6rem;
}

.contact-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.contact-list li {
	margin-bottom: 0.55rem;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 2rem;
	margin-top: 3rem;
	padding-top: 1.5rem;
	padding-bottom: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	font-size: 0.84rem;
}

.footer-bottom p {
	margin: 0;
}

@media (max-width: 1050px) {
	.header-actions .header-phone { display: none; }
	.primary-navigation ul { gap: 0.9rem; }
	.visual-services__track { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.brand-list { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
	.header-inner { flex-wrap: wrap; }
	.js .menu-toggle { display: inline-flex; }
	.primary-navigation {
		order: 4;
		width: 100%;
		margin: 0;
		padding-bottom: 1rem;
	}
	.js .primary-navigation { display: none; }
	.js .primary-navigation.is-open { display: block; }
	.primary-navigation ul {
		align-items: stretch;
		flex-direction: column;
		gap: 0;
	}
	.primary-navigation a {
		display: block;
		padding: 0.7rem 0;
		border-bottom: 1px solid var(--color-line);
	}
	.header-actions { margin-left: auto; }
	.js .header-actions { margin-left: 0; }
	.request-grid { grid-template-columns: 1fr; }
	.hero__grid {
		grid-template-columns: 1fr;
		grid-template-areas: "intro" "summary" "visual" "support";
	}
	.visual-services__heading { grid-template-columns: 1fr; gap: 0.75rem; }
	.hero__visual { width: min(100%, 680px); }
	.card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.reviews-track { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.brand-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.contact-grid { grid-template-columns: 1fr; }
	.about-page-hero { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
	.container { width: min(100% - 1.25rem, var(--container)); }
	.header-inner { min-height: 66px; gap: 0.6rem; }
	.site-brand__mark { width: 38px; height: 38px; }
	.site-brand__text small { display: none; }
	.header-actions .button { display: none; }
	.hero { padding: 1rem 0 2.75rem; }
	.hero::after { display: none; }
	.hero__grid { gap: 1rem; }
	.hero__intro { align-self: auto; }
	.hero h1 { font-size: clamp(2.3rem, 11vw, 3.25rem); }
	.hero__lead { margin-bottom: 1rem; font-size: 1.03rem; line-height: 1.55; }
	.hero__actions {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.6rem;
	}
	.hero__actions .button {
		width: 100%;
		min-width: 0;
		padding-inline: 0.6rem;
		font-size: 0.86rem;
	}
	.hero__visual { width: 100%; margin: 0.25rem 0 0; border-radius: var(--radius-md); box-shadow: 0 14px 34px rgba(80, 53, 24, 0.12); }
	.hero__visual img { aspect-ratio: 16 / 9; object-position: center; }
	.hero__visual--real { aspect-ratio: 4 / 5; }
	.hero__visual--real img { height: 100%; aspect-ratio: auto; }
	.hero__support { padding-top: 0.15rem; }
	.hero__contact-row { flex-wrap: nowrap; justify-content: space-between; gap: 0.5rem; padding: 0.7rem 0; border-bottom: 1px solid var(--color-line); }
	.hero__phone-link { width: auto; padding: 0; border: 0; white-space: nowrap; }
	.hero__phone-link span { display: none; }
	.messenger-links { flex: 0 0 auto; gap: 0.35rem; }
	.messenger-link { width: 40px; height: 40px; }
	.hero__benefits { flex-direction: column; gap: 0.55rem; }
	.visual-services { overflow: hidden; }
	.visual-services__track {
		grid-template-columns: none;
		grid-auto-flow: column;
		grid-auto-columns: minmax(78%, 1fr);
		margin-right: -0.625rem;
		padding-right: 0.625rem;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
	}
	.visual-services__track::-webkit-scrollbar { display: none; }
	.visual-service { scroll-snap-align: start; }
	.section-heading { align-items: flex-start; flex-direction: column; }
	.reviews-heading { grid-template-columns: 1fr; align-items: start; gap: 1.25rem; }
	.reviews-heading h2 { max-width: 15ch; }
	.reviews-summary { min-width: 0; }
	.reviews-track {
		grid-template-columns: none;
		grid-auto-flow: column;
		grid-auto-columns: minmax(86%, 1fr);
		align-items: start;
		margin-right: -0.625rem;
		padding-right: 0.625rem;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
	}
	.reviews-track::-webkit-scrollbar { display: none; }
	.review-card { min-height: 250px; scroll-snap-align: start; }
	.card-grid,
	.process-grid,
	.form-grid,
	.entry-content .wp-block-columns { grid-template-columns: 1fr; }
	.brand-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.request-grid { gap: 2rem; }
	.request-card { padding: 1rem; border-radius: var(--radius-md); }
	.contact-map__header { align-items: stretch; flex-direction: column; }
	.contact-map__header .button { width: 100%; }
	.contact-map__frame iframe { min-height: 340px; }
	.contact-arrival { grid-template-columns: 1fr; }
	.inline-cta { align-items: flex-start; flex-direction: column; }
	.post-navigation .nav-links { flex-direction: column; }
	.footer-grid { grid-template-columns: 1fr; gap: 2rem; }
	.footer-bottom { flex-direction: column; gap: 0.6rem; }
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
}
