/*
 * hs-theme-14 — elawaeil.com (شركة زين), built from the "Briva" kit.
 *
 * Design system from the kit's global styles (templates/global.json):
 *   colours  headings #272727, text #696969 (5.6:1 on white), the kit's
 *            blue #1486f7 — too light for white words (3.6:1), so buttons
 *            deepen it to a gradient #1486f7→#0b5fc0 and blue words use
 *            #0b67cc (5.2:1) — the kit's yellow #ffd03b for the top bar,
 *            frosted labels, discs and the pre-footer box (dark words only:
 *            yellow is never a button, owner rule), pale blue #e7f2fe bands,
 *            #93c9ff hairlines, light grey #f5f5f5 blog cards
 *   buttons  white words (owner): call on the deepened blue, WhatsApp on a
 *            deep green; on the blue card the call button turns white with
 *            blue words so it never melts into the card
 *   type     Nunito Sans / Lato in the kit; Cairo stands in
 *   shape    white «sheets» with 48px corners over pale-blue bands, 14px
 *            photo cards, the soft blue-to-yellow gradient on the hero and
 *            banners, yellow sparkles, a blue running ribbon of services
 *
 * RTL first: logical properties only.
 */

/* stylelint-disable no-descending-specificity -- every selector is scoped to its own component class, so source order never decides a conflict. */

