/*
 * hs-theme-15 — elnaga7.com (شركة النجاح), built from the "CleanPro" kit.
 *
 * Design system from the kit's global styles (templates/global.json):
 *   colours  black #000 / near-black #111 (hero, bands, plates, footer),
 *            the kit's golden yellow #ffc527 — yellow words only on black
 *            (12:1); on white and cream the highlighted word stays black
 *            on a yellow marker stroke (yellow on white is 1.6:1) — cream
 *            #f1ecdd bands, text #8d8f93 darkened to #5c5e63 (6.3:1)
 *   buttons  the kit's yellow pills with black words are not allowed
 *            (owner: coloured buttons carry white words; yellow is
 *            decoration): call = the kit's black pill with white words and
 *            its yellow icon circle; on the black bands a white pill with
 *            black words; WhatsApp exactly like call (owner: the green did not
 *            suit the site); the kit's «Read more» pill
 *            is black
 *   type     Rubik 400–600 in the kit; Cairo stands in
 *   shape    8px cards, black title plates on photos, yellow diamonds
 *            around labels, a yellow-edged counter strip, a diagonal
 *            yellow/black banner, a black footer
 *
 * 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 {
	--n-black: #111;
	--n-jet: #000;
	--n-yellow: #ffc527;
	--n-cream: #f1ecdd;
	--n-sand: #e7e1cf;
	--n-text: #5c5e63;
	--n-soft: #b9bbc0;
	--n-radius: 8px;
	--n-call: #111;
	--n-shadow: 0 18px 40px rgb(0 0 0 / 10%);
	--n-wrap: 1170px;
	--n-gutter: clamp(1rem, 4vw, 1.5rem);
	--n-band: clamp(4rem, 8vw, 6.5rem);
	--n-h2: clamp(1.65rem, 1.15rem + 1.9vw, 2.6rem);
	--n-head: 92px;

	/* hs-core's floating call button: the kit's black. */
	--hsc-main: #111;
	--hsc-main-ink: #fff;
}

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

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

h1,
h2,
h3 {
	color: var(--n-black);
	line-height: 1.3;
}

a {
	color: #7a5a00;
}

img {
	display: block;
}

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

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

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

.hst15-band {
	padding-block: var(--n-band);
}

.hst15-band--cream {
	background: var(--n-cream);
}

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

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

/* The kit's yellow words: a yellow marker under black words on light
   bands, yellow words on the black ones. */
.hst15-hl {
	background: linear-gradient(transparent 58%, var(--n-yellow) 58%, var(--n-yellow) 92%, transparent 92%);
	color: inherit;
}

.hst15-hero .hst15-hl,
.hst15-banner .hst15-hl,
.hst15-diag .hst15-hl,
.hst15-formband .hst15-hl,
.hst15-callcard .hst15-hl {
	background: none;
	color: var(--n-yellow);
}

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

.hst15-head {
	margin-block-end: 2.25rem;
}

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

.hst15-label {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	margin: 0 0 0.6rem;
	color: var(--n-black);
	font-size: 0.8438rem;
	font-weight: 800;
	letter-spacing: 0;
}

/* The kit's yellow diamonds either side of the label. */
.hst15-label::before,
.hst15-label::after {
	inline-size: 0.5rem;
	block-size: 0.5rem;
	background: var(--n-yellow);
	transform: rotate(45deg);
	content: "";
}

.hst15-label--dark {
	color: #fff;
}

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

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

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

.hst15-btn,
.hst15-more {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.65rem;
	padding-block: 0.4rem;
	padding-inline: 1.35rem 0.45rem;
	border: 0;
	border-radius: 999px;
	background: var(--n-call);
	box-shadow: 0 10px 22px rgb(0 0 0 / 18%);
	color: #fff;
	font-size: 0.9688rem;
	font-weight: 700;
	line-height: 1.4;
	text-decoration: none;
	transition: transform 0.2s, box-shadow 0.2s;
}

.hst15-btn:hover,
.hst15-btn:focus-visible,
.hst15-more:hover,
.hst15-more:focus-visible {
	color: #fff;
	transform: translateY(-1px);
	box-shadow: 0 14px 28px rgb(0 0 0 / 24%);
}

/* The kit's round icon at the pill's end: yellow with a black icon. */
.hst15-btn__dot {
	display: inline-grid;
	flex: none;
	place-items: center;
	inline-size: 2.1rem;
	block-size: 2.1rem;
	border-radius: 50%;
	background: var(--n-yellow);
	color: var(--n-black);
}

