:root {
	--primary-color: #8f1721;
	--accent-color: #0f766e;
	--text-color: #202124;
	--muted-color: #69707a;
	--light-bg: #f6f7f8;
	--border-color: #e7e9ec;
	--container-width: 1160px;
	--transition: 220ms ease;
	--shadow-soft: 0 18px 45px rgba(17, 24, 39, .10);
	--shadow-strong: 0 24px 70px rgba(17, 24, 39, .16);
}

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

body {
	margin: 0;
	font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	line-height: 1.65;
	color: var(--text-color);
	background: #fff;
	text-rendering: optimizeLegibility;
}

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

a:hover {
	color: var(--primary-color);
}

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

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

.narrow-content {
	max-width: 820px;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
}

.screen-reader-text:focus {
	z-index: 10000;
	top: 12px;
	left: 12px;
	width: auto;
	height: auto;
	padding: 10px 14px;
	clip: auto;
	background: #fff;
	border: 2px solid var(--primary-color);
}

.site-header {
	background: rgba(255, 255, 255, .94);
	border-bottom: 1px solid rgba(143, 23, 33, .12);
	box-shadow: 0 12px 30px rgba(17, 24, 39, .08);
	backdrop-filter: blur(14px);
	position: sticky;
	top: 0;
	z-index: 1000;
	transition: box-shadow var(--transition), border-color var(--transition), background var(--transition);
}

.site-header.is-scrolled {
	background: rgba(255, 255, 255, .98);
	border-bottom-color: rgba(143, 23, 33, .18);
	box-shadow: 0 18px 42px rgba(17, 24, 39, .14);
}

.site-header__inner {
	min-height: 82px;
	display: flex;
	align-items: center;
	gap: 30px;
}

.site-branding {
	min-width: 0;
	margin-right: auto;
}

.site-title {
	margin: 0;
	font-family: Inter, system-ui, sans-serif;
	font-size: clamp(1.35rem, 2vw, 1.75rem);
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0;
	text-transform: capitalize;
}