:root {
	--z-blue: #1486f7;
	--z-blue-deep: #0b5fc0;
	--z-blue-word: #0b67cc;
	--z-yellow: #ffd03b;
	--z-yellow-soft: #ffeaa6;
	--z-pale: #e7f2fe;
	--z-hair: #93c9ff;
	--z-ink: #272727;
	--z-text: #5f5f5f;
	--z-grey: #f5f5f5;
	--z-line: #e3ecf6;
	--z-sheet: 48px;
	--z-radius: 14px;
	--z-grad: linear-gradient(115deg, #62abfa 0%, #d8eaff 38%, #fff7dc 66%, #ffe383 100%);
	--z-call: linear-gradient(135deg, #1486f7 0%, #0b5fc0 100%);
	--z-wa: linear-gradient(135deg, #0f8446 0%, #0a5e32 100%);
	--z-shadow: 0 18px 44px rgb(20 134 247 / 12%);
	--z-wrap: 1140px;
	--z-gutter: clamp(1rem, 4vw, 1.5rem);
	--z-band: clamp(4rem, 8vw, 6.5rem);
	--z-h2: clamp(1.6rem, 1.15rem + 1.8vw, 2.45rem);

	/* hs-core's floating call button: the deepened blue. */
	--hsc-main: #0b67cc;
	--hsc-main-ink: #fff;
}

/* ------------------------------------------------------------- base */

body {
	background: #fff;
	color: var(--z-text);
	font-size: 1rem;
	line-height: 1.9;
}

h1,
h2,
h3 {
	color: var(--z-ink);
	line-height: 1.35;
}

a {
	color: var(--z-blue-word);
}

img {
	display: block;
}

.hst14-icon {
	flex: none;
	inline-size: 1.2em;
	block-size: 1.2em;
}

.hst14-wrap {
	inline-size: 100%;
	max-inline-size: calc(var(--z-wrap) + 2 * var(--z-gutter));
	margin-inline: auto;
	padding-inline: var(--z-gutter);
}

.hst14-narrow {
	max-inline-size: calc(50rem + 2 * var(--z-gutter));
}

.hst14-band {
	padding-block: var(--z-band);
}

.hst14-band--blue {
	background: var(--z-pale);
}

.hst14-band--grey {
	background: #fafafa;
}

/* The kit's pale-blue band with big rounded ends. */
.hst14-band--round {
	border-radius: var(--z-sheet);
}

/* The kit's white sheet riding over the hero's foot. */
.hst14-sheet {
	position: relative;
	margin-block-start: calc(-1 * var(--z-sheet));
	border-radius: var(--z-sheet) var(--z-sheet) 0 0;
	background: #fff;
}

.hst14-text {
	margin: 0 0 1rem;
	font-size: 0.9688rem;
}

.hst14-lead {
	max-inline-size: 40rem;
	margin: -0.75rem auto 2.5rem;
	text-align: center;
}

/* ---------------------------------------------------------- headings */

.hst14-head {
	margin-block-end: 2rem;
}

.hst14-head--center {
	max-inline-size: 46rem;
	margin-inline: auto;
	text-align: center;
}

.hst14-label {
	margin: 0 0 0.35rem;
	color: var(--z-blue-word);
	font-size: 0.9375rem;
	font-weight: 700;
}

.hst14-label a {
	color: inherit;
	text-decoration: none;
}

.hst14-h2 {
	margin: 0;
	font-size: var(--z-h2);
	font-weight: 800;
}

.hst14-headrow {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
	align-items: end;
	gap: 1rem 3rem;
	margin-block-end: 2.25rem;
}

.hst14-headrow .hst14-head {
	margin: 0;
}

.hst14-headrow__side .hst14-text {
	margin-block-end: 0.9rem;
}

/* ----------------------------------------------------------- buttons */

.hst14-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.55rem;
	padding: 0.75rem 1.6rem;
	border: 0;
	border-radius: 999px;
	background: var(--z-call);
	box-shadow: 0 10px 24px rgb(11 95 192 / 26%);
	color: #fff;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.4;
	text-decoration: none;
	transition: filter 0.2s, transform 0.2s;
}

.hst14-btn:hover,
.hst14-btn:focus-visible {
	color: #fff;
	filter: brightness(1.1);
	transform: translateY(-1px);
}

.hst14-btn--wa {
	background: var(--z-wa);
	box-shadow: 0 10px 24px rgb(10 94 50 / 22%);
}

.hst14-btn--line {
	background: #fff;
	box-shadow: inset 0 0 0 1.5px var(--z-blue);
	color: var(--z-blue-word);
}

.hst14-btn--line:hover,
.hst14-btn--line:focus-visible {
	background: var(--z-call);
	color: #fff;
	filter: none;
}

.hst14-btn--sm {
	padding: 0.55rem 1.2rem;
	font-size: 0.9375rem;
}

.hst14-btn .hst14-icon {
	inline-size: 1.1rem;
	block-size: 1.1rem;
}

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

/* On the blue card: the call button white with blue words, WhatsApp keeps
   its green with a white ring. */
.hst14-pair--onblue .hst14-btn--call {
	background: #fff;
	box-shadow: 0 10px 22px rgb(6 49 99 / 25%);
	color: var(--z-blue-deep);
}

.hst14-pair--onblue .hst14-btn--call:hover,
.hst14-pair--onblue .hst14-btn--call:focus-visible {
	color: var(--z-blue-deep);
}

.hst14-pair--onblue .hst14-btn--wa {
	box-shadow: 0 0 0 2px rgb(255 255 255 / 80%), 0 10px 22px rgb(6 49 99 / 25%);
}

/* The kit's blue disc with a white icon, and its yellow disc with a dark
   one. */
.hst14-bdisc,
.hst14-ydisc {
	display: inline-grid;
	flex: none;
	place-items: center;
	inline-size: 2.4rem;
	block-size: 2.4rem;
	border-radius: 50%;
	background: var(--z-call);
	color: #fff;
}

.hst14-ydisc {
	background: var(--z-yellow);
	color: var(--z-ink);
}

.hst14-bdisc .hst14-icon,
.hst14-ydisc .hst14-icon {
	inline-size: 1.15rem;
	block-size: 1.15rem;
}

.hst14-bdisc--xs {
	inline-size: 1.25rem;
	block-size: 1.25rem;
}

.hst14-bdisc--xs .hst14-icon {
	inline-size: 0.75rem;
	block-size: 0.75rem;
}

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

.hst14-checks li {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	color: var(--z-ink);
	font-size: 0.9375rem;
	font-weight: 600;
	line-height: 1.5;
}

.hst14-checks .hst14-icon {
	inline-size: 1.25rem;
	block-size: 1.25rem;
	padding: 0.2rem;
	border: 1.5px solid var(--z-blue);
	border-radius: 50%;
	color: var(--z-blue-word);
	stroke-width: 3;
}

.hst14-checks--row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem 1.75rem;
}

.hst14-ychecks {
	display: grid;
	gap: 1.4rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.hst14-ychecks li {
	display: flex;
	align-items: flex-start;
	gap: 0.85rem;
	color: var(--z-ink);
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.55;
}

.hst14-ychecks .hst14-ydisc {
	inline-size: 2rem;
	block-size: 2rem;
}

.hst14-ychecks .hst14-icon {
	stroke-width: 3;
}

.hst14-sparkles {
	fill: var(--z-yellow);
}

/* ------------------------------------------------------------ header */

.hsb-header {
	position: relative;
	z-index: 30;
	background: #fff;
	box-shadow: 0 1px 0 var(--z-line);
}

.hst14-topbar {
	background: var(--z-yellow);
	color: var(--z-ink);
	font-size: 0.875rem;
	font-weight: 600;
}

.hst14-topbar__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.25rem 1.5rem;
	min-block-size: 40px;
}

.hst14-topbar__line {
	margin: 0;
}

.hst14-topbar__info {
	display: flex;
	flex-wrap: wrap;
	gap: 0.25rem 1.5rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.hst14-topbar__info li {
	display: flex;
	align-items: center;
	gap: 0.4rem;
}

.hst14-topbar__info a {
	color: var(--z-ink);
	text-decoration: none;
}

.hst14-header {
	display: flex;
	align-items: center;
	gap: 2rem;
	min-block-size: 82px;
}

.hst14-header__logo .hsb-logo img,
.hst14-header__logo .custom-logo {
	block-size: 50px;
	inline-size: auto;
}

.hst14-header__nav {
	flex: 1;
	min-inline-size: 0;
}

.hst14-menu {
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	gap: 0 1.5rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.hst14-menu a {
	display: block;
	padding-block: 1.1rem;
	color: var(--z-ink);
	font-size: 0.9688rem;
	font-weight: 600;
	text-decoration: none;
	white-space: nowrap;
}

.hst14-menu a:hover,
.hst14-menu .current-menu-item > a {
	color: var(--z-blue-word);
}

.hst14-menu .sub-menu {
	display: none;
}

.hst14-header__end {
	display: flex;
	align-items: center;
	gap: 0.7rem;
}

.hst14-navsearch {
	position: relative;
}

.hst14-navsearch__toggle {
	display: grid;
	place-items: center;
	inline-size: 42px;
	block-size: 42px;
	border-radius: 50%;
	background: var(--z-pale);
	color: var(--z-blue-word);
	cursor: pointer;
	list-style: none;
}

.hst14-navsearch__toggle::-webkit-details-marker {
	display: none;
}

.hst14-navsearch[open] .hst14-navsearch__toggle {
	background: var(--z-yellow);
	color: var(--z-ink);
}

.hst14-navsearch__panel {
	position: absolute;
	z-index: 40;
	inset-block-start: calc(100% + 0.9rem);
	inset-inline-end: 0;
	inline-size: min(24rem, 86vw);
	padding: 0.8rem;
	border-radius: var(--z-radius);
	background: #fff;
	box-shadow: var(--z-shadow);
}

.hst14-toggle {
	display: none;
	inline-size: 42px;
	block-size: 42px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: var(--z-yellow);
}

.hst14-toggle__bars,
.hst14-toggle__bars::before,
.hst14-toggle__bars::after {
	display: block;
	inline-size: 18px;
	block-size: 2px;
	margin-inline: auto;
	background: var(--z-ink);
	transition: transform 0.2s;
}

.hst14-toggle__bars {
	position: relative;
}

.hst14-toggle__bars::before,
.hst14-toggle__bars::after {
	position: absolute;
	inset-inline-start: 0;
	content: "";
}

.hst14-toggle__bars::before {
	inset-block-start: -6px;
}

.hst14-toggle__bars::after {
	inset-block-start: 6px;
}

.hst14-toggle[aria-expanded="true"] .hst14-toggle__bars {
	background: transparent;
}

.hst14-toggle[aria-expanded="true"] .hst14-toggle__bars::before {
	transform: translateY(6px) rotate(45deg);
}

.hst14-toggle[aria-expanded="true"] .hst14-toggle__bars::after {
	transform: translateY(-6px) rotate(-45deg);
}

/* -------------------------------------------------------------- hero */

.hst14-hero {
	position: relative;
	padding-block: 3.5rem 4rem;
	border-radius: 0 0 var(--z-sheet) var(--z-sheet);
	background: var(--z-grad);
	overflow: hidden;
}

.hst14-hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.8fr) minmax(0, 0.85fr);
	align-items: end;
	gap: 1.5rem;
}

.hst14-hero__copy {
	align-self: center;
	padding-block-end: 1rem;
}

.hst14-hero__title {
	margin: 0 0 1rem;
	font-size: clamp(2rem, 1.3rem + 2.6vw, 3.3rem);
	font-weight: 800;
	line-height: 1.25;
}

.hst14-hero__text {
	max-inline-size: 30rem;
	margin: 0 0 1.5rem;
	color: #444;
	font-size: 1.0313rem;
}

.hst14-hero__ticks {
	display: grid;
	gap: 0.75rem;
	max-inline-size: 18rem;
	margin: 1.75rem 0 0;
	padding: 1.25rem 1.35rem;
	border-radius: var(--z-radius);
	background: var(--z-yellow);
	box-shadow: 0 16px 34px rgb(160 120 0 / 18%);
	list-style: none;
}

.hst14-hero__ticks li {
	display: flex;
	align-items: center;
	gap: 0.7rem;
	color: var(--z-ink);
	font-weight: 700;
	line-height: 1.4;
}

.hst14-hero__ticks .hst14-bdisc {
	inline-size: 2rem;
	block-size: 2rem;
}

.hst14-hero__photo {
	align-self: stretch;
	margin: 0;
	overflow: hidden;
	border-radius: 999px 999px var(--z-radius) var(--z-radius);
	box-shadow: 0 0 0 10px rgb(255 255 255 / 55%);
}

.hst14-hero__photo img {
	inline-size: 100%;
	block-size: 100%;
	min-block-size: 26rem;
	object-fit: cover;
}

.hst14-hero__side {
	display: grid;
	gap: 1.25rem;
	align-self: stretch;
	align-content: space-between;
}

.hst14-hero__note {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	align-items: center;
	gap: 0.1rem 0.75rem;
	margin: 0;
	color: var(--z-ink);
	font-size: 0.875rem;
	line-height: 1.5;
}

.hst14-hero__note .hst14-bdisc {
	grid-row: span 2;
}

.hst14-hero__note strong {
	font-size: 1.9rem;
	font-weight: 800;
	line-height: 1.1;
}

/* The kit's blue «Book your service» card, here the request card. */
.hst14-request {
	padding: 1.5rem 1.35rem;
	border-radius: var(--z-radius);
	background: var(--z-call);
	box-shadow: 0 24px 50px rgb(11 95 192 / 35%);
	color: #fff;
}

.hst14-request__title {
	margin: 0 0 1rem;
	color: #fff;
	font-size: 1.25rem;
	font-weight: 800;
	text-align: center;
}

.hst14-request__list {
	display: grid;
	gap: 0.5rem;
	margin: 0 0 1.1rem;
	padding: 0;
	list-style: none;
}

.hst14-request__list a {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	padding: 0.5rem 0.85rem;
	border-radius: 10px;
	background: #fff;
	color: var(--z-ink);
	font-size: 0.9375rem;
	font-weight: 600;
	text-decoration: none;
}

.hst14-request__list a:hover {
	background: var(--z-yellow);
}

.hst14-request__list .hst14-icon {
	color: var(--z-blue-word);
}

.hst14-request .hst14-pair .hst14-btn {
	flex: 1 1 100%;
}

/* ---------------------------------------------------------- marquee */

.hst14-marquee {
	position: relative;
	z-index: 2;
	margin-block: 1.75rem 0.5rem;
	background: linear-gradient(135deg, #1486f7 0%, #0b5fc0 100%);
	overflow: hidden;
}

/* The running line as the kit's blue ribbon: solid white words with the
   yellow sparkles between them (the outlined Arabic letters showed their
   inner joints — owner rejected it). */
.hst14-marquee__track {
	display: flex;
	align-items: center;
	gap: 1.75rem;
	inline-size: max-content;
	padding-block: 0.9rem;
	color: #fff;
	font-size: clamp(1.25rem, 0.95rem + 1.2vw, 1.9rem);
	font-weight: 800;
	line-height: 1.4;
	white-space: nowrap;
	animation: hst14-marquee 45s linear infinite;
}

.hst14-marquee__star {
	color: var(--z-yellow);
	font-size: 0.85em;
}

@keyframes hst14-marquee {
	to {
		transform: translateX(50%);
	}
}

@media (prefers-reduced-motion: reduce) {
	.hst14-marquee__track {
		animation: none;
	}
}

.hst14-marquee + .hst14-sheet {
	margin-block-start: 0;
	border-radius: 0 0 var(--z-sheet) var(--z-sheet);
	padding-block-start: 3rem;
}

/* ------------------------------------------------------------ about */

.hst14-about {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr) minmax(0, 1fr);
	align-items: center;
	gap: 2.5rem;
}

.hst14-about__copy .hst14-checks {
	padding-block-end: 1.4rem;
	border-block-end: 1px solid var(--z-line);
}

.hst14-about__photo {
	margin: 0;
	overflow: hidden;
	border-radius: var(--z-radius);
	aspect-ratio: 4 / 5;
	box-shadow: var(--z-shadow);
}

.hst14-about__photo img {
	inline-size: 100%;
	block-size: 100%;
	object-fit: cover;
}

/* ----------------------------------------------------- photo cards */

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

.hst14-pcard {
	display: block;
	color: inherit;
	text-decoration: none;
}

.hst14-pcard__media {
	position: relative;
	margin: 0;
	overflow: hidden;
	border-radius: var(--z-radius);
	aspect-ratio: 1 / 1;
	background: var(--z-pale);
}

.hst14-pcard__media img {
	inline-size: 100%;
	block-size: 100%;
	object-fit: cover;
	transition: transform 0.4s;
}

.hst14-pcard:hover .hst14-pcard__media img {
	transform: scale(1.05);
}

/* The kit's yellow frosted label along the photo's foot. */
.hst14-pcard__label {
	position: absolute;
	inset-block-end: 0;
	inset-inline-start: 0;
	display: flex;
	align-items: center;
	gap: 0.7rem;
	inline-size: min(88%, 100% - 1rem);
	padding: 0.85rem 1rem;
	border-start-end-radius: var(--z-radius);
	background: rgb(255 208 59 / 88%);
	backdrop-filter: blur(6px);
}

.hst14-pcard__title {
	margin: 0;
	color: var(--z-ink);
	font-size: 1.0625rem;
	font-weight: 800;
	line-height: 1.35;
}

.hst14-pcard__text {
	margin: 0.8rem 0 0;
	font-size: 0.9375rem;
}

/* The kit's wide photo with the yellow «Ready for a cleaner» box. */
.hst14-ready {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr);
	min-block-size: 20rem;
	margin-block-start: 1.5rem;
	overflow: hidden;
	border-radius: var(--z-radius);
}