.hst15-btn__dot .hst15-icon {
	inline-size: 1rem;
	block-size: 1rem;
}

.hst15-btn--sm {
	font-size: 0.875rem;
}

.hst15-btn--sm .hst15-btn__dot {
	inline-size: 1.8rem;
	block-size: 1.8rem;
}

/* On black: the call and WhatsApp pills turn white with black words and a
   black dot (owner: WhatsApp looks exactly like the call button — the green
   did not suit the site). */
.hst15-pair--dark .hst15-btn--call,
.hst15-pair--dark .hst15-btn--wa,
.hst15-pair--dark .hst15-more {
	background: #fff;
	color: var(--n-black);
}

.hst15-pair--dark .hst15-btn--call:hover,
.hst15-pair--dark .hst15-btn--call:focus-visible,
.hst15-pair--dark .hst15-btn--wa:hover,
.hst15-pair--dark .hst15-btn--wa:focus-visible,
.hst15-pair--dark .hst15-more:hover,
.hst15-pair--dark .hst15-more:focus-visible {
	color: var(--n-black);
}

.hst15-pair--dark .hst15-btn--call .hst15-btn__dot,
.hst15-pair--dark .hst15-btn--wa .hst15-btn__dot,
.hst15-pair--dark .hst15-more .hst15-btn__dot {
	background: var(--n-black);
	color: var(--n-yellow);
}


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

.hst15-more {
	font-size: 0.9063rem;
}

/* Discs and squares: yellow with a black icon. */
.hst15-ydisc,
.hst15-square,
.hst15-ysq {
	display: inline-grid;
	flex: none;
	place-items: center;
	inline-size: 2.75rem;
	block-size: 2.75rem;
	border-radius: 50%;
	background: var(--n-yellow);
	color: var(--n-black);
}

.hst15-ydisc .hst15-icon {
	inline-size: 1.3rem;
	block-size: 1.3rem;
}

.hst15-square {
	inline-size: 1.3rem;
	block-size: 1.3rem;
	border-radius: 4px;
}

.hst15-square .hst15-icon {
	inline-size: 0.85rem;
	block-size: 0.85rem;
	stroke-width: 3.2;
}

.hst15-ysq {
	inline-size: 3.25rem;
	block-size: 3.25rem;
	border-radius: 6px;
}

.hst15-checks {
	display: grid;
	gap: 0.5rem;
	margin: 0 0 1.25rem;
	padding: 0;
	list-style: none;
}

.hst15-checks li {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	color: var(--n-black);
	font-size: 0.9375rem;
	line-height: 1.5;
}

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

.hsb-header {
	position: absolute;
	z-index: 30;
	inset-block-start: 0;
	inset-inline: 0;
	border-block-end: 1px solid rgb(255 255 255 / 14%);
	background: transparent;
}

.admin-bar .hsb-header {
	inset-block-start: 32px;
}

.hst15-header {
	display: flex;
	align-items: center;
	gap: 2rem;
	min-block-size: var(--n-head);
}

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

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

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

.hst15-menu a {
	display: block;
	padding-block: 1.1rem;
	color: #fff;
	font-size: 0.9688rem;
	font-weight: 600;
	text-decoration: none;
	white-space: nowrap;
}

.hst15-menu a:hover,
.hst15-menu .current-menu-item > a {
	color: var(--n-yellow);
}

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

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

.hst15-navsearch {
	position: relative;
}

.hst15-navsearch__toggle {
	display: grid;
	place-items: center;
	inline-size: 42px;
	block-size: 42px;
	border-radius: 50%;
	background: rgb(255 255 255 / 12%);
	color: #fff;
	cursor: pointer;
	list-style: none;
}

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

.hst15-navsearch[open] .hst15-navsearch__toggle {
	background: var(--n-yellow);
	color: var(--n-black);
}

.hst15-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(--n-radius);
	background: #fff;
	box-shadow: var(--n-shadow);
}

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

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

.hst15-toggle__bars {
	position: relative;
}

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

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

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

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

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

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

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

.hst15-hero {
	position: relative;
	padding-block: calc(var(--n-head) + 3.5rem) 4rem;
	background: var(--n-jet);
	color: #d9dade;
	overflow: hidden;
}

.hst15-hero__bg {
	position: absolute;
	inset: 0;
	margin: 0;
}