.site-title a {
	color: var(--text-color);
	background: linear-gradient(135deg, #111827 0%, var(--primary-color) 58%, #7f1d1d 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.custom-logo {
	max-height: 56px;
	width: auto;
}

.main-navigation ul,
.footer-navigation ul {
	display: flex;
	align-items: center;
	gap: 34px;
	margin: 0;
	padding: 0;
	list-style: none;
}

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

.main-navigation a {
	display: block;
	position: relative;
	padding: 10px 0;
	font-family: Inter, system-ui, sans-serif;
	font-size: .86rem;
	font-weight: 700;
	letter-spacing: .02em;
	text-transform: capitalize;
}

.main-navigation a::after {
	position: absolute;
	right: 0;
	bottom: 2px;
	left: 0;
	height: 2px;
	content: "";
	background: var(--primary-color);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform var(--transition);
}

.main-navigation a:hover::after,
.main-navigation .current-menu-item > a::after {
	transform: scaleX(1);
	transform-origin: left;
}

.header-phone {
	display: inline-flex;
	align-items: center;
	min-height: 40px;
	padding: 0 14px;
	border: 1px solid var(--border-color);
	border-radius: 6px;
	font-weight: 700;
	white-space: nowrap;
}

.header-phone--cta {
	border-color: var(--primary-color);
	background: var(--primary-color);
	color: #fff;
	box-shadow: 0 0 0 0 rgba(143, 23, 33, .34), 0 12px 26px rgba(143, 23, 33, .22);
	animation: cta-pulse 2s infinite;
}

.header-phone--cta:hover {
	color: #fff;
	filter: brightness(.96);
}

@keyframes cta-pulse {
	70% {
		box-shadow: 0 0 0 10px rgba(143, 23, 33, 0), 0 12px 26px rgba(143, 23, 33, .22);
	}
}

.menu-toggle {
	display: none;
	min-height: 40px;
	padding: 0 14px;
	border: 1px solid var(--border-color);
	border-radius: 6px;
	background: #fff;
	font: inherit;
	font-weight: 700;
	cursor: pointer;
}

.archive-hero {
	position: relative;
	overflow: hidden;
	padding: 42px 0 34px;
	background:
		linear-gradient(135deg, rgba(143, 23, 33, .12) 0%, rgba(15, 118, 110, .10) 48%, rgba(255, 255, 255, .92) 100%),
		linear-gradient(180deg, #fff 0%, #f8fafc 100%);
	border-bottom: 1px solid rgba(143, 23, 33, .10);
}

.archive-hero::before {
	position: absolute;
	right: max(20px, calc((100vw - var(--container-width)) / 2));
	bottom: -1px;
	width: min(520px, 48vw);
	height: 150px;
	content: "";
	opacity: .18;
	background:
		linear-gradient(to top, rgba(17, 24, 39, .34) 0 42px, transparent 42px),
		repeating-linear-gradient(90deg, transparent 0 34px, rgba(17, 24, 39, .24) 34px 64px, transparent 64px 92px);
	clip-path: polygon(0 100%, 0 48%, 7% 48%, 7% 34%, 16% 34%, 16% 58%, 26% 58%, 26% 22%, 35% 22%, 35% 50%, 47% 50%, 47% 30%, 58% 30%, 58% 60%, 70% 60%, 70% 38%, 81% 38%, 81% 54%, 100% 54%, 100% 100%);
}

.archive-hero .container {
	position: relative;
	z-index: 1;
}

.archive-hero h1,
.not-found h1,
.single-entry .entry-title {
	max-width: 900px;
	margin: 0;
	font-family: Inter, system-ui, sans-serif;
	font-size: clamp(1.55rem, 2.6vw, 2.35rem);
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: 0;
	text-transform: capitalize;
}

.archive-hero p {
	max-width: 760px;
	margin: 14px 0 0;
	color: var(--muted-color);
	font-size: 1.05rem;
}

.content-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 42px;
	padding: 34px 0 56px;
}

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

.post-card {
	overflow: hidden;
	background: #fff;
	border: 1px solid rgba(231, 233, 236, .78);
	border-radius: 15px;
	box-shadow: var(--shadow-soft);
	transition: transform var(--transition), box-shadow var(--transition);
}

.post-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-strong);
}

.post-card__thumbnail img {
	width: 100%;
	aspect-ratio: 1.67;
	object-fit: cover;
}

.post-card__body {
	padding: 20px;
}

.entry-title {
	margin: 0 0 12px;
	font-family: Inter, system-ui, sans-serif;
	font-size: 1.35rem;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: 0;
	text-transform: capitalize;
}

.entry-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	align-items: center;
	margin-bottom: 14px;
	color: #828a96;
	font-size: .78rem;
	font-weight: 500;
}

.meta-separator {
	color: #c8cdd4;
	font-size: .9rem;
	line-height: 1;
}

.entry-excerpt p {
	margin: 0 0 18px;
	color: var(--muted-color);
}

.read-more {
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	padding: 0 16px;
	border-radius: 8px;
	background: var(--primary-color);
	color: #fff;
	box-shadow: 0 12px 24px rgba(143, 23, 33, .22);
	font-family: Inter, system-ui, sans-serif;
	font-weight: 700;
	transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
}

.read-more:hover {
	color: #fff;
	transform: scale(1.04);
	box-shadow: 0 16px 30px rgba(143, 23, 33, .28);
	filter: brightness(.94);
}

.single-entry {
	max-width: 820px;
}

.single-entry .entry-header {
	margin-bottom: 24px;
}

.single-post-thumbnail {
	margin: 0 0 28px;
}

.single-post-thumbnail img {
	width: 100%;
	border-radius: 15px;
}

.entry-content {
	font-size: 1.06rem;
}

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