.hst14-ready__photo {
	position: absolute;
	inset: 0;
	margin: 0;
}

.hst14-ready__photo img {
	inline-size: 100%;
	block-size: 100%;
	object-fit: cover;
}

.hst14-ready__box {
	position: relative;
	grid-column: 2;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem;
	margin: 1.25rem;
	padding: 1.75rem;
	border-radius: var(--z-radius);
	background: rgb(255 208 59 / 90%);
	backdrop-filter: blur(6px);
}

.hst14-ready__title {
	margin: 0;
	color: var(--z-ink);
	font-size: clamp(1.35rem, 1rem + 1.2vw, 1.8rem);
	font-weight: 800;
	line-height: 1.35;
}

.hst14-ready__text {
	margin: 0;
	color: var(--z-ink);
}

.hst14-ready__fig {
	display: grid;
	margin: 0;
	color: var(--z-ink);
	line-height: 1.3;
}

.hst14-ready__fig strong {
	font-size: 2.4rem;
	font-weight: 800;
}

/* --------------------------------------------------------------- why */

.hst14-why {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	align-items: center;
	gap: 3.5rem;
}

.hst14-why__visual {
	position: relative;
}

.hst14-why__visual .hst14-sparkles {
	position: absolute;
	z-index: 2;
	inset-block-start: -1.5rem;
	inset-inline-end: -0.75rem;
	inline-size: 5.5rem;
	block-size: 5.5rem;
}