.hst15-hero__bg img {
	inline-size: 100%;
	block-size: 100%;
	object-fit: cover;
}

/* The kit's dark veil, strongest behind the words; the photo shows on the
   far side (owner rule: the photo stays visible). */
.hst15-hero::before {
	position: absolute;
	z-index: 1;
	inset: 0;
	background: linear-gradient(to left, rgb(0 0 0 / 92%) 0%, rgb(0 0 0 / 80%) 45%, rgb(0 0 0 / 45%) 100%);
	content: "";
}

.hst15-hero__inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	align-items: center;
	gap: 3rem;
}

.hst15-hero__title {
	margin: 0 0 1rem;
	color: #fff;
	font-size: clamp(2.1rem, 1.3rem + 3vw, 3.6rem);
	font-weight: 800;
	line-height: 1.2;
}

.hst15-hero__text {
	max-inline-size: 32rem;
	margin: 0 0 1.75rem;
	font-size: 1.0313rem;
}

.hst15-counters {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0.5rem;
	margin: 2.25rem 0 0;
	padding: 1rem 0.75rem;
	border: 1.5px solid var(--n-yellow);
	border-radius: var(--n-radius);
	background: rgb(0 0 0 / 45%);
	text-align: center;
}

.hst15-counter {
	display: grid;
	justify-items: center;
	gap: 0.1rem;
}

.hst15-counter .hst15-icon {
	color: var(--n-yellow);
}

.hst15-counter dt {
	color: var(--n-yellow);
	font-size: clamp(1.35rem, 1rem + 1.2vw, 1.9rem);
	font-weight: 800;
	line-height: 1.25;
}

.hst15-counter dd {
	margin: 0;
	color: #e5e6e9;
	font-size: 0.8125rem;
	line-height: 1.4;
}

/* One photo only (owner): the far side carries a black glass card with the
   services as links instead of the kit's two stacked photo cards. */
.hst15-hero__panel {
	padding: 1.5rem;
	border: 1px solid rgb(255 197 39 / 45%);
	border-radius: var(--n-radius);
	background: rgb(0 0 0 / 62%);
	backdrop-filter: blur(6px);
}

.hst15-hero__badge {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin: 0 0 1.25rem;
	padding-block-end: 1.1rem;
	border-block-end: 1px solid rgb(255 255 255 / 14%);
	color: #e5e6e9;
	font-size: 0.9375rem;
	font-weight: 700;
	line-height: 1.5;
}

.hst15-hero__badge strong {
	display: grid;
	flex: none;
	place-items: center;
	inline-size: 3.4rem;
	block-size: 3.4rem;
	border-radius: 50%;
	background: var(--n-yellow);
	color: var(--n-black);
	font-size: 0.9375rem;
}

.hst15-hero__paneltitle {
	margin: 0 0 0.9rem;
	color: #fff;
	font-size: 1.4rem;
	font-weight: 800;
}

