/* ==========================================================================
   Marbel Service 2026 — service page layout (loads after home.css, reuses its tokens/components)
   ========================================================================== */

/* Hero ---------------------------------------------------------------- */
.ms-hero {
	position: relative;
	isolation: isolate;
	display: flex;
	align-items: flex-end;
	min-height: min(72vh, 760px);
	padding: 170px 0 56px;
	color: #fff;
	background: var(--ink, #0d0d0d);
}
.marbel-home .mh .ms-hero__img {
	position: absolute;
	inset: 0;
	z-index: -2;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 60% 50%;
}
.ms-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		linear-gradient(180deg, rgba(13, 13, 13, 0.82) 0%, rgba(13, 13, 13, 0.35) 30%, rgba(13, 13, 13, 0.25) 55%, rgba(13, 13, 13, 0.92) 100%),
		linear-gradient(100deg, rgba(13, 13, 13, 0.85) 0%, rgba(13, 13, 13, 0.6) 40%, rgba(13, 13, 13, 0.1) 80%);
}
.ms-crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 26px; font-size: 13.5px; font-weight: 600; color: rgba(255, 255, 255, 0.7); }
.marbel-home .mh .ms-crumbs a { color: rgba(255, 255, 255, 0.7); text-decoration: none; }
.marbel-home .mh .ms-crumbs a:hover { color: #fff; }
.ms-crumbs svg { width: 12px; height: 12px; opacity: 0.6; }
.ms-crumbs span { color: #fff; }
.ms-hero__content { max-width: 820px; }
.marbel-home .mh .ms-hero__title { font-size: clamp(36px, 4.6vw, 62px); max-width: 17ch; color: #fff; }
.marbel-home .mh .ms-hero__lead { margin-top: 22px; max-width: 62ch; font-size: clamp(17px, 1.3vw, 19px); line-height: 1.6; color: rgba(255, 255, 255, 0.84); }
.marbel-home .mh .ms-chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 34px 0 0; padding: 0; }
.ms-chips li {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 14px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 999px;
	background: rgba(13, 13, 13, 0.45);
	backdrop-filter: blur(6px);
	font-size: 13.5px;
	font-weight: 700;
	line-height: 1;
	color: #fff;
}
.ms-chips svg { width: 13px; height: 13px; color: var(--sage, #9db17d); }
@media (max-width: 640px) {
	.ms-hero { padding: 120px 0 40px; min-height: 0; }
	.marbel-home .mh .ms-hero__title { font-size: clamp(32px, 9.5vw, 40px); }
	.ms-crumbs { font-size: 12.5px; }
}

/* What is included --------------------------------------------------- */
.marbel-home .mh .ms-inc { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 0; padding: 0; }
@media (max-width: 980px) { .marbel-home .mh .ms-inc { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .marbel-home .mh .ms-inc { grid-template-columns: 1fr; } }
.ms-inc__card {
	position: relative;
	padding: 26px 26px 28px;
	border: 1px solid var(--line, rgba(23, 26, 22, 0.12));
	border-radius: var(--radius, 20px);
	background: var(--white, #fff);
	transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s;
}
.ms-inc__card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.ms-inc__num { display: inline-block; font-family: "Fraunces", Georgia, serif; font-style: italic; font-weight: 500; font-size: 30px; line-height: 1; color: var(--sage2, #7e9560); }
.marbel-home .mh .ms-inc__card h3 { margin-top: 16px; font-size: 21px; line-height: 1.2; }
.marbel-home .mh .ms-inc__card p { margin-top: 10px; font-size: 15px; line-height: 1.55; color: var(--muted, #5d6159); }

/* Details ------------------------------------------------------------- */
.ms-details { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: clamp(36px, 6vw, 88px); align-items: center; }
@media (max-width: 900px) { .ms-details { grid-template-columns: 1fr; } }
.marbel-home .mh .ms-check { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 22px; margin: 28px 0 0; padding: 0; }
@media (max-width: 600px) { .marbel-home .mh .ms-check { grid-template-columns: 1fr; } }
.ms-check li { display: flex; align-items: flex-start; gap: 12px; font-size: 15.5px; font-weight: 600; line-height: 1.45; }
.ms-check .mh-points__icon { flex: 0 0 28px; width: 28px; height: 28px; }
.ms-check .mh-points__icon svg { width: 13px; height: 13px; }
.marbel-home .mh .ms-details__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 28px; }

/* Related services ---------------------------------------------------- */
.ms-related__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; }
.marbel-home .mh .ms-related__card {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 14px 14px 18px;
	border: 1px solid var(--line-d, rgba(255, 255, 255, 0.14));
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.03);
	color: #fff;
	text-decoration: none;
	transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), background-color 0.3s, border-color 0.3s;
}
.marbel-home .mh .ms-related__card:hover { transform: translateY(-3px); background: rgba(255, 255, 255, 0.06); border-color: rgba(157, 177, 125, 0.5); }
.ms-related__media { aspect-ratio: 16 / 10; overflow: hidden; border-radius: 12px; background: #1c1f1a; }
.marbel-home .mh .ms-related__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1); }
.marbel-home .mh .ms-related__card:hover img { transform: scale(1.05); }
.marbel-home .mh .ms-related__card h3 { font-size: 18px; line-height: 1.2; color: #fff; }
.marbel-home .mh .ms-related__card .mh-link { color: var(--sage, #9db17d); font-size: 14px; }
