:root {
	--brand: #1473e6;
	--brand-dark: #0a57b6;
	--accent: #ffb703;
	--ink: #0d1b2a;
	--muted: #5d6b7a;
	--surface: #f4f7fb;
	--line: #dce4ed;
	--white: #fff;
	--radius: 18px;
	--shadow: 0 18px 50px rgba(13, 27, 42, 0.1);
	--container: min(1180px, calc(100% - 40px));
	--content: min(760px, calc(100% - 40px));
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--white);
	color: var(--ink);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.65;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

body.menu-open {
	overflow: hidden;
}

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

a {
	color: var(--brand);
	text-underline-offset: 0.18em;
}

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

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

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

h1,
h2,
h3,
h4 {
	margin: 0 0 0.75em;
	color: var(--ink);
	font-weight: 800;
	letter-spacing: -0.035em;
	line-height: 1.1;
	text-wrap: balance;
}

h1 {
	font-size: clamp(2.5rem, 6vw, 5.35rem);
}

h2 {
	font-size: clamp(2rem, 4vw, 3.6rem);
}

h3 {
	font-size: clamp(1.2rem, 2vw, 1.5rem);
}

p {
	margin: 0 0 1.25rem;
}

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

.container--content {
	width: var(--content);
}

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

.screen-reader-text:focus {
	z-index: 100000;
	top: 8px;
	left: 8px;
	width: auto;
	height: auto;
	padding: 12px 18px;
	clip: auto;
	background: var(--white);
	color: var(--ink);
	box-shadow: var(--shadow);
}

.skip-link:focus {
	position: fixed !important;
}

.button,
.wp-element-button,
button[type="submit"],
input[type="submit"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 0.75rem 1.35rem;
	border: 2px solid var(--brand);
	border-radius: 12px;
	background: var(--brand);
	color: var(--white);
	font-weight: 750;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus,
.wp-element-button:hover,
.wp-element-button:focus {
	border-color: var(--brand-dark);
	background: var(--brand-dark);
	color: var(--white);
	transform: translateY(-2px);
}

.button--small {
	min-height: 44px;
	padding-inline: 1rem;
}

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

.button--ghost:hover,
.button--ghost:focus {
	border-color: var(--ink);
	background: var(--ink);
}

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

.button--outline-light {
	border-color: rgba(255, 255, 255, 0.55);
	background: transparent;
	color: var(--white);
}

.text-link {
	font-weight: 750;
	text-decoration: none;
}

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

.site-header {
	position: sticky;
	z-index: 1000;
	top: 0;
	border-bottom: 1px solid rgba(220, 228, 237, 0.8);
	background: rgba(255, 255, 255, 0.94);
	backdrop-filter: blur(14px);
}

.site-header__inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	min-height: 78px;
	gap: 2rem;
}

.site-brand__name,
.site-footer__brand {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	color: var(--ink);
	font-size: 1.15rem;
	font-weight: 850;
	letter-spacing: -0.025em;
	text-decoration: none;
}

.site-brand__name span {
	color: var(--brand);
}

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

.site-brand__mobile {
	display: none;
}

.primary-navigation {
	justify-self: center;
}

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

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

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

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

.header-phone {
	display: grid;
	color: var(--ink);
	line-height: 1.15;
	text-align: right;
	text-decoration: none;
}

.header-phone span {
	color: var(--muted);
	font-size: 0.72rem;
	text-transform: uppercase;
}

.menu-toggle {
	display: none;
	padding: 8px;
	border: 0;
	background: transparent;
}

.menu-toggle__line {
	display: block;
	width: 25px;
	height: 2px;
	margin: 5px 0;
	background: var(--ink);
	transition: transform 180ms ease;
}

.hero {
	position: relative;
	overflow: hidden;
	padding: clamp(4rem, 9vw, 8.5rem) 0;
	background:
		radial-gradient(circle at 82% 22%, rgba(20, 115, 230, 0.14), transparent 34%),
		linear-gradient(145deg, #f8fbff 0%, #fff 60%);
}

.hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
	align-items: center;
	gap: clamp(3rem, 8vw, 7rem);
}