.hst15-hero__links {
	display: grid;
	gap: 0.5rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.hst15-hero__links a {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.45rem 0.6rem;
	border-radius: 999px;
	background: rgb(255 255 255 / 8%);
	color: #fff;
	font-weight: 700;
	text-decoration: none;
	transition: background 0.2s;
}

.hst15-hero__links a:hover,
.hst15-hero__links a:focus-visible {
	background: rgb(255 197 39 / 18%);
}

.hst15-hero__links .hst15-ydisc {
	inline-size: 2.2rem;
	block-size: 2.2rem;
}

.hst15-hero__links .hst15-ydisc .hst15-icon {
	inline-size: 1.05rem;
	block-size: 1.05rem;
}

.hst15-hero__links a > span:nth-child(2) {
	flex: 1;
}

.hst15-hero__links a > .hst15-icon {
	color: var(--n-yellow);
}

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

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

.hst15-about__visual {
	position: relative;
	padding-block-end: 4rem;
}

.hst15-about__photo {
	margin: 0;
	overflow: hidden;
	border-radius: var(--n-radius);
	aspect-ratio: 5 / 4;
}

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

/* The kit's black quote card over the photo's corner. */
.hst15-quote {
	position: absolute;
	inset-block-end: 0;
	inset-inline-start: 0;
	inline-size: min(80%, 22rem);
	padding: 1.35rem 1.5rem;
	border-radius: var(--n-radius);
	background: var(--n-jet);
	color: #d9dade;
	text-align: center;
}

.hst15-quote p {
	margin: 0 0 0.75rem;
	font-size: 0.9063rem;
	line-height: 1.8;
}

.hst15-quote__by {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	margin: 0 !important;
	text-align: start;
}

.hst15-quote__by strong {
	display: block;
	color: #fff;
	font-size: 1rem;
}

.hst15-quote__by small {
	display: block;
	color: var(--n-yellow);
	font-size: 0.8125rem;
}

.hst15-boxes {
	display: grid;
	gap: 0.85rem;
	margin: 0.5rem 0 1.5rem;
	padding: 0;
	list-style: none;
}

.hst15-box {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem 1.2rem;
	border: 1px solid var(--n-sand);
	border-radius: var(--n-radius);
	color: var(--n-black);
	font-size: 1.0625rem;
}

.hst15-box__icon {
	color: #c99400;
}

.hst15-box__icon .hst15-icon {
	inline-size: 2.2rem;
	block-size: 2.2rem;
	stroke-width: 1.5;
}

/* The kit's black strip of three promises. */
.hst15-strip {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
	margin: 3rem 0 0;
	padding: 1.5rem 2rem;
	border-radius: var(--n-radius);
	background: var(--n-jet);
	list-style: none;
}

.hst15-strip li {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	color: #fff;
	font-size: 1.0625rem;
	font-weight: 700;
}

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

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

.hst15-card {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 0.75rem;
	border-radius: var(--n-radius);
	background: #fff;
	box-shadow: 0 10px 30px rgb(80 60 0 / 6%);
	scroll-margin-block-start: 2rem;
}

.hst15-card__media {
	margin: 0;
	overflow: hidden;
	border-radius: 6px;
	aspect-ratio: 16 / 10;
	background: var(--n-cream);
}

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

.hst15-card:hover .hst15-card__media img {
	transform: scale(1.05);
}

/* The kit's black title plate riding on the photo's foot. */
.hst15-card__plate {
	position: relative;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin: -2rem 0.75rem 0;
	padding: 0.6rem 0.9rem;
	border-radius: 6px;
	background: var(--n-jet);
}

.hst15-card__title {
	margin: 0;
	color: #fff;
	font-size: 1.0625rem;
	font-weight: 800;
	line-height: 1.4;
}

.hst15-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	align-items: flex-start;
	padding: 1rem 0.5rem 0.5rem;
}

.hst15-card__text {
	margin: 0 0 1rem;
	font-size: 0.9375rem;
	line-height: 1.8;
}

.hst15-card__body .hst15-more {
	margin-block-start: auto;
}

.hst15-cards--full .hst15-card__media {
	aspect-ratio: 16 / 9;
}

/* The kit's diagonal banner: yellow with the photo, black with the words. */
.hst15-diag {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
	align-items: stretch;
	margin-block-start: 3.5rem;
	overflow: hidden;
	border-radius: var(--n-radius);
	background: var(--n-jet);
}

.hst15-diag__photo {
	position: relative;
	margin: 0;
	background: var(--n-yellow);
	clip-path: polygon(0 0, 100% 0, 86% 100%, 0 100%);
}

.hst15-diag__photo:dir(rtl) {
	clip-path: polygon(0 0, 100% 0, 100% 100%, 14% 100%);
}

.hst15-diag__photo img {
	inline-size: 100%;
	block-size: 100%;
	min-block-size: 16rem;
	object-fit: cover;
	mix-blend-mode: multiply;
	filter: grayscale(0.15) contrast(1.05);
}

.hst15-diag__copy {
	padding: 2.5rem clamp(1.5rem, 4vw, 3rem);
	color: #d9dade;
}

.hst15-diag__title {
	margin: 0 0 0.75rem;
	color: #fff;
	font-size: clamp(1.5rem, 1.1rem + 1.6vw, 2.3rem);
	font-weight: 800;
}

.hst15-diag__text {
	margin: 0 0 1.4rem;
}

/* ---------------------------------------------------------- projects */

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

.hst15-project {
	position: relative;
	overflow: hidden;
	border-radius: var(--n-radius);
	aspect-ratio: 4 / 4.2;
	background: var(--n-jet);
}

.hst15-project figure {
	position: absolute;
	inset: 0;
	margin: 0;
}

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

.hst15-project:hover img {
	transform: scale(1.05);
}