.hst14-why__photo {
	margin: 0;
	overflow: hidden;
	border-radius: 999px 999px var(--z-radius) var(--z-radius);
	aspect-ratio: 5 / 6;
	background: radial-gradient(circle at 50% 70%, #cfe5ff, #fff 70%);
}

.hst14-why__photo img {
	inline-size: 100%;
	block-size: 100%;
	object-fit: cover;
}

/* The kit's «Call us 24/7» pill. */
.hst14-callpill {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.75rem 1rem;
	padding: 0.75rem 0.9rem;
	border-radius: 999px;
	background: #fff;
	box-shadow: 0 14px 36px rgb(20 60 110 / 12%);
}

.hst14-callpill__text {
	display: grid;
	flex: 1;
	margin: 0;
	color: var(--z-text);
	font-size: 0.8125rem;
	line-height: 1.4;
}

.hst14-callpill__text a {
	color: var(--z-ink);
	font-size: 1rem;
	font-weight: 800;
	text-decoration: none;
}

/* ----------------------------------------- «more services» sheet */

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

.hst14-more__lead {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	padding: 1.25rem;
	border-radius: var(--z-radius);
	background: var(--z-call);
	color: #fff;
}

.hst14-more__title {
	margin: 0;
	color: #fff;
	font-size: 1.2rem;
	font-weight: 800;
	line-height: 1.45;
}

.hst14-more__lead figure,
.hst14-more__card figure {
	margin: 0;
	overflow: hidden;
	border-radius: 10px;
	aspect-ratio: 4 / 3;
}

.hst14-more__lead img,
.hst14-more__card img {
	inline-size: 100%;
	block-size: 100%;
	object-fit: cover;
}

.hst14-more__card {
	position: relative;
	padding: 0.75rem 0.75rem 1.25rem;
	border: 2px solid var(--z-yellow);
	border-radius: var(--z-radius);
	background: var(--z-yellow);
	color: var(--z-ink);
	text-align: center;
}

.hst14-more__card .hst14-bdisc {
	margin-block: -1.5rem 0.4rem;
	box-shadow: 0 0 0 4px var(--z-yellow);
	position: relative;
}

.hst14-more__name {
	margin: 0 0 0.35rem;
	font-size: 1.0625rem;
	font-weight: 800;
}

.hst14-more__card p {
	margin: 0;
	color: #3b3b3b;
	font-size: 0.9063rem;
	line-height: 1.7;
}

/* The kit's blue client band, here the facts (designed number cards). */
.hst14-facts {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1rem;
	margin: 1.75rem 0 0;
	padding: 1.25rem;
	border-radius: var(--z-radius);
	background: var(--z-call);
}

.hst14-fact {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	align-items: center;
	gap: 0 0.8rem;
	padding: 0.9rem 1rem;
	border-radius: 12px;
	background: rgb(255 255 255 / 12%);
	box-shadow: inset 0 0 0 1px rgb(255 255 255 / 25%);
}

.hst14-fact .hst14-ydisc {
	grid-row: span 2;
	inline-size: 2.75rem;
	block-size: 2.75rem;
}

.hst14-fact dt {
	color: #fff;
	font-size: 1.6rem;
	font-weight: 800;
	line-height: 1.2;
}

.hst14-fact dd {
	margin: 0;
	color: #eaf4ff;
	font-size: 0.875rem;
	line-height: 1.4;
}

/* ------------------------------------- «Ready for a spotless home» */

.hst14-spot {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 1.75rem;
}

.hst14-spot__side {
	display: grid;
	gap: 1.25rem;
	align-content: start;
}

.hst14-spot__photo,
.hst14-spot__panelphoto {
	margin: 0;
	overflow: hidden;
	border-radius: var(--z-radius);
	aspect-ratio: 16 / 10;
}

.hst14-spot__photo img,
.hst14-spot__panelphoto img {
	inline-size: 100%;
	block-size: 100%;
	object-fit: cover;
}

.hst14-spot__side .hst14-checks {
	margin: 0;
	padding-block-end: 1.25rem;
	border-block-end: 1px solid var(--z-line);
}

.hst14-spot__panel {
	display: grid;
	gap: 0.25rem;
	align-content: start;
	padding: 1.75rem;
	border-radius: var(--z-radius);
	background: var(--z-yellow-soft);
}

.hst14-spot__panel .hst14-label {
	color: #1f4f96;
}

.hst14-spot__panel .hst14-text {
	color: #3b3b3b;
}

.hst14-spot__panel .hst14-pair {
	margin-block: 0.25rem 1.25rem;
}

/* ---------------------------------------------------------- banners */

.hst14-banner {
	position: relative;
	border-radius: 0 0 var(--z-sheet) var(--z-sheet);
	background: var(--z-grad);
	overflow: hidden;
}

.hst14-banner__inner {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	align-items: center;
	gap: 2rem;
	min-block-size: 15rem;
	padding-block: 3rem 3.75rem;
	text-align: center;
}

.hst14-banner--photo .hst14-banner__inner {
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
	text-align: start;
}

.hst14-banner__title {
	margin: 0 0 0.6rem;
	font-size: clamp(1.9rem, 1.3rem + 2.3vw, 3.1rem);
	font-weight: 800;
	line-height: 1.3;
}

.hst14-banner__text {
	max-inline-size: 34rem;
	margin: 0 0 0.9rem;
	color: #444;
	font-size: 1.0313rem;
}

.hst14-banner__photo {
	position: relative;
	margin: 0;
	overflow: hidden;
	border-radius: var(--z-sheet) var(--z-radius) var(--z-sheet) var(--z-radius);
	aspect-ratio: 16 / 10;
	box-shadow: 0 0 0 8px rgb(255 255 255 / 60%), var(--z-shadow);
}

.hst14-banner__photo img {
	inline-size: 100%;
	block-size: 100%;
	object-fit: cover;
}

.hst14-banner__sparkles {
	position: absolute;
	inset-block-start: 1.5rem;
	inset-inline-end: 1rem;
	inline-size: 4.5rem;
	block-size: 4.5rem;
}

.hst14-banner .hsb-breadcrumbs {
	color: var(--z-ink);
	font-size: 0.9375rem;
	font-weight: 600;
}

.hst14-banner .hsb-breadcrumbs a {
	color: var(--z-blue-word);
	text-decoration: none;
}

.hst14-banner--post .hst14-banner__inner {
	max-inline-size: calc(52rem + 2 * var(--z-gutter));
}

/* ------------------------------------------------- about page parts */

.hst14-diff {
	position: relative;
	margin-block: 0;
	overflow: hidden;
	border-radius: 999px;
	background: var(--z-blue-deep);
}

.hst14-diff__photo {
	position: absolute;
	inset: 0;
	margin: 0;
}

.hst14-diff__photo img {
	inline-size: 100%;
	block-size: 100%;
	object-fit: cover;
}

/* The kit's blue band: the photo stays clear on the far half; the blue
   deepens only behind the words (owner rule on banner photos). */
.hst14-diff::before {
	position: absolute;
	z-index: 1;
	inset: 0;
	background: linear-gradient(to left, rgb(11 95 192 / 96%) 0%, rgb(20 134 247 / 88%) 45%, rgb(20 134 247 / 0%) 75%);
	content: "";
}

.hst14-diff__inner {
	position: relative;
	z-index: 2;
	padding-block: 4rem;
	color: #fff;
}

.hst14-diff__title {
	max-inline-size: 28rem;
	margin: 0 0 0.5rem;
	color: #fff;
	font-size: clamp(1.5rem, 1.1rem + 1.5vw, 2.1rem);
	font-weight: 800;
}

.hst14-diff__text {
	max-inline-size: 28rem;
	margin: 0 0 1.25rem;
	color: #eaf4ff;
}

.hst14-steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
	gap: 1.25rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.hst14-step {
	position: relative;
	padding: 1.75rem 1.5rem 1.5rem;
	border-radius: var(--z-radius);
	background: var(--z-yellow-soft);
	color: var(--z-ink);
}

.hst14-step__num {
	position: absolute;
	inset-block-start: 1rem;
	inset-inline-end: 1.25rem;
	color: rgb(39 39 39 / 22%);
	font-size: 2.6rem;
	font-weight: 800;
	line-height: 1;
}

.hst14-step__title {
	margin: 0.85rem 0 0.35rem;
	font-size: 1.1875rem;
	font-weight: 800;
}

.hst14-step p {
	margin: 0;
	color: #3b3b3b;
	font-size: 0.9375rem;
}

/* ---------------------------------------------------- services page */

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

.hst14-service {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border-radius: var(--z-radius);
	background: #fff;
	box-shadow: 0 12px 30px rgb(20 60 110 / 8%);
	scroll-margin-block-start: 2rem;
}

.hst14-service .hst14-pcard__media {
	border-radius: 0;
	aspect-ratio: 4 / 3;
}

.hst14-service__body {
	padding: 1.25rem 1.35rem 0.5rem;
}

.hst14-service__body .hst14-checks {
	gap: 0.4rem;
}

.hst14-service__body .hst14-checks li {
	font-size: 0.9063rem;
}

/* ----------------------------------------------------- contact page */

.hst14-contact {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
	gap: 1.75rem;
	margin-block-end: 2.5rem;
}

.hst14-contact__form {
	padding: 2rem;
	border-radius: var(--z-radius);
	background: var(--z-call);
	color: #fff;
}

.hst14-contact__formtitle {
	margin: 0 0 1.25rem;
	color: #fff;
	font-size: clamp(1.35rem, 1rem + 1.2vw, 1.75rem);
	font-weight: 800;
	text-align: center;
}

.hst14-contact__info {
	padding: 2rem;
	border-radius: var(--z-radius);
	background: #fafafa;
}

.hst14-contact__info .hst14-h2 {
	margin-block-end: 0.75rem;
	font-size: clamp(1.5rem, 1.1rem + 1.4vw, 2.1rem);
}

.hst14-infos,
.hst14-foot__info {
	display: grid;
	gap: 1rem;
	margin: 0 0 1.5rem;
	padding: 1.25rem 0 0;
	border-block-start: 1px solid var(--z-line);
	list-style: none;
}

.hst14-infos li,
.hst14-foot__info li {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	line-height: 1.45;
}

.hst14-infos small,
.hst14-foot__info small {
	display: block;
	color: var(--z-text);
	font-size: 0.8125rem;
}

.hst14-infos li > span:last-child,
.hst14-foot__info li > span:last-child {
	color: var(--z-ink);
	font-weight: 700;
}

.hst14-infos a,
.hst14-foot__info a {
	color: var(--z-ink);
	text-decoration: none;
}

.hst14-mapbox iframe {
	display: block;
	inline-size: 100%;
	block-size: 22rem;
	border: 0;
	border-radius: var(--z-radius);
}

/* The site's Contact Form 7 form on the blue card: white fields, a white
   send button with blue words. RTL even when the form was saved in English
   (CF7 then prints dir="ltr"). */
.hst14-form .wpcf7 {
	direction: rtl;
	text-align: start;
}

.hst14-form .wpcf7 input[type="email"],
.hst14-form .wpcf7 input[type="tel"] {
	direction: ltr;
	text-align: end;
}

.hst14-form .wpcf7-form p {
	margin: 0 0 1rem;
	color: #fff;
	font-weight: 600;
}

.hst14-form .wpcf7-form br {
	display: none;
}

.hst14-form .wpcf7-form-control-wrap {
	display: block;
	margin-block-start: 0.35rem;
}

.hst14-form input[type="text"],
.hst14-form input[type="email"],
.hst14-form input[type="tel"],
.hst14-form select,
.hst14-form textarea {
	inline-size: 100%;
	min-block-size: 3rem;
	padding: 0.65rem 1rem;
	border: 0;
	border-radius: 10px;
	background: #fff;
	color: var(--z-ink);
	font: inherit;
}

.hst14-form textarea {
	block-size: 8rem;
	resize: vertical;
}

.hst14-form input[type="submit"],
.hst14-form .wpcf7-submit {
	min-inline-size: 10rem;
	padding: 0.8rem 2rem;
	border: 0;
	border-radius: 999px;
	background: #fff;
	box-shadow: 0 10px 22px rgb(6 49 99 / 25%);
	color: var(--z-blue-deep);
	font: inherit;
	font-weight: 800;
	cursor: pointer;
}

.hst14-form .wpcf7-not-valid-tip {
	margin-block-start: 0.3rem;
	color: #fff3c4;
	font-size: 0.875rem;
}

.hst14-form .wpcf7-response-output {
	margin: 1rem 0 0;
	padding: 0.75rem 1rem;
	border: 0;
	border-radius: 10px;
	background: rgb(255 255 255 / 15%);
	color: #fff;
}

.hst14-form .wpcf7-spinner {
	margin-inline: 0.75rem;
}

/* WPForms, if the site ever switches: the same white fields. */
.hst14-form .wpforms-field-label {
	color: #fff;
}

.hst14-form .wpforms-submit {
	padding: 0.8rem 2rem !important;
	border-radius: 999px !important;
	background: #fff !important;
	color: var(--z-blue-deep) !important;
	font-weight: 800 !important;
}

/* ------------------------------------------------------------- blog */

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

.hst14-post {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 0.5rem;
	border-radius: var(--z-radius);
	background: var(--z-grey);
	transition: box-shadow 0.25s, transform 0.25s;
}

.hst14-post:hover {
	box-shadow: var(--z-shadow);
	transform: translateY(-3px);
}

.hst14-post__media {
	display: block;
	overflow: hidden;
	border-radius: 10px;
	aspect-ratio: 4 / 3;
	background: var(--z-pale);
}

.hst14-post__media img {
	inline-size: 100%;
	block-size: 100%;
	object-fit: cover;
}

.hst14-post__none {
	display: grid;
	block-size: 100%;
	place-items: center;
	color: var(--z-blue-word);
}

.hst14-post__none .hst14-icon {
	inline-size: 3rem;
	block-size: 3rem;
}

.hst14-post__body {
	padding: 0.85rem 0.65rem 0.75rem;
}

.hst14-post__cat {
	display: flex;
	align-items: center;
	gap: 0.35rem;
	margin: 0 0 0.35rem;
	color: var(--z-blue-word);
	font-size: 0.8125rem;
	font-weight: 700;
}

.hst14-post__cat .hst14-icon {
	inline-size: 0.95rem;
	block-size: 0.95rem;
}

.hst14-post__title {
	margin: 0 0 0.4rem;
	font-size: 1.0625rem;
	font-weight: 800;
	line-height: 1.5;
}

.hst14-post__title a {
	color: var(--z-ink);
	text-decoration: none;
}

/* The whole card opens the article (owner: no «اقرأ المقال»). */
.hst14-post__title a::after {
	position: absolute;
	inset: 0;
	content: "";
}

.hst14-post__excerpt {
	margin: 0;
	font-size: 0.875rem;
	line-height: 1.8;
}

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

.hst14-feature__list {
	display: grid;
	gap: 1rem;
}

.hst14-post--big .hst14-post__media {
	aspect-ratio: 16 / 11;
}

.hst14-post--big .hst14-post__title {
	font-size: 1.25rem;
}

.hst14-post--row,
.hst14-post--mini {
	display: grid;
	grid-template-columns: 9rem minmax(0, 1fr);
	align-items: center;
	gap: 0.25rem;
}

.hst14-post--row .hst14-post__media,
.hst14-post--mini .hst14-post__media {
	aspect-ratio: 1 / 1;
}

.hst14-post--mini {
	grid-template-columns: 4.5rem minmax(0, 1fr);
	padding: 0;
	background: none;
}

.hst14-post--mini:hover {
	box-shadow: none;
	transform: none;
}

.hst14-post--mini .hst14-post__body {
	padding: 0 0.5rem;
}

.hst14-post--mini .hst14-post__cat,
.hst14-post--mini .hst14-post__excerpt {
	display: none;
}

.hst14-post--mini .hst14-post__title {
	margin: 0;
	font-size: 0.9063rem;
	line-height: 1.55;
}

.hst14-chips {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.5rem;
	margin-block-end: 2.25rem;
}

.hst14-catchip {
	padding: 0.4rem 1.1rem;
	border-radius: 999px;
	background: var(--z-pale);
	color: var(--z-ink);
	font-size: 0.9063rem;
	font-weight: 600;
	text-decoration: none;
}

.hst14-catchip:hover,
.hst14-catchip.is-current {
	background: var(--z-yellow);
	color: var(--z-ink);
}

.hst14-empty {
	max-inline-size: 36rem;
	margin-inline: auto;
	padding: 2rem;
	border-radius: var(--z-radius);
	background: var(--z-pale);
	text-align: center;
}

.hsb-infinite__more {
	margin-block-start: 2.5rem;
	text-align: center;
}

.hsb-infinite__link {
	display: inline-flex;
	padding: 0.75rem 2rem;
	border-radius: 999px;
	background: var(--z-call);
	color: #fff;
	font-weight: 700;
	text-decoration: none;
}

.hst14-searchbar {
	padding-block: 1.5rem;
	background: var(--z-pale);
}

.hst14-searchbar__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem 2rem;
}