.entry-content h2,
.entry-content h3 {
	margin-top: 1.8em;
	font-family: Inter, system-ui, sans-serif;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0;
	text-transform: capitalize;
}

.entry-content a {
	color: var(--primary-color);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.entry-content ul,
.entry-content ol {
	padding-left: 1.4rem;
}

.entry-content blockquote {
	margin-left: 0;
	padding: 16px 20px;
	border-left: 4px solid var(--accent-color);
	background: var(--light-bg);
}

.entry-footer {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 28px;
}

.entry-footer a,
.tags-links a {
	display: inline-flex;
	padding: 6px 10px;
	border-radius: 6px;
	background: var(--light-bg);
	color: var(--text-color);
	font-size: .9rem;
	font-weight: 700;
}

.widget-area {
	display: grid;
	align-content: start;
	gap: 18px;
}

.widget,
.kral-neighborhoods--sidebar {
	padding: 22px;
	border: 1px solid rgba(231, 233, 236, .86);
	border-radius: 15px;
	background: #fff;
	box-shadow: 0 14px 38px rgba(17, 24, 39, .07);
}

.widget-title {
	position: relative;
	margin: 0 0 18px;
	padding-bottom: 12px;
	font-family: Inter, system-ui, sans-serif;
	font-size: 1.05rem;
	font-weight: 700;
	text-transform: capitalize;
}

.widget-title::after {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 44px;
	height: 3px;
	content: "";
	border-radius: 999px;
	background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.widget ul {
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: widget-list;
}

.kral-neighborhoods ul {
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: widget-list;
}

.kral-neighborhoods--sidebar ul {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}

.widget li,
.kral-neighborhoods li {
	position: relative;
	margin-top: 10px;
	padding-left: 24px;
	counter-increment: widget-list;
}

.kral-neighborhoods--sidebar li {
	margin-top: 0;
}

.widget li::before {
	position: absolute;
	top: .12em;
	left: 0;
	width: 16px;
	height: 16px;
	content: counter(widget-list);
	border-radius: 50%;
	background: rgba(143, 23, 33, .10);
	color: var(--primary-color);
	font-size: .66rem;
	font-weight: 700;
	line-height: 16px;
	text-align: center;
}

.kral-neighborhoods li::before {
	position: absolute;
	top: .08em;
	left: 0;
	content: "";
	width: 16px;
	height: 16px;
	background: currentColor;
	color: var(--primary-color);
	-webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2a7 7 0 0 0-7 7c0 5.25 7 13 7 13s7-7.75 7-13a7 7 0 0 0-7-7Zm0 9.5A2.5 2.5 0 1 1 12 6a2.5 2.5 0 0 1 0 5.5Z'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2a7 7 0 0 0-7 7c0 5.25 7 13 7 13s7-7.75 7-13a7 7 0 0 0-7-7Zm0 9.5A2.5 2.5 0 1 1 12 6a2.5 2.5 0 0 1 0 5.5Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.widget a,
.kral-neighborhoods a {
	transition: color var(--transition), padding-left var(--transition);
}

.widget a:hover,
.kral-neighborhoods a:hover {
	color: var(--primary-color);
	padding-left: 3px;
}

.kral-breadcrumbs-container {
	margin-bottom: 14px;
	padding: 0 0 10px;
	border-bottom: 1px solid var(--border-color);
	color: var(--muted-color);
	font-size: .9rem;
}

.nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

.page-numbers,
.post-navigation a {
	display: inline-flex;
	padding: 10px 13px;
	border: 1px solid var(--border-color);
	border-radius: 6px;
	background: #fff;
	font-weight: 700;
}

.page-numbers.current {
	background: var(--primary-color);
	border-color: var(--primary-color);
	color: #fff;
}

.site-footer {
	position: relative;
	overflow: hidden;
	padding: 54px 0;
	border-top: 1px solid rgba(255, 255, 255, .08);
	background:
		linear-gradient(135deg, rgba(143, 23, 33, .18), rgba(15, 118, 110, .12)),
		#0b1220;
	color: #fff;
}

.site-footer__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) minmax(180px, .8fr) minmax(220px, .9fr);
	gap: 38px;
	align-items: start;
}

.footer-brand {
	display: block;
	margin-bottom: 10px;
	font-family: Inter, system-ui, sans-serif;
	font-size: 1.35rem;
	font-weight: 700;
	letter-spacing: 0;
	text-transform: capitalize;
}

.footer-title {
	position: relative;
	margin: 0 0 16px;
	padding-bottom: 10px;
	font-family: Inter, system-ui, sans-serif;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0;
	text-transform: capitalize;
}

.footer-title::after {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 36px;
	height: 2px;
	content: "";
	background: var(--primary-color);
}

.site-footer p {
	max-width: 430px;
	margin: 0;
	color: rgba(255, 255, 255, .72);
	font-size: .95rem;
}

.footer-navigation ul,
.footer-fallback-links,
.footer-utility-links,
.site-footer__contact ul {
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-navigation a {
	color: rgba(255, 255, 255, .82);
}

.footer-navigation a:hover,
.footer-fallback-links a:hover,
.site-footer__contact a:hover {
	color: #fff;
}

.footer-fallback-links a,
.footer-utility-links a,
.site-footer__contact,
.site-footer__contact a {
	color: rgba(255, 255, 255, .78);
}

.footer-utility-links {
	margin-top: 18px;
	padding-top: 18px;
	border-top: 1px solid rgba(255, 255, 255, .12);
}

.site-footer .kral-neighborhoods {
	margin-top: 22px;
}

.site-footer .kral-neighborhoods ul {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px 12px;
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: widget-list;
}

.site-footer .kral-neighborhoods li {
	margin-top: 0;
}

.whatsapp-float {
	position: fixed;
	right: 22px;
	bottom: 22px;
	z-index: 9999;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	min-height: 58px;
	padding: 0;
	border-radius: 50%;
	background: #25d366;
	color: #fff;
	box-shadow: 0 14px 34px rgba(37, 211, 102, .36);
	font-weight: 700;
	animation: whatsapp-pulse 1.9s infinite;
}

.whatsapp-float:hover {
	color: #fff;
	transform: translateY(-2px) scale(1.04);
	filter: brightness(.95);
}

.whatsapp-float svg {
	width: 31px;
	height: 31px;
	fill: currentColor;
}

@keyframes whatsapp-pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(37, 211, 102, .42), 0 14px 34px rgba(37, 211, 102, .36);
	}

	70% {
		box-shadow: 0 0 0 14px rgba(37, 211, 102, 0), 0 14px 34px rgba(37, 211, 102, .36);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 14px 34px rgba(37, 211, 102, .36);
	}
}