.hero__lead {
	max-width: 670px;
	color: var(--muted);
	font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	margin-top: 2rem;
	gap: 0.8rem;
}

.hero__checks {
	display: flex;
	flex-wrap: wrap;
	padding: 0;
	margin: 2rem 0 0;
	gap: 0.75rem 1.5rem;
	color: var(--muted);
	font-size: 0.9rem;
	list-style: none;
}

.hero__checks li::before {
	margin-right: 0.4rem;
	color: var(--brand);
	content: "✓";
	font-weight: 900;
}

.hero__visual {
	position: relative;
	min-height: 480px;
}

.hero__appliance {
	position: absolute;
	inset: 0 7% 0 0;
	overflow: hidden;
	border: 12px solid #e8eef5;
	border-radius: 38px;
	background: linear-gradient(145deg, #fff, #dce4ed);
	box-shadow: var(--shadow);
	transform: rotate(3deg);
}

.hero__appliance-panel {
	height: 24%;
	border-bottom: 1px solid #c7d2df;
	background: linear-gradient(180deg, #fff, #eff3f7);
}

.hero__appliance-panel::before,
.hero__appliance-panel::after {
	position: absolute;
	top: 7%;
	width: 34px;
	height: 34px;
	border: 6px solid #1e2c3c;
	border-radius: 50%;
	content: "";
}

.hero__appliance-panel::before {
	left: 14%;
}

.hero__appliance-panel::after {
	right: 14%;
}

.hero__appliance-door {
	width: 66%;
	aspect-ratio: 1;
	margin: 18% auto;
	border: 18px solid #25364a;
	border-radius: 50%;
	background:
		radial-gradient(circle at 50% 55%, rgba(20, 115, 230, 0.38), transparent 48%),
		#0d1b2a;
	box-shadow: inset 0 0 0 9px #718096;
}

.hero__badge {
	position: absolute;
	right: -1rem;
	bottom: 3rem;
	display: grid;
	padding: 1rem 1.25rem;
	border-radius: 14px;
	background: var(--accent);
	box-shadow: 0 15px 35px rgba(255, 183, 3, 0.28);
	transform: rotate(-3deg);
}

.hero__badge strong {
	font-size: 1.25rem;
}

.hero__badge span {
	font-size: 0.82rem;
}

.trust-strip {
	border-block: 1px solid var(--line);
	background: var(--white);
}

.trust-strip__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.trust-strip__grid > div {
	display: grid;
	padding: 1.5rem;
	border-right: 1px solid var(--line);
	text-align: center;
}

.trust-strip__grid > div:last-child {
	border-right: 0;
}

.trust-strip span {
	color: var(--muted);
	font-size: 0.86rem;
}

.section {
	padding: clamp(4.5rem, 9vw, 8rem) 0;
}

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

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

.section-heading h2 {
	max-width: 820px;
	margin-bottom: 0;
}

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

.service-card,
.post-card {
	position: relative;
	overflow: hidden;
	padding: 1.6rem;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--white);
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover,
.post-card:hover {
	border-color: rgba(20, 115, 230, 0.35);
	box-shadow: var(--shadow);
	transform: translateY(-5px);
}

.service-card__media,
.post-card__media {
	display: block;
	overflow: hidden;
	margin: -1.6rem -1.6rem 1.4rem;
	aspect-ratio: 3 / 2;
	background: var(--surface);
}

.service-card__media img,
.post-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 350ms ease;
}

.service-card:hover img,
.post-card:hover img {
	transform: scale(1.035);
}

.service-card__number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	margin-bottom: 3rem;
	border-radius: 12px;
	background: rgba(20, 115, 230, 0.1);
	color: var(--brand);
	font-weight: 850;
}

.service-card h2,
.service-card h3,
.post-card h2 {
	font-size: 1.35rem;
}

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

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

.locations-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
	align-items: start;
	gap: clamp(3rem, 8vw, 7rem);
}

.locations-layout > div:first-child p:last-child {
	color: var(--muted);
	font-size: 1.1rem;
}

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

.location-list a,
.location-list > span {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 64px;
	padding: 1rem 1.2rem;
	border: 1px solid var(--line);
	border-radius: 12px;
	background: var(--white);
	color: var(--ink);
	font-weight: 750;
	text-decoration: none;
}

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

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