.hst14-searchbar__inner .search-form {
	flex: 0 1 30rem;
}

.hst14-searchbar__count {
	margin: 0;
	color: var(--z-ink);
	font-weight: 700;
}

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

.search-form label {
	flex: 1;
}

.search-form .search-field {
	inline-size: 100%;
	min-block-size: 3rem;
	padding: 0.6rem 1.1rem;
	border: 1px solid var(--z-line);
	border-radius: 999px;
	background: #fff;
	color: var(--z-ink);
	font: inherit;
}

.search-form .search-submit {
	padding-inline: 1.4rem;
	border: 0;
	border-radius: 999px;
	background: var(--z-call);
	color: #fff;
	font: inherit;
	font-weight: 700;
	cursor: pointer;
}

/* ========================================================== article */

.hst14-single {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 19rem;
	align-items: start;
	gap: 2.5rem;
}

.hst14-article__thumb {
	margin: 0 0 1.75rem;
	overflow: hidden;
	border-radius: var(--z-radius);
}

.hst14-article__thumb img {
	inline-size: 100%;
	block-size: auto;
	max-block-size: 30rem;
	object-fit: cover;
}

.hst14-prose {
	max-inline-size: none;
	color: #444;
	font-size: 1.0625rem;
	line-height: 2;
	overflow-wrap: break-word;
}