.hst15-project__foot {
	position: absolute;
	inset-block-end: 0.85rem;
	inset-inline: 0.85rem;
}

.hst15-project__tag {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	margin: 0;
	padding: 0.25rem 0.85rem;
	border-radius: 6px 6px 0 0;
	background: var(--n-yellow);
	color: var(--n-black);
	font-size: 0.8125rem;
	font-weight: 700;
}

.hst15-project__tag .hst15-icon {
	inline-size: 1rem;
	block-size: 1rem;
}

.hst15-project__title {
	margin: 0;
	padding: 0.7rem 1rem 0.2rem;
	border-start-end-radius: 6px;
	background: rgb(0 0 0 / 88%);
	color: var(--n-yellow);
	font-size: 1.1875rem;
	font-weight: 800;
}

.hst15-project__text {
	margin: 0;
	padding: 0 1rem 0.75rem;
	border-end-start-radius: 6px;
	border-end-end-radius: 6px;
	background: rgb(0 0 0 / 88%);
	color: #e5e6e9;
	font-size: 0.875rem;
	line-height: 1.7;
}

/* --------------------------------------------------- dark form band */

.hst15-formband {
	position: relative;
	background: var(--n-jet);
	color: #d9dade;
	overflow: hidden;
}

.hst15-formband__photo {
	position: absolute;
	inset: 0;
	margin: 0;
}

.hst15-formband__photo img {
	inline-size: 100%;
	block-size: 100%;
	object-fit: cover;
}

.hst15-formband::before {
	position: absolute;
	z-index: 1;
	inset: 0;
	background: rgb(0 0 0 / 66%);
	content: "";
}

.hst15-formband__inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	align-items: center;
	gap: 3rem;
	padding-block: var(--n-band);
}

.hst15-formband__title {
	margin: 0 0 0.75rem;
	color: #fff;
	font-size: var(--n-h2);
	font-weight: 800;
}

.hst15-formband__text {
	margin: 0 0 1.5rem;
}

.hst15-formband__panel {
	padding: 2rem;
	border-radius: var(--n-radius);
	background: rgb(20 20 20 / 82%);
	backdrop-filter: blur(4px);
}

.hst15-formband__paneltitle {
	margin: 0 0 1rem;
	color: #fff;
	font-size: 1.75rem;
	font-weight: 800;
}

/* -------------------------------------------------------- the forms */

.hst15-form .wpcf7-form p {
	margin: 0 0 0.9rem;
	color: var(--n-black);
	font-size: 0.9375rem;
	font-weight: 600;
}

.hst15-form--dark .wpcf7-form p {
	color: #e5e6e9;
}

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

.hst15-form .wpcf7-form-control-wrap {
	display: block;
	margin-block-start: 0.3rem;
}

.hst15-form input[type="text"],
.hst15-form input[type="email"],
.hst15-form input[type="tel"],
.hst15-form select,
.hst15-form textarea {
	inline-size: 100%;
	min-block-size: 3rem;
	padding: 0.65rem 1rem;
	border: 1px solid var(--n-sand);
	border-radius: 6px;
	background: #fff;
	color: var(--n-black);
	font: inherit;
}

.hst15-form--dark input[type="text"],
.hst15-form--dark input[type="email"],
.hst15-form--dark input[type="tel"],
.hst15-form--dark select,
.hst15-form--dark textarea {
	border-color: rgb(255 255 255 / 14%);
	background: rgb(255 255 255 / 10%);
	color: #fff;
}

.hst15-form textarea {
	block-size: 7.5rem;
	resize: vertical;
}

/* Send: the kit's pill, black with white words (white on the dark band). */
.hst15-form input[type="submit"],
.hst15-form .wpcf7-submit {
	min-inline-size: 9rem;
	padding: 0.8rem 2rem;
	border: 0;
	border-radius: 999px;
	background: var(--n-black);
	color: #fff;
	font: inherit;
	font-weight: 800;
	cursor: pointer;
}

.hst15-form--dark input[type="submit"],
.hst15-form--dark .wpcf7-submit {
	background: #fff;
	color: var(--n-black);
}

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

.hst15-form--dark .wpcf7-not-valid-tip {
	color: var(--n-yellow);
}

.hst15-form .wpcf7-response-output {
	margin: 1rem 0 0;
	padding: 0.75rem 1rem;
	border: 1px solid var(--n-yellow);
	border-radius: 6px;
}

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

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

