/*
Theme Name: Steads Homes
Theme URI: https://steadshomes.com/
Author: Steads Homes
Description: Custom real-estate theme for Steads Homes. Hero slider, about, services, projects, specializations, contact drawer and WhatsApp button. All text, images, colors and contact details are editable from Appearance → Customize.
Version: 1.3.0
Requires at least: 6.0
Requires PHP: 7.4
License: GPLv2 or later
Text Domain: steads-homes
*/

:root {
	--sh-primary: #1f3b4d;
	--sh-accent: #c9a24b;
	--sh-dark: #13232e;
	--sh-text: #3d4852;
	--sh-muted: #6b7680;
	--sh-light: #f6f3ee;
	--sh-white: #ffffff;
	--sh-radius: 6px;
	--sh-heading: "Playfair Display", Georgia, serif;
	--sh-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	--sh-wrap: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--sh-body);
	font-size: 16px;
	line-height: 1.7;
	color: var(--sh-text);
	background: var(--sh-white);
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--sh-primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--sh-accent); }
h1, h2, h3, h4, h5 { font-family: var(--sh-heading); color: var(--sh-dark); line-height: 1.25; margin: 0 0 .6em; font-weight: 600; }
p { margin: 0 0 1.1em; }
.screen-reader-text { position: absolute !important; clip: rect(1px,1px,1px,1px); width: 1px; height: 1px; overflow: hidden; }
.skip-link:focus { clip: auto; width: auto; height: auto; z-index: 9999; background: #fff; padding: 10px 16px; top: 8px; left: 8px; }

.sh-wrap { width: 100%; max-width: var(--sh-wrap); margin: 0 auto; padding: 0 20px; }
.sh-section { padding: 96px 0; }
.sh-section--light { background: var(--sh-light); }
.sh-eyebrow {
	display: inline-block; font-family: var(--sh-body); font-size: 13px; font-weight: 600;
	letter-spacing: .18em; text-transform: uppercase; color: var(--sh-accent); margin-bottom: 12px;
}
.sh-title { font-size: clamp(30px, 4vw, 44px); }
.sh-subtitle { font-family: var(--sh-body); font-size: 19px; font-weight: 600; color: var(--sh-primary); }
.sh-center { text-align: center; }
.sh-center .sh-lead { max-width: 680px; margin-left: auto; margin-right: auto; }
.sh-lead { color: var(--sh-muted); font-size: 17px; }

.sh-btn {
	display: inline-flex; align-items: center; gap: 10px; padding: 14px 30px;
	background: var(--sh-primary); color: #fff; border: 2px solid var(--sh-primary);
	border-radius: var(--sh-radius); font-weight: 600; font-size: 15px; letter-spacing: .02em;
	cursor: pointer; transition: all .25s; font-family: var(--sh-body);
}
.sh-btn:hover { background: var(--sh-accent); border-color: var(--sh-accent); color: #fff; }
.sh-btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.8); }
.sh-btn--ghost:hover { background: #fff; color: var(--sh-primary); border-color: #fff; }
.sh-btn svg { width: 16px; height: 16px; }

/* ---------- Header ---------- */
.sh-header {
	position: sticky; top: 0; z-index: 100; background: #fff;
	transition: box-shadow .25s;
}
.admin-bar .sh-header { top: 32px; }
.sh-header.is-scrolled { box-shadow: 0 4px 24px rgba(19,35,46,.08); }
.sh-header__inner { display: flex; align-items: center; justify-content: space-between; height: 86px; }
.sh-logo img { max-height: 56px; width: auto; }
.sh-logo__text { font-family: var(--sh-heading); font-size: 26px; font-weight: 700; color: var(--sh-primary); letter-spacing: .01em; }
.sh-logo__text span { color: var(--sh-accent); }
.sh-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 6px; }
.sh-nav a {
	display: block; padding: 10px 16px; font-weight: 500; font-size: 15px; color: var(--sh-dark);
	position: relative;
}
.sh-nav a::after {
	content: ""; position: absolute; left: 16px; right: 16px; bottom: 4px; height: 2px;
	background: var(--sh-accent); transform: scaleX(0); transition: transform .25s; transform-origin: left;
}
.sh-nav a:hover::after, .sh-nav .current-menu-item > a::after, .sh-nav .current_page_item > a::after { transform: scaleX(1); }
.sh-nav .current-menu-item > a, .sh-nav .current_page_item > a { color: var(--sh-primary); }
.sh-menu-toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; color: var(--sh-dark); }
.sh-menu-toggle svg { width: 28px; height: 28px; }