.hst14-prose h2 {
	margin: 2.25rem 0 0.75rem;
	font-size: 1.55rem;
	font-weight: 800;
}

.hst14-prose h3 {
	margin: 1.75rem 0 0.5rem;
	font-size: 1.25rem;
	font-weight: 800;
}

.hst14-prose img {
	block-size: auto;
	margin-block: 1.5rem;
	border-radius: var(--z-radius);
}

.hst14-prose figure,
.hst14-prose .wp-caption {
	max-inline-size: 100%;
	margin-inline: 0;
}

.hst14-prose .wp-caption-text {
	margin-block-start: -0.75rem;
	font-size: 0.8125rem;
	text-align: center;
}

.hst14-prose table {
	inline-size: 100%;
	border-collapse: collapse;
	font-size: 0.9375rem;
}

.hst14-prose th,
.hst14-prose td {
	padding: 0.6rem 0.8rem;
	border: 1px solid var(--z-line);
	text-align: start;
}

.hst14-prose th {
	background: var(--z-blue-deep);
	color: #fff;
}

/* A quote on the soft yellow, without decorative quote marks (owner rule). */
.hst14-prose blockquote {
	margin: 1.5rem 0;
	padding: 1.1rem 1.5rem;
	border-radius: var(--z-radius);
	background: var(--z-yellow-soft);
	color: var(--z-ink);
	font-size: 1.125rem;
}