.hst15-banner {
	position: relative;
	background: var(--n-jet);
	color: #e5e6e9;
	overflow: hidden;
	text-align: center;
}

.hst15-banner__photo {
	position: absolute;
	inset: 0;
	margin: 0;
}

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

/* Dark only behind the words: an ellipse under the title; the photo stays
   clear towards the edges (owner rule). */
.hst15-banner::before {
	position: absolute;
	z-index: 1;
	inset: 0;
	background:
		radial-gradient(ellipse 55% 70% at 50% 62%, rgb(0 0 0 / 82%) 0%, rgb(0 0 0 / 62%) 55%, rgb(0 0 0 / 22%) 100%);
	content: "";
}

.hst15-banner__inner {
	position: relative;
	z-index: 2;
	display: grid;
	justify-items: center;
	padding-block: calc(var(--n-head) + 3.5rem) 4rem;
}

.hst15-banner__title {
	max-inline-size: 48rem;
	margin: 0 0 0.6rem;
	color: #fff;
	font-size: clamp(1.9rem, 1.3rem + 2.4vw, 3.1rem);
	font-weight: 800;
}

.hst15-banner__text {
	max-inline-size: 36rem;
	margin: 0 0 1rem;
	font-size: 1.0313rem;
}

.hst15-banner .hsb-breadcrumbs {
	color: #fff;
	font-size: 0.9375rem;
	font-weight: 700;
}

.hst15-banner .hsb-breadcrumbs a {
	color: var(--n-yellow);
	text-decoration: none;
}

.hst15-banner--post .hst15-banner__title {
	font-size: clamp(1.6rem, 1.2rem + 1.8vw, 2.5rem);
}

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

.hst15-why {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	align-items: center;
	gap: 3rem;
}

.hst15-why__photo {
	position: relative;
	margin: 0;
	overflow: hidden;
	border-radius: var(--n-radius);
	aspect-ratio: 5 / 4;
}

.hst15-why__photo .hst15-hero__badge {
	position: absolute;
	inset-block-end: 1rem;
	inset-inline-start: 1rem;
	margin: 0;
	padding: 0.35rem 1rem 0.35rem 0.35rem;
	border: 0;
	border-radius: 999px;
	background: rgb(0 0 0 / 72%);
}

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