/* Dropdown menus */
.sh-nav li { position: relative; }
.sh-nav .menu-item-has-children > a { padding-right: 30px; }
.sh-nav .menu-item-has-children > a::before {
	content: ""; position: absolute; right: 14px; top: 50%; width: 6px; height: 6px; margin-top: -5px;
	border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg);
}
.sh-nav .sub-menu {
	position: absolute; top: 100%; left: 0; min-width: 210px; background: #fff; flex-direction: column; gap: 0;
	padding: 8px 0; border-radius: var(--sh-radius); box-shadow: 0 16px 40px rgba(19,35,46,.14); border-top: 3px solid var(--sh-accent);
	opacity: 0; visibility: hidden; transform: translateY(8px); transition: all .2s;
}
.sh-nav li:hover > .sub-menu, .sh-nav li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: none; }
.sh-nav .sub-menu a { padding: 10px 20px; }
.sh-nav .sub-menu a::after { display: none; }
.sh-nav .sub-menu a:hover { background: var(--sh-light); }

/* ---------- Hero slider ---------- */
.sh-hero { position: relative; height: calc(100vh - 86px); min-height: 520px; max-height: 820px; overflow: hidden; background: var(--sh-dark); }
.sh-hero__slide {
	position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease;
	display: flex; align-items: center; background-size: cover; background-position: center;
}
.sh-hero__slide.is-active { opacity: 1; z-index: 1; }
.sh-hero__slide::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(19,35,46,.82) 0%, rgba(19,35,46,.45) 60%, rgba(19,35,46,.25) 100%); }
.sh-hero__content { position: relative; z-index: 2; color: #fff; max-width: 720px; }
.sh-hero__content .sh-eyebrow { color: var(--sh-accent); }
.sh-hero__title { color: #fff; font-size: clamp(36px, 6vw, 68px); margin-bottom: 18px; transform: translateY(20px); opacity: 0; transition: all .9s .3s; }
.sh-hero__text { font-size: 18px; color: rgba(255,255,255,.88); margin-bottom: 32px; max-width: 560px; transform: translateY(20px); opacity: 0; transition: all .9s .5s; }
.sh-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; transform: translateY(20px); opacity: 0; transition: all .9s .7s; }
.sh-hero__slide.is-active .sh-hero__title,
.sh-hero__slide.is-active .sh-hero__text,
.sh-hero__slide.is-active .sh-hero__actions { transform: none; opacity: 1; }
.sh-hero__arrow {
	position: absolute; top: 50%; z-index: 3; transform: translateY(-50%);
	width: 52px; height: 52px; border-radius: 50%; border: 1px solid rgba(255,255,255,.5);
	background: rgba(255,255,255,.08); color: #fff; cursor: pointer; display: grid; place-items: center; transition: all .2s;
}
.sh-hero__arrow:hover { background: var(--sh-accent); border-color: var(--sh-accent); }
.sh-hero__arrow--prev { left: 24px; }
.sh-hero__arrow--next { right: 24px; }
.sh-hero__arrow svg { width: 20px; height: 20px; }
.sh-hero__dots { position: absolute; bottom: 32px; left: 0; right: 0; z-index: 3; display: flex; justify-content: center; gap: 10px; }
.sh-hero__dots button { width: 34px; height: 4px; border: 0; border-radius: 2px; background: rgba(255,255,255,.4); cursor: pointer; padding: 0; transition: background .2s; }
.sh-hero__dots button.is-active { background: var(--sh-accent); }

/* ---------- Placeholder image ---------- */
.sh-ph {
	background: linear-gradient(135deg, var(--sh-primary) 0%, #2f5870 55%, var(--sh-accent) 140%);
	display: grid; place-items: center; color: rgba(255,255,255,.35); width: 100%; height: 100%;
}
.sh-ph svg { width: 22%; max-width: 90px; height: auto; }

/* ---------- About / split ---------- */
.sh-split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.sh-split__media { position: relative; }
.sh-split__media .sh-img { aspect-ratio: 5/4; border-radius: var(--sh-radius); overflow: hidden; position: relative; z-index: 1; }
.sh-split__media .sh-img img { width: 100%; height: 100%; object-fit: cover; }
.sh-split__media::before {
	content: ""; position: absolute; top: -18px; right: -18px; width: 60%; height: 60%;
	border: 3px solid var(--sh-accent); border-radius: var(--sh-radius); z-index: 0;
}
.sh-split__badge {
	position: absolute; left: -24px; bottom: -24px; z-index: 2; background: var(--sh-primary); color: #fff;
	padding: 22px 26px; border-radius: var(--sh-radius); box-shadow: 0 14px 40px rgba(19,35,46,.25);
}
.sh-split__badge strong { display: block; font-family: var(--sh-heading); font-size: 38px; line-height: 1; color: var(--sh-accent); }
.sh-split__badge span { font-size: 13px; letter-spacing: .06em; text-transform: uppercase; }

/* ---------- Services (alternating) ---------- */
.sh-services__head { margin-bottom: 64px; }
.sh-service { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-bottom: 88px; }
.sh-service:last-child { margin-bottom: 0; }
.sh-service:nth-child(even) .sh-service__media { order: 2; }
.sh-service__media { aspect-ratio: 4/3; border-radius: var(--sh-radius); overflow: hidden; box-shadow: 0 20px 50px rgba(19,35,46,.12); }
.sh-service__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s; }
.sh-service:hover .sh-service__media img { transform: scale(1.04); }
.sh-service__num { font-family: var(--sh-heading); font-size: 64px; line-height: 1; color: transparent; -webkit-text-stroke: 1px var(--sh-accent); display: block; margin-bottom: 8px; }
.sh-service__title { font-size: clamp(26px, 3vw, 34px); }
.sh-service__tag { font-style: italic; color: var(--sh-accent); font-weight: 500; margin-bottom: 14px; display: block; }
.sh-service__link { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; margin-top: 6px; }
.sh-service__link svg { width: 18px; height: 18px; transition: transform .2s; }
.sh-service__link:hover svg { transform: translateX(4px); }

/* ---------- Projects ---------- */
.sh-projects__head { margin-bottom: 48px; }
.sh-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.sh-card { background: #fff; border-radius: var(--sh-radius); overflow: hidden; box-shadow: 0 10px 34px rgba(19,35,46,.08); transition: transform .3s, box-shadow .3s; display: flex; flex-direction: column; }
.sh-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(19,35,46,.14); }
.sh-card__media { aspect-ratio: 4/3; overflow: hidden; position: relative; }
.sh-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s; }
.sh-card:hover .sh-card__media img { transform: scale(1.06); }
.sh-card__type { position: absolute; top: 16px; left: 16px; background: var(--sh-accent); color: #fff; font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: 20px; letter-spacing: .04em; }
.sh-card__body { padding: 24px 26px 28px; flex: 1; }
.sh-card__title { font-size: 21px; margin-bottom: 6px; }
.sh-card__title a { color: var(--sh-dark); }
.sh-card__title a:hover { color: var(--sh-accent); }
.sh-card__meta { font-size: 14px; color: var(--sh-muted); display: flex; align-items: center; gap: 6px; }
.sh-card__meta svg { width: 15px; height: 15px; color: var(--sh-accent); flex: none; }
.sh-card__sub { font-size: 14px; color: var(--sh-primary); font-weight: 500; margin-bottom: 4px; }
.sh-card[hidden] { display: none; }
.sh-tabs { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin: -12px 0 40px; }
.sh-tabs button {
	font: inherit; font-size: 15px; font-weight: 600; padding: 10px 26px; border-radius: 30px; cursor: pointer;
	border: 1.5px solid #d9dee2; background: #fff; color: var(--sh-dark); transition: all .2s;
}
.sh-tabs button:hover { border-color: var(--sh-accent); color: var(--sh-accent); }
.sh-tabs button.is-active { background: var(--sh-primary); border-color: var(--sh-primary); color: #fff; }
.sh-projects__more { text-align: center; margin-top: 48px; }
.sh-note { background: #fff8e6; border: 1px dashed var(--sh-accent); padding: 12px 16px; border-radius: var(--sh-radius); font-size: 14px; margin-top: 24px; text-align: center; }

/* ---------- Specializations ---------- */
.sh-spec { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: center; }
.sh-spec__list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; }
.sh-spec__list li { display: flex; align-items: center; gap: 12px; font-weight: 500; color: var(--sh-dark); }
.sh-spec__list li svg { width: 22px; height: 22px; color: var(--sh-accent); flex: none; }
.sh-spec__gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.sh-spec__gallery .sh-img { aspect-ratio: 1; border-radius: var(--sh-radius); overflow: hidden; }
.sh-spec__gallery .sh-img:nth-child(2) { transform: translateY(32px); }
.sh-spec__gallery .sh-img:nth-child(4) { transform: translateY(32px); }
.sh-spec__gallery img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- CTA band ---------- */
.sh-cta { background: var(--sh-primary); color: #fff; padding: 64px 0; }
.sh-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.sh-cta h2 { color: #fff; margin: 0 0 6px; font-size: clamp(26px, 3vw, 36px); }
.sh-cta p { margin: 0; color: rgba(255,255,255,.8); }

/* ---------- Page banner ---------- */
.sh-banner { position: relative; padding: 110px 0 90px; background: var(--sh-dark) center/cover no-repeat; color: #fff; text-align: center; }
.sh-banner::before { content: ""; position: absolute; inset: 0; background: rgba(19,35,46,.72); }
.sh-banner > * { position: relative; }
.sh-banner h1 { color: #fff; font-size: clamp(34px, 5vw, 54px); margin-bottom: 10px; }
.sh-crumbs { font-size: 14px; color: rgba(255,255,255,.75); }
.sh-crumbs a { color: var(--sh-accent); }
.sh-content { padding: 72px 0; }
.sh-content .entry-content > *:first-child { margin-top: 0; }
.entry-content { max-width: 860px; margin: 0 auto; }
.entry-content img { border-radius: var(--sh-radius); }

/* ---------- Contact page ---------- */
.sh-contact { display: grid; grid-template-columns: 1fr 1.3fr; gap: 48px; }
.sh-info { display: grid; gap: 18px; }
.sh-info__item { display: flex; gap: 16px; padding: 22px; background: var(--sh-light); border-radius: var(--sh-radius); align-items: flex-start; }
.sh-info__icon { width: 48px; height: 48px; border-radius: 50%; background: var(--sh-primary); color: #fff; display: grid; place-items: center; flex: none; }
.sh-info__icon svg { width: 20px; height: 20px; }
.sh-info__item h4 { font-family: var(--sh-body); font-size: 15px; margin: 0 0 2px; }
.sh-info__item p, .sh-info__item a { margin: 0; color: var(--sh-text); word-break: break-word; }
.sh-form-card { background: #fff; padding: 40px; border-radius: var(--sh-radius); box-shadow: 0 16px 50px rgba(19,35,46,.1); }
.sh-map { margin-top: 64px; border-radius: var(--sh-radius); overflow: hidden; line-height: 0; }
.sh-map iframe { width: 100%; height: 420px; border: 0; }

/* ---------- Forms ---------- */
.sh-form { display: grid; gap: 14px; }
.sh-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.sh-form label { font-size: 13px; font-weight: 600; color: var(--sh-dark); display: block; margin-bottom: 4px; }
.sh-form input, .sh-form textarea, .sh-form select {
	width: 100%; padding: 13px 15px; border: 1px solid #d9dee2; border-radius: var(--sh-radius);
	font: inherit; font-size: 15px; color: var(--sh-dark); background: #fff; transition: border-color .2s, box-shadow .2s;
}
.sh-form input:focus, .sh-form textarea:focus { outline: none; border-color: var(--sh-accent); box-shadow: 0 0 0 3px rgba(201,162,75,.18); }
.sh-form textarea { min-height: 120px; resize: vertical; }
.sh-form .sh-btn { justify-content: center; width: 100%; }
.sh-hp { position: absolute; left: -9999px; }
.sh-alert { padding: 12px 16px; border-radius: var(--sh-radius); font-size: 14px; margin-bottom: 14px; }
.sh-alert--ok { background: #e8f5ec; color: #1d6b3a; }
.sh-alert--err { background: #fdecea; color: #a12a1e; }

/* ---------- Footer ---------- */
.sh-footer { background: var(--sh-dark); color: rgba(255,255,255,.72); padding-top: 72px; }
.sh-footer__grid { display: grid; grid-template-columns: 1.3fr 1fr 1.3fr; gap: 48px; padding-bottom: 56px; }
.sh-footer h4 { color: #fff; font-family: var(--sh-body); font-size: 17px; margin-bottom: 20px; letter-spacing: .02em; }
.sh-footer a { color: rgba(255,255,255,.72); }
.sh-footer a:hover { color: var(--sh-accent); }
.sh-footer .sh-logo__text { color: #fff; }
.sh-footer__about { margin-top: 18px; font-size: 15px; }
.sh-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; font-size: 15px; }
.sh-footer__contact li { display: flex; gap: 12px; align-items: flex-start; }
.sh-footer__contact svg { width: 18px; height: 18px; color: var(--sh-accent); flex: none; margin-top: 4px; }
.sh-social { display: flex; gap: 10px; margin-top: 22px; }
.sh-social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); display: grid; place-items: center; transition: all .2s; }
.sh-social a:hover { background: var(--sh-accent); border-color: var(--sh-accent); color: #fff; }
.sh-social svg { width: 17px; height: 17px; }
.sh-footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; font-size: 14px; }
.sh-footer__bottom .sh-wrap { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }

/* ---------- Floating: WhatsApp + contact drawer ---------- */
.sh-wa {
	position: fixed; left: 22px; bottom: 22px; z-index: 90; width: 56px; height: 56px; border-radius: 50%;
	background: #25d366; color: #fff; display: grid; place-items: center; box-shadow: 0 8px 24px rgba(0,0,0,.2);
	transition: transform .2s;
}
.sh-wa:hover { transform: scale(1.08); color: #fff; }
.sh-wa svg { width: 30px; height: 30px; }
.sh-tab {
	position: fixed; right: 0; top: 50%; z-index: 90; transform: translateY(-50%) rotate(180deg);
	writing-mode: vertical-rl; background: var(--sh-accent); color: #fff; border: 0; padding: 18px 12px;
	font-weight: 600; font-family: var(--sh-body); font-size: 14px; letter-spacing: .08em; text-transform: uppercase;
	border-radius: 0 var(--sh-radius) var(--sh-radius) 0; cursor: pointer;
}
.sh-drawer { position: fixed; inset: 0; z-index: 200; visibility: hidden; }
.sh-drawer.is-open { visibility: visible; }
.sh-drawer__bg { position: absolute; inset: 0; background: rgba(19,35,46,.55); opacity: 0; transition: opacity .3s; }
.sh-drawer.is-open .sh-drawer__bg { opacity: 1; }
.sh-drawer__panel {
	position: absolute; top: 0; right: 0; height: 100%; width: min(420px, 100%); background: #fff;
	padding: 36px 32px; overflow-y: auto; transform: translateX(100%); transition: transform .35s ease;
}
.sh-drawer.is-open .sh-drawer__panel { transform: none; }
.sh-drawer__close { position: absolute; top: 14px; right: 14px; background: none; border: 0; cursor: pointer; padding: 8px; color: var(--sh-dark); }
.sh-drawer__close svg { width: 22px; height: 22px; }

/* ---------- Reveal on scroll ---------- */
.sh-reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.sh-reveal.is-visible { opacity: 1; transform: none; }
.no-js .sh-reveal { opacity: 1; transform: none; }

/* ---------- Single project ---------- */
.sh-card__price { margin-top: 10px; padding-top: 12px; border-top: 1px solid #eef0f2; font-size: 14px; color: var(--sh-muted); }
.sh-card__price strong { color: var(--sh-primary); font-size: 16px; }
.entry-content h2 { font-size: 28px; margin-top: 1.6em; }
.entry-content h3 { font-size: 22px; margin-top: 1.4em; }
.entry-content table { width: 100%; border-collapse: collapse; margin: 0 0 1.5em; font-size: 15px; }
.entry-content th, .entry-content td { padding: 12px 16px; border: 1px solid #e3e7ea; text-align: left; }
.entry-content thead th, .entry-content tr:first-child th { background: var(--sh-primary); color: #fff; font-weight: 600; }
.entry-content tbody tr:nth-child(even) td { background: var(--sh-light); }
.entry-content .wp-block-table { overflow-x: auto; margin: 0 0 1.5em; }
.entry-content ul.sh-amenities { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 10px 20px; }
.entry-content ul.sh-amenities li { padding-left: 26px; position: relative; }
.entry-content ul.sh-amenities li::before { content: ""; position: absolute; left: 4px; top: 8px; width: 10px; height: 10px; border-radius: 50%; background: var(--sh-accent); }
.sh-disclaimer { margin-top: 40px; padding: 16px 20px; background: var(--sh-light); border-left: 3px solid var(--sh-accent); font-size: 13px; color: var(--sh-muted); border-radius: 0 var(--sh-radius) var(--sh-radius) 0; }
.sh-project-hero { aspect-ratio: 16/7; border-radius: var(--sh-radius); overflow: hidden; margin-bottom: 40px; }
.sh-project-hero img { width: 100%; height: 100%; object-fit: cover; }
.sh-facts { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; justify-content: center; }
.sh-facts span { background: var(--sh-light); padding: 8px 16px; border-radius: 20px; font-size: 14px; }
.sh-facts strong { color: var(--sh-primary); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
	.sh-split, .sh-service, .sh-spec, .sh-contact { gap: 44px; }
	.sh-grid-3 { grid-template-columns: repeat(2, 1fr); }
	.sh-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
	.sh-section { padding: 68px 0; }
	.sh-menu-toggle { display: block; }
	.sh-nav {
		position: absolute; top: 100%; left: 0; right: 0; background: #fff; box-shadow: 0 12px 24px rgba(19,35,46,.1);
		max-height: 0; overflow: hidden; transition: max-height .35s ease;
	}
	.sh-nav.is-open { max-height: 480px; }
	.sh-nav ul { flex-direction: column; gap: 0; padding: 8px 20px 18px; }
	.sh-nav a { padding: 13px 0; border-bottom: 1px solid #eef0f2; }
	.sh-nav a::after { display: none; }
	.sh-nav.is-open { max-height: 80vh; overflow-y: auto; }
	.sh-nav .sub-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding: 0 0 0 16px; min-width: 0; }
	.sh-nav .sub-menu a { padding: 11px 0; font-size: 14px; }
	.sh-nav .sub-menu a:hover { background: none; }
	.sh-nav .menu-item-has-children > a::before { display: none; }
	.sh-split, .sh-service, .sh-spec, .sh-contact { grid-template-columns: 1fr; }
	.sh-service:nth-child(even) .sh-service__media { order: 0; }
	.sh-service { margin-bottom: 64px; }
	.sh-split__media { margin: 0 12px 24px; }
	.sh-hero__arrow { display: none; }
	.sh-header__inner { height: 72px; }
	.sh-hero { height: calc(100vh - 72px); }
}
@media (max-width: 782px) { .admin-bar .sh-header { top: 46px; } }
@media (max-width: 600px) {
	.sh-grid-3, .sh-footer__grid, .sh-form__row, .sh-spec__list { grid-template-columns: 1fr; }
	.sh-form-card { padding: 26px 20px; }
	.sh-split__badge { left: 0; bottom: -20px; }
	.sh-tab { display: none; }
	.admin-bar .sh-header { top: 0; }
}

/* =====================================================================
   Project page (microsite layout)
   ===================================================================== */
.sh-btn--accent { background: var(--sh-accent); border-color: var(--sh-accent); }
.sh-btn--accent:hover { background: #fff; border-color: #fff; color: var(--sh-primary); }
.sh-btn--line { background: transparent; color: var(--sh-primary); border-color: var(--sh-primary); }
.sh-btn--line:hover { background: var(--sh-primary); color: #fff; }
.sh-tag { display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; padding: 5px 12px; border-radius: 20px; background: rgba(255,255,255,.14); color: #fff; border: 1px solid rgba(255,255,255,.3); }
.sh-tag--accent { background: var(--sh-accent); border-color: var(--sh-accent); }

/* Hero */
.sh-phero { position: relative; min-height: 640px; background: var(--sh-dark); color: #fff; overflow: hidden; display: flex; align-items: center; }
.sh-phero__slide { position: absolute; inset: 0; background-size: cover; background-position: center; }
.sh-phero__slide::before { background: linear-gradient(90deg, rgba(19,35,46,.9) 0%, rgba(19,35,46,.6) 55%, rgba(19,35,46,.35) 100%) !important; }
.sh-phero__slide--ph { background: linear-gradient(135deg, var(--sh-dark) 0%, var(--sh-primary) 60%, var(--sh-accent) 170%); }
.sh-phero__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 380px; gap: 56px; align-items: center; padding-top: 64px; padding-bottom: 72px; }
.sh-phero__tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.sh-phero__title { color: #fff; font-size: clamp(34px, 5vw, 58px); margin-bottom: 6px; }
.sh-phero__by { color: var(--sh-accent); font-weight: 600; margin-bottom: 10px; }
.sh-phero__loc { display: flex; gap: 8px; align-items: center; color: rgba(255,255,255,.85); margin-bottom: 18px; }
.sh-phero__loc svg { width: 18px; height: 18px; color: var(--sh-accent); flex: none; }
.sh-phero__headline { font-size: 20px; font-weight: 500; color: #fff; margin-bottom: 22px; border-left: 3px solid var(--sh-accent); padding-left: 14px; }
.sh-phero__price { display: inline-flex; align-items: baseline; gap: 10px; flex-wrap: wrap; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); padding: 12px 20px; border-radius: var(--sh-radius); margin-bottom: 28px; backdrop-filter: blur(4px); }
.sh-phero__price span, .sh-phero__price em { font-size: 14px; color: rgba(255,255,255,.75); font-style: normal; }
.sh-phero__price strong { font-family: var(--sh-heading); font-size: 34px; color: var(--sh-accent); line-height: 1; }
.sh-phero__price sup { font-size: 16px; }
.sh-phero__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.sh-phero__actions .sh-btn { padding: 12px 22px; }
.sh-phero__form { background: #fff; color: var(--sh-text); border-radius: 10px; padding: 28px 26px; box-shadow: 0 24px 60px rgba(0,0,0,.3); border-top: 4px solid var(--sh-accent); }
.sh-phero__form h3 { margin: 0 0 2px; font-size: 24px; }
.sh-phero__form > p { color: var(--sh-muted); font-size: 14px; margin-bottom: 16px; }
.sh-phero__form .sh-form { gap: 10px; }
.sh-phero__form .sh-form textarea { min-height: 70px; }
.sh-phero__form .sh-form label { font-size: 12px; }
.sh-phero__dots { bottom: 20px; }

/* Sticky section menu */
.sh-pnav { position: sticky; top: 86px; z-index: 80; background: #fff; border-bottom: 1px solid #e6e9ec; }
.admin-bar .sh-pnav { top: 118px; }
.sh-pnav.is-stuck { box-shadow: 0 6px 18px rgba(19,35,46,.08); }
.sh-pnav__inner { display: flex; gap: 4px; overflow-x: auto; scrollbar-width: none; }
.sh-pnav__inner::-webkit-scrollbar { display: none; }
.sh-pnav a { flex: none; padding: 16px 18px; font-weight: 600; font-size: 14px; color: var(--sh-muted); border-bottom: 3px solid transparent; white-space: nowrap; }
.sh-pnav a:hover { color: var(--sh-primary); }
.sh-pnav a.is-active { color: var(--sh-primary); border-bottom-color: var(--sh-accent); }
.sh-psec { padding: 80px 0; scroll-margin-top: 150px; }
.sh-psec__head { text-align: center; margin-bottom: 40px; }
.sh-psec__head .sh-lead { margin: 0 auto; max-width: 640px; }
.sh-psec__note { text-align: center; font-size: 13px; color: var(--sh-muted); margin-top: 24px; }

/* Key facts */
.sh-pfacts { background: var(--sh-light); padding: 32px 0; }
.sh-pfacts__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 14px; }
.sh-pfact { display: flex; gap: 14px; align-items: center; background: #fff; padding: 16px 18px; border-radius: var(--sh-radius); box-shadow: 0 4px 16px rgba(19,35,46,.05); }
.sh-pfact__icon { width: 44px; height: 44px; border-radius: 50%; background: rgba(201,162,75,.14); color: var(--sh-accent); display: grid; place-items: center; flex: none; }
.sh-pfact__icon svg { width: 22px; height: 22px; }
.sh-pfact small { display: block; font-size: 12px; color: var(--sh-muted); text-transform: uppercase; letter-spacing: .06em; }
.sh-pfact strong { display: block; color: var(--sh-dark); font-size: 15px; line-height: 1.35; }

/* Overview */
.sh-overview { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.sh-overview__body { max-width: none; margin: 0 0 26px; }
.sh-overview__dl { display: flex; gap: 12px; flex-wrap: wrap; }
.sh-overview__media { position: relative; border-radius: 10px; overflow: hidden; aspect-ratio: 4/3.2; box-shadow: 0 20px 50px rgba(19,35,46,.14); }
.sh-overview__media img { width: 100%; height: 100%; object-fit: cover; }
.sh-overview__rera { position: absolute; left: 0; right: 0; bottom: 0; background: rgba(19,35,46,.85); color: #fff; font-size: 13px; padding: 10px 16px; word-break: break-word; }
.sh-overview__rera small { color: var(--sh-accent); font-weight: 600; margin-right: 6px; text-transform: uppercase; letter-spacing: .06em; }

/* Highlights */
.sh-highs { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.sh-highs li { display: flex; gap: 14px; align-items: flex-start; background: #fff; padding: 18px 20px; border-radius: var(--sh-radius); font-weight: 500; color: var(--sh-dark); box-shadow: 0 4px 16px rgba(19,35,46,.05); }
.sh-highs li span { width: 34px; height: 34px; border-radius: 50%; background: var(--sh-primary); color: var(--sh-accent); display: grid; place-items: center; flex: none; }
.sh-highs li svg { width: 17px; height: 17px; }

/* Price list */
.sh-prices { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.sh-price { border: 1px solid #e3e7ea; border-radius: 10px; padding: 26px 22px; text-align: center; display: flex; flex-direction: column; gap: 10px; transition: all .25s; background: #fff; position: relative; overflow: hidden; }
.sh-price::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--sh-accent); transform: scaleX(0); transition: transform .3s; }
.sh-price:hover { box-shadow: 0 16px 40px rgba(19,35,46,.12); transform: translateY(-4px); border-color: transparent; }
.sh-price:hover::before { transform: scaleX(1); }
.sh-price__type { font-family: var(--sh-heading); font-size: 22px; font-weight: 600; color: var(--sh-dark); }
.sh-price__size { display: inline-flex; gap: 6px; align-items: center; justify-content: center; color: var(--sh-muted); font-size: 14px; }
.sh-price__size svg { width: 16px; height: 16px; color: var(--sh-accent); }
.sh-price__amt { background: var(--sh-light); border-radius: var(--sh-radius); padding: 12px; margin: 4px 0 6px; }
.sh-price__amt small { display: block; font-size: 12px; color: var(--sh-muted); text-transform: uppercase; letter-spacing: .06em; }
.sh-price__amt strong { font-size: 22px; color: var(--sh-primary); }
.sh-price .sh-btn { justify-content: center; margin-top: auto; padding: 11px 18px; }

/* Amenities */
.sh-amen { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 16px; }
.sh-amen__item { background: #fff; border-radius: 10px; padding: 24px 14px; text-align: center; font-weight: 500; font-size: 15px; color: var(--sh-dark); box-shadow: 0 4px 16px rgba(19,35,46,.05); transition: transform .25s, box-shadow .25s; }
.sh-amen__item:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(19,35,46,.1); }
.sh-amen__item span { width: 60px; height: 60px; margin: 0 auto 12px; border-radius: 50%; background: rgba(201,162,75,.12); color: var(--sh-primary); display: grid; place-items: center; }
.sh-amen__item svg { width: 30px; height: 30px; }

/* Floor plans */
.sh-plans { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 22px; }
.sh-plan { border: 1px solid #e3e7ea; border-radius: 10px; overflow: hidden; background: #fff; }
.sh-plan__img { display: block; aspect-ratio: 4/3; position: relative; background: #f3f5f7; }
.sh-plan__img img { width: 100%; height: 100%; object-fit: contain; padding: 10px; }
.sh-plan__zoom { position: absolute; right: 12px; bottom: 12px; width: 38px; height: 38px; border-radius: 50%; background: var(--sh-primary); color: #fff; display: grid; place-items: center; opacity: .9; }
.sh-plan__zoom svg { width: 18px; height: 18px; }
.sh-plan__img--locked { display: grid; place-items: center; color: var(--sh-primary); background: repeating-linear-gradient(45deg, #f3f5f7, #f3f5f7 10px, #eceff2 10px, #eceff2 20px); }
.sh-plan__img--locked svg { width: 56px; height: 56px; opacity: .4; }
.sh-plan__foot { padding: 16px 18px; display: flex; justify-content: space-between; align-items: center; gap: 10px; flex-wrap: wrap; }
.sh-plan__foot strong { color: var(--sh-dark); }
.sh-plan__req { background: none; border: 0; padding: 0; color: var(--sh-accent); font: inherit; font-weight: 600; font-size: 14px; cursor: pointer; }
.sh-plan__req:hover { text-decoration: underline; }

/* Gallery */
.sh-gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 12px; }
.sh-gallery a { border-radius: var(--sh-radius); overflow: hidden; display: block; }
.sh-gallery a.is-big { grid-column: span 2; grid-row: span 2; }
.sh-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.sh-gallery a:hover img { transform: scale(1.06); }

/* Location */
.sh-loc { display: grid; grid-template-columns: 1.2fr 1fr; gap: 32px; align-items: stretch; }
.sh-loc--full { grid-template-columns: 1fr; }
.sh-loc__map { border-radius: 10px; overflow: hidden; min-height: 380px; background: var(--sh-light); line-height: 0; }
.sh-loc__map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; }
.sh-loc__map img { width: 100%; height: 100%; object-fit: cover; }
.sh-loc__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; align-content: start; }
.sh-loc__list li { display: flex; align-items: center; gap: 12px; padding: 14px 16px; background: var(--sh-light); border-radius: var(--sh-radius); }
.sh-loc__pin { color: var(--sh-accent); display: grid; }
.sh-loc__pin svg { width: 18px; height: 18px; }
.sh-loc__place { flex: 1; font-weight: 500; color: var(--sh-dark); }
.sh-loc__dist { font-size: 13px; font-weight: 600; color: #fff; background: var(--sh-primary); padding: 4px 10px; border-radius: 20px; white-space: nowrap; }

/* Enquiry band */
.sh-penq { background: var(--sh-primary); color: rgba(255,255,255,.85); }
.sh-penq__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.sh-penq h2 { color: #fff; font-size: clamp(28px, 3.4vw, 40px); }
.sh-penq ul { list-style: none; padding: 0; margin: 20px 0 26px; display: grid; gap: 10px; }
.sh-penq li { display: flex; gap: 10px; align-items: center; }
.sh-penq li svg { width: 20px; height: 20px; color: var(--sh-accent); }
.sh-penq__call { display: inline-flex; gap: 10px; align-items: center; font-size: 22px; font-weight: 700; color: #fff; }
.sh-penq__call svg { width: 22px; height: 22px; color: var(--sh-accent); }
.sh-penq__call:hover { color: var(--sh-accent); }
.sh-alert__dl { display: inline-block; margin-top: 6px; font-weight: 700; }

/* Mobile action bar */
.sh-mbar { display: none; }

/* Lightbox */
.sh-lb { position: fixed; inset: 0; z-index: 300; background: rgba(10,18,24,.92); display: flex; align-items: center; justify-content: center; padding: 60px 70px; }
.sh-lb[hidden] { display: none; }
.sh-lb figure { margin: 0; max-width: 100%; max-height: 100%; text-align: center; }
.sh-lb img { max-width: 100%; max-height: calc(100vh - 140px); margin: 0 auto; border-radius: 4px; }
.sh-lb figcaption { color: #fff; margin-top: 12px; font-size: 15px; }
.sh-lb button { position: absolute; background: rgba(255,255,255,.1); border: 0; color: #fff; width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; cursor: pointer; }
.sh-lb button:hover { background: var(--sh-accent); }
.sh-lb button svg { width: 22px; height: 22px; }
.sh-lb__close { top: 16px; right: 16px; }
.sh-lb__prev { left: 16px; top: 50%; transform: translateY(-50%); }
.sh-lb__next { right: 16px; top: 50%; transform: translateY(-50%); }
.sh-lb button[hidden] { display: none; }

@media (max-width: 1024px) {
	.sh-phero__inner { grid-template-columns: 1fr 340px; gap: 32px; }
	.sh-overview, .sh-loc, .sh-penq__inner { gap: 36px; }
	.sh-gallery { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 860px) {
	.sh-phero { min-height: 0; }
	.sh-phero__inner { grid-template-columns: 1fr; padding-top: 48px; padding-bottom: 56px; }
	.sh-phero__form { display: none; }
	.sh-pnav { top: 72px; }
	.sh-psec { padding: 60px 0; scroll-margin-top: 130px; }
	.sh-overview, .sh-loc, .sh-penq__inner { grid-template-columns: 1fr; }
	.sh-overview__media { order: -1; }
	.sh-highs { grid-template-columns: 1fr; }
	.sh-gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
	.sh-lb { padding: 60px 12px; }
	.sh-lb__prev, .sh-lb__next { top: auto; bottom: 16px; transform: none; }
	/* Bottom action bar replaces the floating buttons on project pages */
	.single-project .sh-wa, .single-project .sh-tab { display: none; }
	.single-project { padding-bottom: 64px; }
	.sh-mbar { display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 95; background: #fff; box-shadow: 0 -4px 20px rgba(19,35,46,.15); }
	.sh-mbar a, .sh-mbar button { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; height: 60px; font: inherit; font-weight: 600; font-size: 15px; color: var(--sh-primary); background: #fff; border: 0; border-right: 1px solid #eef0f2; cursor: pointer; }
	.sh-mbar svg { width: 20px; height: 20px; }
	.sh-mbar .sh-mbar__wa { color: #1da851; }
	.sh-mbar .sh-mbar__enq { background: var(--sh-accent); color: #fff; border: 0; }
}
@media (max-width: 782px) { .admin-bar .sh-pnav { top: 118px; } }
@media (max-width: 600px) {
	.admin-bar .sh-pnav { top: 72px; }
	.sh-phero__actions .sh-btn { flex: 1 1 auto; justify-content: center; }
	.sh-phero__price strong { font-size: 28px; }
	.sh-pnav a { padding: 14px 12px; font-size: 13px; }
}