.contact-panel {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
	align-items: center;
	padding: clamp(2rem, 6vw, 5rem);
	border-radius: 28px;
	background:
		radial-gradient(circle at 95% 10%, rgba(255, 255, 255, 0.2), transparent 28%),
		var(--brand);
	color: var(--white);
	gap: 3rem;
}

.contact-panel h2,
.contact-panel .eyebrow {
	color: var(--white);
}

.contact-panel__actions {
	display: grid;
	gap: 0.8rem;
}

.entry-hero {
	padding: clamp(3.5rem, 8vw, 7rem) 0;
	background: var(--surface);
}

.entry-hero h1 {
	font-size: clamp(2.4rem, 5vw, 4.5rem);
}

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

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

.entry-content {
	padding-top: clamp(2.5rem, 5vw, 4.5rem);
	padding-bottom: clamp(4rem, 8vw, 7rem);
}

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

.entry-content > .alignwide {
	width: min(1180px, calc(100vw - 40px));
	max-width: none;
	margin-left: 50%;
	transform: translateX(-50%);
}

.entry-content > .alignfull {
	width: 100vw;
	max-width: none;
	margin-left: 50%;
	transform: translateX(-50%);
}

.entry-content img,
.featured-media img {
	border-radius: var(--radius);
}

.featured-media {
	margin-top: -2.5rem;
}

.archive-header {
	max-width: 800px;
	margin-bottom: 3rem;
}

.archive-header h1 {
	font-size: clamp(2.4rem, 5vw, 4.5rem);
}

.empty-state {
	padding: 4rem 0;
	text-align: center;
}

.empty-state form {
	display: flex;
	max-width: 520px;
	margin: 1.5rem auto;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="search"],
select,
textarea {
	width: 100%;
	padding: 0.8rem 1rem;
	border: 1px solid #bcc8d6;
	border-radius: 10px;
	background: var(--white);
	color: var(--ink);
}

input:focus,
select:focus,
textarea:focus {
	border-color: var(--brand);
	outline: 3px solid rgba(20, 115, 230, 0.15);
}

.comments-area {
	padding-bottom: 5rem;
}

.comment-list {
	padding: 0;
	list-style: none;
}

.comment-body {
	padding: 1.25rem;
	margin-bottom: 1rem;
	border: 1px solid var(--line);
	border-radius: 12px;
}

.site-footer {
	padding-top: 4rem;
	background: var(--ink);
	color: rgba(255, 255, 255, 0.72);
}

.footer-widgets {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	padding-bottom: 3rem;
	gap: 2rem;
}

.footer-widget__title {
	color: var(--white);
	font-size: 1.1rem;
}

.site-footer__main {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr 1fr;
	padding-bottom: 3rem;
	gap: 3rem;
}

.site-footer__brand,
.site-footer a {
	color: var(--white);
}

.site-footer__contact {
	display: grid;
	align-content: start;
	gap: 0.5rem;
}

.site-footer ul {
	flex-wrap: wrap;
}

.site-footer__bottom {
	display: flex;
	justify-content: space-between;
	padding-block: 1.25rem;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	font-size: 0.85rem;
}

.site-footer__bottom p {
	margin: 0;
}

.elementor-full-width {
	overflow: hidden;
}

.appliancepress-hide-title .entry-hero {
	display: none;
}

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

@media (max-width: 1050px) {
	.site-header__inner {
		grid-template-columns: auto 1fr auto;
	}

	.menu-toggle {
		display: block;
		grid-column: 3;
		grid-row: 1;
		justify-self: end;
	}

	.primary-navigation {
		position: fixed;
		inset: 78px 0 auto;
		display: none;
		max-height: calc(100vh - 78px);
		padding: 1.25rem 20px 2rem;
		overflow-y: auto;
		border-top: 1px solid var(--line);
		background: var(--white);
		box-shadow: var(--shadow);
	}

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

	.primary-navigation ul {
		align-items: stretch;
		flex-direction: column;
		gap: 0;
	}

	.primary-navigation a {
		display: block;
		padding: 0.8rem 0;
		border-bottom: 1px solid var(--line);
	}

	.header-actions {
		grid-column: 2;
		grid-row: 1;
		justify-self: end;
	}

	.header-phone {
		display: none;
	}
}