/* The kit's yellow quote card, here the call card. */
.hst14-quote {
	margin-block: 2rem;
	padding: 1.5rem 1.75rem;
	border-radius: var(--z-radius);
	background: var(--z-yellow);
	color: var(--z-ink);
}

.hst14-quote__title {
	margin: 0 0 0.25rem;
	color: var(--z-ink);
	font-size: 1.3rem;
	font-weight: 800;
}

.hst14-quote__text {
	margin: 0 0 1rem;
	color: #333;
}

.hst14-sidebar {
	display: grid;
	gap: 1.5rem;
	position: sticky;
	inset-block-start: 1.5rem;
}

.hst14-sidecard {
	padding: 1.25rem;
	border-radius: var(--z-radius);
	background: #fff;
	box-shadow: 0 12px 34px rgb(20 60 110 / 10%);
}

.hst14-sidecard__title {
	margin: 0 0 1rem;
	padding-block-end: 0.75rem;
	border-block-end: 1px solid var(--z-line);
	color: var(--z-ink);
	font-size: 1.125rem;
	font-weight: 800;
}

.hst14-sidecard__posts {
	display: grid;
	gap: 0.9rem;
}

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

.hst14-sidecard__cats a {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	color: var(--z-ink);
	font-weight: 600;
	text-decoration: none;
}

.hst14-sidecard__cats a:hover {
	color: var(--z-blue-word);
}

.hst14-sidecard--call .hst14-pair .hst14-btn {
	flex: 1 1 100%;
}

.hst14-related .hst14-posts {
	margin-block-start: 0.5rem;
}

/* ------------------------------------------------------------- 404 */

.hst14-404__code {
	margin: 0;
	color: transparent;
	font-size: clamp(6rem, 4rem + 8vw, 9.5rem);
	font-weight: 800;
	line-height: 1;
	-webkit-text-stroke: 3px var(--z-blue);
}

.hst14-404__search {
	max-inline-size: 28rem;
	margin-block: 0.5rem 1.25rem;
}

/* ============================================================ footer */

.hsb-footer {
	background: #fff;
}

.hst14-foot {
	position: relative;
	margin-block-start: 3rem;
	padding-block-start: 1px;
	border-radius: var(--z-sheet) var(--z-sheet) 0 0;
	background:
		radial-gradient(ellipse 45% 55% at 50% 100%, rgb(20 134 247 / 30%), transparent 70%),
		var(--z-pale);
	color: var(--z-text);
}

/* The kit's yellow box riding on the footer's top edge. */
.hst14-prefoot {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1.25rem 2rem;
	margin-block-start: -3rem;
	padding: 2.25rem 2.5rem;
	border-radius: var(--z-radius);
	background: var(--z-yellow);
	box-shadow: 0 20px 40px rgb(160 120 0 / 18%);
}

.hst14-prefoot__title {
	max-inline-size: 26rem;
	margin: 0;
	color: var(--z-ink);
	font-size: clamp(1.45rem, 1.05rem + 1.5vw, 2.1rem);
	font-weight: 800;
}