.hst15-offers {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.25rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.hst15-offer {
	padding: 1.5rem 1.35rem;
	border: 1px solid var(--n-sand);
	border-block-start: 4px solid var(--n-yellow);
	border-radius: var(--n-radius);
	background: #fff;
}

.hst15-offer__title {
	margin: 0.9rem 0 0.35rem;
	font-size: 1.125rem;
	font-weight: 800;
}

.hst15-offer p {
	margin: 0;
	font-size: 0.9375rem;
}

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

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

.hst15-infos li {
	display: grid;
	justify-items: center;
	gap: 0.4rem;
	padding: 2rem 1.25rem;
	border: 1px solid var(--n-sand);
	border-radius: var(--n-radius);
	text-align: center;
}

.hst15-infos strong {
	margin-block-start: 0.4rem;
	color: var(--n-black);
	font-size: 1.35rem;
	font-weight: 800;
}

.hst15-infos a,
.hst15-infos li > span:last-child {
	color: var(--n-text);
	text-decoration: none;
}

.hst15-contact {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	overflow: hidden;
	border-radius: var(--n-radius);
}

.hst15-contact__panel {
	padding: clamp(1.5rem, 3vw, 2.5rem);
	background: var(--n-cream);
}

.hst15-contact__title {
	margin: 0 0 0.6rem;
	color: var(--n-black);
	font-size: clamp(1.6rem, 1.2rem + 1.5vw, 2.3rem);
	font-weight: 800;
	line-height: 1.3;
}

.hst15-contact__panel .hst15-pair {
	margin-block-start: 1rem;
}

.hst15-mapbox {
	min-block-size: 24rem;
}

.hst15-mapbox iframe {
	display: block;
	inline-size: 100%;
	block-size: 100%;
	min-block-size: 24rem;
	border: 0;
}

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

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

.hst15-post {
	position: relative;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border-radius: var(--n-radius);
	background: #fff;
	transition: box-shadow 0.25s, transform 0.25s;
}

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

.hst15-post__media {
	display: block;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	background: var(--n-sand);
}

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

.hst15-post__none {
	display: grid;
	block-size: 100%;
	place-items: center;
	color: #8a6400;
}

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

.hst15-post__body {
	padding: 1rem 1.1rem 1.2rem;
}

.hst15-post__title {
	margin: 0 0 0.35rem;
	font-size: 1.0938rem;
	font-weight: 800;
	line-height: 1.5;
}

.hst15-post__title a {
	color: var(--n-black);
	text-decoration: none;
}

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

/* Where the kit prints the date (owner: no dates), the category. */
.hst15-post__cat {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	margin: 0 0 0.35rem;
	color: #7a5a00;
	font-size: 0.8125rem;
	font-weight: 700;
}

.hst15-post__cat::before {
	inline-size: 0.45rem;
	block-size: 0.45rem;
	border-radius: 50%;
	background: var(--n-yellow);
	content: "";
}

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

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

.hst15-feature__box {
	padding: 0.75rem;
	border: 1px solid var(--n-sand);
	border-radius: var(--n-radius);
	background: var(--n-cream);
}

.hst15-feature__list {
	display: grid;
	gap: 0.75rem;
}

.hst15-post--big {
	background: none;
}

.hst15-post--big .hst15-post__media {
	border-radius: 6px;
	aspect-ratio: 16 / 10;
}

.hst15-post--big .hst15-post__title {
	font-size: 1.45rem;
	line-height: 1.4;
}

.hst15-post--big .hst15-post__body {
	padding-inline: 0.25rem;
}

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

.hst15-post--row .hst15-post__media,
.hst15-post--mini .hst15-post__media {
	border-radius: 6px;
	aspect-ratio: 16 / 10;
}

.hst15-post--row:hover,
.hst15-post--mini:hover {
	box-shadow: none;
	transform: none;
}

.hst15-post--mini {
	grid-template-columns: 5.5rem minmax(0, 1fr);
}

.hst15-post--mini .hst15-post__body,
.hst15-post--row .hst15-post__body {
	padding: 0 0.75rem;
}

.hst15-post--mini .hst15-post__title {
	margin: 0;
	font-size: 0.9063rem;
}

.hst15-post--mini .hst15-post__cat {
	display: none;
}

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

.hst15-catchip {
	padding: 0.4rem 1.1rem;
	border-radius: 999px;
	background: #fff;
	box-shadow: inset 0 0 0 1px var(--n-sand);
	color: var(--n-black);
	font-size: 0.9063rem;
	font-weight: 600;
	text-decoration: none;
}

.hst15-catchip:hover,
.hst15-catchip.is-current {
	background: var(--n-black);
	box-shadow: none;
	color: #fff;
}

.hst15-empty {
	max-inline-size: 36rem;
	margin-inline: auto;
	padding: 2rem;
	border-radius: var(--n-radius);
	background: #fff;
	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(--n-black);
	color: #fff;
	font-weight: 700;
	text-decoration: none;
}

.hst15-searchbar {
	padding-block: 1.5rem;
	background: var(--n-cream);
}

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

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

.hst15-searchbar__count {
	margin: 0;
	color: var(--n-black);
	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(--n-sand);
	border-radius: 999px;
	background: #fff;
	color: var(--n-black);
	font: inherit;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.hst15-prose th {
	background: var(--n-black);
	color: #fff;
}

/* A quote on cream with a yellow edge, no decorative quote marks (owner). */
.hst15-prose blockquote {
	margin: 1.5rem 0;
	padding: 1.1rem 1.5rem;
	border-inline-start: 4px solid var(--n-yellow);
	border-radius: var(--n-radius);
	background: var(--n-cream);
	color: var(--n-black);
	font-size: 1.125rem;
}

.hst15-callcard {
	margin-block-start: 2rem;
	padding: 1.75rem;
	border-radius: var(--n-radius);
	background: var(--n-jet);
	color: #d9dade;
}

.hst15-callcard__title {
	margin: 0 0 0.3rem;
	color: #fff;
	font-size: 1.45rem;
	font-weight: 800;
}

.hst15-callcard__text {
	margin: 0 0 1.1rem;
}

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

.hst15-sidecard {
	padding: 1.25rem;
	border: 1px solid var(--n-sand);
	border-radius: var(--n-radius);
}

.hst15-sidecard__title {
	margin: 0 0 1rem;
	color: var(--n-black);
	font-size: 1.25rem;
	font-weight: 800;
}

.hst15-sidecard__team {
	display: flex;
	align-items: center;
	gap: 0.7rem;
	margin: 0 0 0.5rem;
	color: var(--n-black);
}

.hst15-sidecard__text {
	margin: 0;
	font-size: 0.9063rem;
}

.hst15-sidecard__posts {
	display: grid;
	gap: 0.85rem;
}

.hst15-sidecard .hst15-pair {
	margin-block-start: 1rem;
}

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

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

.hst15-404__code {
	margin: 0;
	color: var(--n-yellow);
	font-size: clamp(6rem, 4rem + 8vw, 10rem);
	font-weight: 800;
	line-height: 1;
}

.hst15-404__search {
	inline-size: min(100%, 28rem);
	margin-block: 0.5rem 1.25rem;
}

.hst15-404 .hst15-pair {
	justify-content: center;
}

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

.hsb-footer {
	background: var(--n-jet);
}

.hst15-foot {
	color: var(--n-soft);
}

.hst15-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: 4.5rem 2.5rem;
}

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

.hst15-foot__brand p {
	margin: 1rem 0 0.75rem;
	font-size: 0.9375rem;
}

.hst15-foot__follow {
	color: #fff;
	font-weight: 800;
}

.hst15-foot__label {
	display: inline-block;
	margin: 0 0 1.25rem;
	padding-block-end: 0.3rem;
	border-block-end: 2px solid var(--n-yellow);
	color: #fff;
	font-size: 1.1875rem;
	font-weight: 800;
}

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

.hst15-foot a:not(.hst15-btn) {
	color: #d9dade;
	text-decoration: none;
}

.hst15-foot a:not(.hst15-btn):hover {
	color: var(--n-yellow);
}

.hst15-foot__info li {
	display: flex;
	align-items: center;
	gap: 0.6rem;
}

.hst15-foot__info .hst15-icon {
	color: var(--n-yellow);
}

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

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

.hst15-foot__base {
	padding-block: 1.4rem 1.8rem;
	border-block-start: 1px solid rgb(255 255 255 / 12%);
}

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

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

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

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

	.hst15-header {
		gap: 1.25rem;
	}

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

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

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

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

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

@media (width <= 900px) {
	.hst15-hero__inner,
	.hst15-about,
	.hst15-why,
	.hst15-formband__inner,
	.hst15-contact,
	.hst15-feature,
	.hst15-diag {
		grid-template-columns: minmax(0, 1fr);
	}

	.hst15-hero::before {
		background: linear-gradient(to top, rgb(0 0 0 / 92%) 0%, rgb(0 0 0 / 78%) 60%, rgb(0 0 0 / 55%) 100%);
	}

	.hst15-diag__photo,
	.hst15-diag__photo:dir(rtl) {
		clip-path: none;
	}

	.hst15-diag__photo img {
		min-block-size: 0;
		aspect-ratio: 16 / 8;
	}

	.hst15-strip,
	.hst15-infos {
		grid-template-columns: minmax(0, 1fr);
	}

	.hst15-about__visual {
		inline-size: min(100%, 32rem);
		margin-inline: auto;
	}
}

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

@media (width <= 767px) {
	:root {
		--n-head: 74px;
	}

	.hsb-header {
		background: rgb(0 0 0 / 70%);
	}

	.hst15-header {
		flex-wrap: wrap;
		gap: 0.5rem;
	}

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

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

	.hst15-header__call {
		display: none;
	}

	.hst15-toggle {
		display: block;
	}

	.hst15-header__nav {
		order: 3;
		flex-basis: 100%;
		margin-inline: calc(-1 * var(--n-gutter));
		padding-inline: var(--n-gutter);
		background: var(--n-jet);
	}

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

	.hst15-menu a {
		padding-block: 0.7rem;
		border-block-end: 1px solid rgb(255 255 255 / 12%);
	}

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

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

	.hst15-cards,
	.hst15-posts,
	.hst15-projects,
	.hst15-offers,
	.hst15-sidebar,
	.hst15-foot__grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.hst15-quote {
		position: relative;
		inline-size: auto;
		margin: -2.5rem 1rem 0;
	}

	.hst15-about__visual {
		padding-block-end: 0;
	}

	.hst15-strip {
		padding: 1.25rem;
	}

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

	.hst15-formband__panel {
		padding: 1.35rem;
	}

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

	.hst15-catchip {
		flex: none;
	}

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

	.hst15-mapbox,
	.hst15-mapbox iframe {
		min-block-size: 16rem;
	}
}