@media (max-width: 800px) {
	:root {
		--container: min(100% - 28px, 1180px);
		--content: min(100% - 28px, 760px);
	}

	.site-header__inner {
		min-height: 68px;
		gap: 0.75rem;
	}

	body {
		padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px));
	}

	.mobile-cta-bar {
		position: fixed;
		z-index: 99999;
		right: 0;
		bottom: 0;
		left: 0;
		display: grid;
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		padding: 8px max(10px, env(safe-area-inset-right, 0px)) calc(8px + env(safe-area-inset-bottom, 0px)) max(10px, env(safe-area-inset-left, 0px));
		border-top: 1px solid rgba(13, 27, 42, 0.12);
		background: rgba(255, 255, 255, 0.97);
		box-shadow: 0 -10px 30px rgba(13, 27, 42, 0.14);
		backdrop-filter: blur(14px);
		gap: 8px;
	}

	.mobile-cta-bar__button {
		display: flex;
		min-width: 0;
		min-height: 52px;
		align-items: center;
		justify-content: center;
		padding: 7px 10px;
		border: 2px solid var(--ink);
		border-radius: 12px;
		background: var(--ink);
		color: var(--white);
		font-size: 0.88rem;
		line-height: 1.05;
		text-align: left;
		text-decoration: none;
		gap: 8px;
	}

	.mobile-cta-bar__button:hover,
	.mobile-cta-bar__button:focus {
		color: var(--white);
		transform: none;
	}

	.mobile-cta-bar__button--book {
		border-color: var(--brand);
		background: var(--brand);
	}

	.mobile-cta-bar__button span {
		display: grid;
		min-width: 0;
		gap: 3px;
	}

	.mobile-cta-bar__button strong {
		overflow: hidden;
		font-weight: 800;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.mobile-cta-bar__button small {
		overflow: hidden;
		color: rgba(255, 255, 255, 0.74);
		font-size: 0.66rem;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.primary-navigation {
		inset-block-start: 68px;
		max-height: calc(100vh - 68px);
	}

	.custom-logo {
		max-width: 160px;
		max-height: 46px;
	}

	.site-brand__mobile {
		display: block;
	}

	.site-brand__mobile img {
		width: auto;
		max-width: 150px;
		max-height: 46px;
	}

	.site-brand__mobile + .site-brand__desktop,
	.site-brand__mobile ~ .site-brand__desktop {
		display: none;
	}

	.header-actions .button {
		display: none;
	}

	.header-actions {
		display: none;
	}

	.hero {
		padding-top: 4rem;
	}

	.hero__grid,
	.locations-layout,
	.contact-panel,
	.site-footer__main {
		grid-template-columns: 1fr;
	}

	.hero__visual {
		min-height: 360px;
	}

	.hero__appliance {
		inset-inline: 10%;
	}

	.trust-strip__grid,
	.card-grid,
	.post-grid,
	.footer-widgets {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.trust-strip__grid > div:nth-child(2) {
		border-right: 0;
	}

	.trust-strip__grid > div:nth-child(-n+2) {
		border-bottom: 1px solid var(--line);
	}

	.section-heading {
		align-items: start;
		flex-direction: column;
	}

	.contact-panel {
		border-radius: 20px;
	}
}

@media (max-width: 800px) and (max-height: 480px) and (orientation: landscape) {
	body {
		padding-bottom: 0;
	}

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

@media (max-width: 560px) {
	h1 {
		font-size: clamp(2.3rem, 13vw, 3.4rem);
	}

	.hero__actions,
	.hero__actions .button {
		width: 100%;
	}

	.hero__visual {
		min-height: 300px;
	}

	.hero__appliance-door {
		border-width: 12px;
	}

	.card-grid,
	.post-grid,
	.footer-widgets,
	.location-list {
		grid-template-columns: 1fr;
	}

	.service-card__number {
		margin-bottom: 1.8rem;
	}

	.site-footer__bottom {
		flex-direction: column;
		gap: 0.5rem;
	}
}

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

	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}