.hst14-foot__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.8fr) minmax(0, 0.7fr) minmax(0, 1.2fr);
	gap: 2.5rem;
	padding-block: 3.5rem 2.5rem;
}

.hst14-foot__brand .hsb-logo img {
	block-size: 56px;
	inline-size: auto;
}

.hst14-foot__about {
	margin: 1rem 0 1.2rem;
	font-size: 0.9375rem;
}

.hst14-foot__label {
	margin: 0 0 1rem;
	color: var(--z-ink);
	font-size: 1.1875rem;
	font-weight: 800;
}

.hst14-foot__list {
	display: grid;
	gap: 0.55rem;
	margin: 0;
	padding: 0;
	font-size: 0.9375rem;
	list-style: none;
}

.hst14-foot__list a {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
}

.hst14-foot__list .hst14-icon {
	inline-size: 1.05rem;
	block-size: 1.05rem;
	padding: 0.15rem;
	border-radius: 50%;
	background: var(--z-blue-word);
	color: #fff;
}

.hst14-foot a:not(.hst14-btn) {
	color: var(--z-ink);
	text-decoration: none;
}

.hst14-foot a:not(.hst14-btn):hover {
	color: var(--z-blue-word);
}

.hst14-foot__info {
	padding: 0;
	border: 0;
}

.hst14-foot__map {
	margin-block-start: 1.2rem;
}

.hst14-foot__map iframe {
	block-size: 150px;
	border-radius: var(--z-radius);
}

.hst14-foot__base {
	padding-block: 1.4rem 1.8rem;
	border-block-start: 1px solid rgb(20 134 247 / 18%);
}

.hst14-foot__base p {
	margin: 0;
	font-size: 0.875rem;
}

/* ======================================================== tablet */

@media (width <= 1100px) {
	.hst14-menu {
		gap: 0 1rem;
	}

	.hst14-menu a {
		font-size: 0.875rem;
	}

	.hst14-header {
		gap: 1.25rem;
	}

	.hst14-hero__inner {
		grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
	}

	.hst14-hero__photo {
		display: none;
	}

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

@media (width <= 1024px) {
	.hst14-pcards,
	.hst14-posts,
	.hst14-services {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.hst14-about {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	}

	.hst14-about .hst14-ychecks {
		grid-column: 1 / -1;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

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

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

	.hst14-single {
		grid-template-columns: minmax(0, 1fr);
	}

	.hst14-sidebar {
		position: static;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (width <= 900px) {
	.hst14-hero__inner,
	.hst14-banner--photo .hst14-banner__inner,
	.hst14-why,
	.hst14-spot,
	.hst14-contact,
	.hst14-feature,
	.hst14-headrow,
	.hst14-ready {
		grid-template-columns: minmax(0, 1fr);
	}

	.hst14-banner--photo .hst14-banner__inner {
		text-align: center;
	}

	.hst14-banner__text {
		margin-inline: auto;
	}

	.hst14-banner__photo {
		inline-size: min(100%, 30rem);
		margin-inline: auto;
	}

	.hst14-ready {
		min-block-size: 0;
	}

	.hst14-ready__photo {
		position: relative;
		aspect-ratio: 16 / 9;
	}

	.hst14-ready__box {
		grid-column: 1;
		margin: -3rem 1rem 1rem;
	}

	.hst14-why__visual {
		inline-size: min(100%, 24rem);
		margin-inline: auto;
	}

	.hst14-diff {
		border-radius: var(--z-sheet);
	}

	.hst14-diff::before {
		background: linear-gradient(to top, rgb(11 95 192 / 96%) 0%, rgb(20 134 247 / 85%) 60%, rgb(20 134 247 / 20%) 100%);
	}
}

/* ========================================================= phone */

@media (width <= 767px) {
	.hst14-topbar__line {
		display: none;
	}

	.hst14-topbar__inner {
		justify-content: center;
	}

	.hst14-header {
		flex-wrap: wrap;
		gap: 0.5rem;
		min-block-size: 70px;
	}

	.hst14-header__logo .hsb-logo img,
	.hst14-header__logo .custom-logo {
		block-size: 40px;
	}

	.hst14-header__end {
		margin-inline-start: auto;
	}

	.hst14-header__end .hst14-btn {
		display: none;
	}

	.hst14-toggle {
		display: block;
	}

	.hst14-header__nav {
		order: 3;
		flex-basis: 100%;
		border-block-start: 1px solid var(--z-line);
	}

	.hst14-menu {
		flex-direction: column;
		gap: 0;
	}

	.hst14-menu a {
		padding-block: 0.7rem;
		border-block-end: 1px solid var(--z-line);
	}

	.hst14-pair .hst14-btn {
		flex: 1 1 100%;
	}

	.hst14-hero {
		padding-block: 2.25rem 3rem;
	}

	/* The request card lists the same services on phones. */
	.hst14-hero__ticks {
		display: none;
	}

	.hst14-pcards,
	.hst14-posts,
	.hst14-services,
	.hst14-about,
	.hst14-about .hst14-ychecks,
	.hst14-more,
	.hst14-facts,
	.hst14-sidebar,
	.hst14-foot__grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.hst14-about__photo {
		aspect-ratio: 4 / 3;
	}

	.hst14-post--row {
		grid-template-columns: 6.5rem minmax(0, 1fr);
	}

	.hst14-post--row .hst14-post__excerpt {
		display: none;
	}

	.hst14-callpill {
		border-radius: var(--z-radius);
	}

	.hst14-callpill .hst14-btn {
		flex: 1 1 100%;
	}

	.hst14-contact__form,
	.hst14-contact__info,
	.hst14-spot__panel {
		padding: 1.35rem;
	}

	.hst14-prefoot {
		padding: 1.75rem 1.35rem;
		text-align: center;
	}

	.hst14-prefoot__title {
		max-inline-size: none;
	}

	.hst14-chips {
		flex-wrap: nowrap;
		justify-content: flex-start;
		margin-inline: calc(-1 * var(--z-gutter));
		padding-inline: var(--z-gutter);
		overflow-x: auto;
		scrollbar-width: none;
	}

	.hst14-catchip {
		flex: none;
	}

	.hst14-navsearch__panel {
		inline-size: min(20rem, calc(100vw - 6rem));
	}

	.hst14-mapbox iframe {
		block-size: 16rem;
	}
}