.not-found {
	padding: 72px 0;
}

.search-form {
	position: relative;
	display: block;
	max-width: 560px;
}

.search-form label {
	flex: 1;
}

.search-field {
	width: 100%;
	min-height: 48px;
	padding: 0 58px 0 18px;
	border: 1px solid rgba(231, 233, 236, .95);
	border-radius: 50px;
	background: #f9fafb;
	font: inherit;
	transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.search-field:focus {
	outline: 0;
	border-color: rgba(143, 23, 33, .55);
	background: #fff;
	box-shadow: 0 0 0 4px rgba(143, 23, 33, .10);
}

.search-submit {
	position: absolute;
	top: 5px;
	right: 5px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	min-height: 38px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: var(--primary-color);
	color: #fff;
	cursor: pointer;
	box-shadow: 0 12px 24px rgba(143, 23, 33, .20);
	transition: transform var(--transition), filter var(--transition);
}

.search-submit svg {
	width: 19px;
	height: 19px;
	fill: currentColor;
}

.home-seo-section {
	padding: 24px 0 4px;
	background: #fff;
}

.home-seo-card {
	padding: 24px;
	border: 1px solid rgba(231, 233, 236, .9);
	border-radius: 15px;
	background: linear-gradient(180deg, #fff 0%, #fbfcfd 100%);
	box-shadow: 0 14px 38px rgba(17, 24, 39, .06);
}

.home-seo-card summary {
	cursor: pointer;
	color: var(--primary-color);
	font-family: Inter, system-ui, sans-serif;
	font-weight: 700;
}

.home-seo-content {
	columns: 2 320px;
	column-gap: 36px;
	margin-top: 18px;
	color: var(--muted-color);
}

.home-seo-content h2,
.home-seo-content h3 {
	break-after: avoid;
	margin: 0 0 12px;
	color: var(--text-color);
	font-family: Inter, system-ui, sans-serif;
	font-weight: 700;
	line-height: 1.2;
	text-transform: capitalize;
}

.home-seo-content h3 {
	margin-top: 22px;
	font-size: 1.15rem;
}

.home-seo-content p {
	margin: 0 0 16px;
}

.home-seo-silo {
	break-inside: avoid;
	margin-top: 20px;
	padding-top: 18px;
	border-top: 1px solid var(--border-color);
}

.home-seo-silo ul {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px 14px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.home-seo-silo a {
	color: var(--primary-color);
	font-weight: 700;
}

.mobile-sticky-bar {
	display: none;
}

.mobile-sticky-bar a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	border-radius: 50px;
	color: #fff;
	font-weight: 700;
}

.mobile-sticky-bar__whatsapp {
	background: #25d366;
}

.mobile-sticky-bar__call {
	background: var(--primary-color);
}

.search-submit:hover {
	transform: translateY(-1px);
	filter: brightness(.95);
}

@media (max-width: 900px) {
	.site-header__inner {
		flex-wrap: wrap;
		padding: 12px 0;
	}

	.menu-toggle {
		display: inline-flex;
		align-items: center;
	}

	.main-navigation {
		display: none;
		width: 100%;
		order: 5;
	}

	.main-navigation.is-open {
		display: block;
	}

	.main-navigation ul {
		display: grid;
		gap: 0;
		border-top: 1px solid var(--border-color);
	}

	.main-navigation a {
		padding: 12px 0;
	}

	.content-layout {
		grid-template-columns: 1fr;
	}

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

	.widget-area {
		order: 2;
	}

	.site-footer__inner {
		grid-template-columns: 1fr 1fr;
	}

	.site-footer__about {
		grid-column: 1 / -1;
	}
}

@media (max-width: 620px) {
	body {
		padding-bottom: 74px;
		font-size: 16px;
	}

	.container {
		width: min(100% - 28px, var(--container-width));
	}

	.archive-hero {
		padding: 34px 0 26px;
	}

	.content-layout {
		padding-top: 28px;
	}

	.header-phone {
		display: none;
	}

	.site-footer__inner,
	.footer-navigation ul {
		display: grid;
	}

	.site-footer__inner {
		grid-template-columns: 1fr;
	}

	.search-form {
		display: grid;
	}

	.home-seo-card {
		padding: 18px;
	}

	.home-seo-content {
		columns: auto;
	}

	.kral-neighborhoods--sidebar ul,
	.home-seo-silo ul,
	.site-footer .kral-neighborhoods ul {
		grid-template-columns: 1fr;
	}

	.mobile-sticky-bar {
		position: fixed;
		right: 12px;
		bottom: 12px;
		left: 12px;
		z-index: 10000;
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
		padding: 8px;
		border: 1px solid rgba(255, 255, 255, .24);
		border-radius: 22px;
		background: rgba(11, 18, 32, .92);
		box-shadow: 0 16px 40px rgba(17, 24, 39, .25);
		backdrop-filter: blur(12px);
	}

	.whatsapp-float {
		display: none;
	}
}
