/**
 * Garcia MHU Inventory — front-end styles.
 * Values are taken from the approved 1440px design.
 */

/* Declared on :root so widgets rendered outside the theme body (the Elementor
   editor preview, for one) still resolve every token. */
:root {
	--gmhu-navy: #0f2540;
	--gmhu-navy-deep: #0b1c31;
	--gmhu-navy-tile: #16304f;
	--gmhu-navy-line: #27466b;
	--gmhu-blue: #1c5f9e;
	--gmhu-blue-light: #8fc4f0;
	--gmhu-green: #0e7a5f;
	--gmhu-amber: #b7791f;
	--gmhu-grey: #8d98a7;
	--gmhu-ink: #34424f;
	--gmhu-ink-soft: #4a5663;
	--gmhu-muted: #5c6875;
	--gmhu-meta: #66717e;
	--gmhu-label: #7b8697;
	--gmhu-faint: #9aa5b2;
	--gmhu-placeholder: #a3aeba;
	--gmhu-line: #e7ebf0;
	--gmhu-line-card: #e2e7ee;
	--gmhu-line-soft: #edf0f4;
	--gmhu-line-field: #d5dce4;
	--gmhu-line-check: #cbd3dc;
	--gmhu-surface: #f6f8fa;
	--gmhu-chip: #f2f5f8;
	--gmhu-shell: 1440px;
	--gmhu-gutter: 56px;
	--gmhu-sans: "Barlow", system-ui, -apple-system, sans-serif;
	--gmhu-display: "Archivo", system-ui, -apple-system, sans-serif;
	--gmhu-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, monospace;
	--gmhu-photo: repeating-linear-gradient(135deg, #d9dfe7 0 10px, #e4e9ef 10px 20px);
}

.gmhu-main,
.gmhu-chrome-header,
.gmhu-footer,
.gmhu-inventory,
.gmhu-featured,
.gmhu-estimator,
.gmhu-agentcard,
.gmhu-search,
.gmhu-stats {
	font-family: var(--gmhu-sans);
	-webkit-font-smoothing: antialiased;
	box-sizing: border-box;
}

.gmhu-main *,
.gmhu-chrome-header *,
.gmhu-footer *,
.gmhu-inventory *,
.gmhu-featured *,
.gmhu-estimator *,
.gmhu-agentcard *,
.gmhu-search *,
.gmhu-stats * {
	box-sizing: border-box;
}

/* The plugin chrome replaces the theme's own header and footer. Hello Elementor
   uses .site-header/.site-footer; other themes commonly use #masthead/#colophon. */
.gmhu-chrome-replaces-theme .site-header,
.gmhu-chrome-replaces-theme .site-footer,
.gmhu-chrome-replaces-theme .ehf-header,
.gmhu-chrome-replaces-theme .ehf-footer,
.gmhu-chrome-replaces-theme > #masthead,
.gmhu-chrome-replaces-theme > #colophon,
.gmhu-chrome-replaces-theme #page > #masthead,
.gmhu-chrome-replaces-theme #page > #colophon {
	display: none !important;
}

.gmhu-shell {
	width: 100%;
	max-width: var(--gmhu-shell);
	margin-inline: auto;
	padding-inline: var(--gmhu-gutter);
}

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

/* ---------------------------------------------------------------- type ---- */

.gmhu-h1 {
	font-family: var(--gmhu-display);
	font-size: 40px;
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: -0.025em;
	color: var(--gmhu-navy);
	margin: 0 0 6px;
}

.gmhu-h2 {
	font-family: var(--gmhu-display);
	font-size: 38px;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--gmhu-navy);
	margin: 0;
}

.gmhu-h3 {
	font-family: var(--gmhu-display);
	font-size: 26px;
	font-weight: 700;
	letter-spacing: -0.015em;
	color: var(--gmhu-navy);
	margin: 0 0 18px;
}

.gmhu-eyebrow {
	font-family: var(--gmhu-mono);
	font-size: 12px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--gmhu-label);
	margin-bottom: 10px;
}

.gmhu-eyebrow--blue {
	color: var(--gmhu-blue);
}

.gmhu-crumbs {
	font-family: var(--gmhu-mono);
	font-size: 12px;
	color: var(--gmhu-label);
	display: flex;
	gap: 6px;
	align-items: center;
	margin-bottom: 10px;
}

.gmhu-crumbs a {
	color: inherit;
	text-decoration: none;
}

.gmhu-crumbs a:hover {
	color: var(--gmhu-blue);
}

.gmhu-prose {
	font-size: 17px;
	line-height: 1.68;
	color: var(--gmhu-ink-soft);
	max-width: 70ch;
	margin-bottom: 38px;
	text-wrap: pretty;
}

.gmhu-prose p {
	margin: 0 0 14px;
}

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

.gmhu-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-family: var(--gmhu-display);
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	padding: 12px 26px;
	border-radius: 4px;
	border: 1.5px solid transparent;
	text-decoration: none;
	cursor: pointer;
	transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
	white-space: nowrap;
}

.gmhu-btn--navy {
	background: var(--gmhu-navy);
	color: #fff;
}

.gmhu-btn--navy:hover,
.gmhu-btn--navy:focus-visible {
	background: #16304f;
	color: #fff;
}

.gmhu-btn--blue {
	background: var(--gmhu-blue);
	color: #fff;
	font-size: 16px;
	padding: 16px 26px;
}

.gmhu-btn--blue:hover,
.gmhu-btn--blue:focus-visible {
	background: #17538a;
	color: #fff;
}

.gmhu-btn--ghost {
	background: transparent;
	border-color: var(--gmhu-line-field);
	color: var(--gmhu-navy);
	font-weight: 600;
	padding: 12px 20px;
}

.gmhu-btn--ghost:hover,
.gmhu-btn--ghost:focus-visible {
	border-color: var(--gmhu-navy);
	color: var(--gmhu-navy);
}

.gmhu-btn--white {
	background: #fff;
	color: var(--gmhu-navy);
	font-size: 16px;
	padding: 16px 30px;
}

.gmhu-btn--block {
	display: flex;
	width: 100%;
}

/* -------------------------------------------------------------- chrome ---- */

.gmhu-topbar {
	background: var(--gmhu-navy);
	color: #a9bdd4;
	font-size: 13px;
}

.gmhu-topbar__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 22px;
	padding-block: 9px;
}

.gmhu-topbar a {
	color: inherit;
	text-decoration: none;
}

.gmhu-topbar a:hover {
	color: #fff;
}

.gmhu-topbar__contact {
	display: flex;
	gap: 22px;
	align-items: center;
}

.gmhu-topbar__sep {
	color: #3c5a7d;
}

.gmhu-header {
	background: #fff;
	border-bottom: 1px solid var(--gmhu-line);
}

.gmhu-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding-block: 20px;
}

.gmhu-brand {
	display: flex;
	align-items: baseline;
	gap: 10px;
	text-decoration: none;
}

.gmhu-brand__name {
	font-family: var(--gmhu-display);
	font-size: 25px;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--gmhu-navy);
}

.gmhu-brand__tagline {
	font-family: var(--gmhu-mono);
	font-size: 10px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--gmhu-grey);
}

.gmhu-brand img {
	max-height: 44px;
	width: auto;
}

.gmhu-nav {
	display: flex;
	align-items: center;
	gap: 32px;
}

.gmhu-nav__list {
	display: flex;
	align-items: center;
	gap: 32px;
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 15px;
	font-weight: 500;
}

.gmhu-nav__list a {
	color: var(--gmhu-ink);
	text-decoration: none;
	padding-bottom: 3px;
	border-bottom: 2px solid transparent;
}

.gmhu-nav__list a:hover,
.gmhu-nav__list .current-menu-item > a,
.gmhu-nav__list .current_page_item > a,
.gmhu-nav__list .current-menu-item a {
	color: var(--gmhu-navy);
	font-weight: 600;
	border-bottom-color: var(--gmhu-navy);
}

.gmhu-nav__cta {
	font-family: var(--gmhu-sans);
	font-size: 15px;
	font-weight: 600;
	padding: 12px 22px;
}

.gmhu-navtoggle {
	display: none;
	width: 44px;
	height: 44px;
	border: 1px solid var(--gmhu-line-field);
	border-radius: 4px;
	background: #fff;
	cursor: pointer;
	position: relative;
}

.gmhu-navtoggle__bars,
.gmhu-navtoggle__bars::before,
.gmhu-navtoggle__bars::after {
	position: absolute;
	left: 12px;
	width: 18px;
	height: 2px;
	background: var(--gmhu-navy);
	content: "";
}

.gmhu-navtoggle__bars {
	top: 21px;
	transition: background-color 0.15s ease;
}

.gmhu-navtoggle__bars::before,
.gmhu-navtoggle__bars::after {
	transition: transform 0.18s ease, top 0.18s ease;
}

/* Bars fold into an X while the panel is open. */
.gmhu-navtoggle.is-open .gmhu-navtoggle__bars {
	background-color: transparent;
}

.gmhu-navtoggle.is-open .gmhu-navtoggle__bars::before {
	top: 0;
	transform: rotate(45deg);
}

.gmhu-navtoggle.is-open .gmhu-navtoggle__bars::after {
	top: 0;
	transform: rotate(-45deg);
}

.gmhu-navtoggle__bars::before {
	top: -6px;
	left: 0;
}

.gmhu-navtoggle__bars::after {
	top: 6px;
	left: 0;
}

.gmhu-footer {
	background: var(--gmhu-navy-deep);
	color: #9fb2c8;
	padding: 52px 0 34px;
}

.gmhu-footer a {
	color: inherit;
	text-decoration: none;
}

.gmhu-footer a:hover {
	color: #fff;
}

.gmhu-footer__grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1fr;
	gap: 40px;
	padding-bottom: 34px;
	border-bottom: 1px solid #1e3552;
}

.gmhu-footer__brand {
	font-family: var(--gmhu-display);
	font-size: 22px;
	font-weight: 800;
	color: #fff;
	margin-bottom: 12px;
}

.gmhu-footer__about {
	font-size: 15px;
	line-height: 1.6;
	max-width: 300px;
	margin: 0;
}

.gmhu-footer__title {
	font-family: var(--gmhu-display);
	color: #fff;
	font-weight: 600;
	font-size: 15px;
	margin-bottom: 10px;
}

.gmhu-footer__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
	font-size: 15px;
}

.gmhu-footer__base {
	padding-top: 22px;
	font-size: 13px;
	display: flex;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}

/* ---------------------------------------------------------- placeholder ---- */

.gmhu-ph {
	position: absolute;
	inset: 0;
	background: var(--gmhu-photo);
	display: flex;
	align-items: center;
	justify-content: center;
}

.gmhu-ph__label {
	font-family: var(--gmhu-mono);
	font-size: 11px;
	color: #7d8899;
}

/* --------------------------------------------------------------- badge ---- */

.gmhu-badge {
	position: absolute;
	top: 14px;
	left: 14px;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 6px 10px;
	border-radius: 3px;
	background: var(--gmhu-green);
	z-index: 2;
}

.gmhu-badge--sm {
	top: 12px;
	left: 12px;
	font-size: 10px;
	padding: 5px 9px;
}

.gmhu-badge--lg {
	top: 18px;
	left: 18px;
	padding: 7px 12px;
}

.gmhu-badge--pending {
	background: var(--gmhu-amber);
}

.gmhu-badge--sold {
	background: var(--gmhu-grey);
}

/* ---------------------------------------------------------------- card ---- */

.gmhu-card {
	background: #fff;
	border: 1px solid var(--gmhu-line-card);
	border-radius: 6px;
	overflow: hidden;
}

.gmhu-card.is-sold {
	opacity: 0.72;
}

.gmhu-card__media {
	position: relative;
	display: block;
	overflow: hidden;
	background: var(--gmhu-photo);
}

.gmhu-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.gmhu-card__count {
	position: absolute;
	bottom: 14px;
	right: 14px;
	background: rgba(15, 37, 64, 0.82);
	color: #fff;
	font-size: 12px;
	padding: 5px 9px;
	border-radius: 3px;
	font-family: var(--gmhu-mono);
	z-index: 2;
}

.gmhu-card__body {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.gmhu-card__head {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 20px;
}

.gmhu-card__title {
	font-family: var(--gmhu-display);
	font-size: 25px;
	font-weight: 700;
	letter-spacing: -0.015em;
	color: var(--gmhu-navy);
	margin: 0 0 6px;
	line-height: 1.2;
}

.gmhu-card__title a {
	color: inherit;
	text-decoration: none;
}

.gmhu-card__title a:hover {
	color: var(--gmhu-blue);
}

.gmhu-card__meta {
	font-size: 15px;
	color: var(--gmhu-meta);
}

.gmhu-card__pricing {
	text-align: right;
	flex: none;
}

.gmhu-card__price {
	font-family: var(--gmhu-display);
	font-size: 31px;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--gmhu-navy);
	line-height: 1.1;
}

.gmhu-card__rent {
	font-size: 13px;
	color: var(--gmhu-label);
}

.gmhu-card__foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-top: 22px;
	flex-wrap: wrap;
}

.gmhu-card__actions {
	display: flex;
	gap: 10px;
	flex: none;
}

/* Featured row — 380px photo column. */

.gmhu-card--featured {
	display: grid;
	grid-template-columns: 380px 1fr;
}

.gmhu-card--featured .gmhu-card__media {
	height: 262px;
}

.gmhu-card--featured .gmhu-card__body {
	padding: 26px 30px;
}

/* Archive row — 300px photo column. */

.gmhu-card--row {
	display: grid;
	grid-template-columns: 300px 1fr;
}

.gmhu-card--row .gmhu-card__media {
	height: 214px;
}

.gmhu-card--row .gmhu-card__body {
	padding: 22px 26px;
}

.gmhu-card--row .gmhu-card__title {
	font-size: 22px;
	margin-bottom: 5px;
}

.gmhu-card--row .gmhu-card__meta {
	font-size: 14px;
}

.gmhu-card--row .gmhu-card__price {
	font-size: 27px;
}

.gmhu-card--row .gmhu-card__foot {
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px solid var(--gmhu-line-soft);
}

/* Compact grid card. */

.gmhu-card--grid .gmhu-card__media {
	height: 170px;
}

.gmhu-card--grid .gmhu-card__body {
	padding: 18px;
}

.gmhu-card--grid .gmhu-card__price {
	font-family: var(--gmhu-display);
	font-size: 22px;
	font-weight: 800;
}

.gmhu-card__title--sm {
	font-family: var(--gmhu-sans);
	font-size: 15px;
	font-weight: 500;
	color: var(--gmhu-ink);
	margin: 4px 0 3px;
	letter-spacing: 0;
}

.gmhu-card--grid .gmhu-card__meta {
	font-size: 14px;
	color: var(--gmhu-label);
}

/* Spec strip inside featured rows. */

.gmhu-specstrip {
	display: flex;
	margin-top: 22px;
	border-top: 1px solid var(--gmhu-line-soft);
	border-bottom: 1px solid var(--gmhu-line-soft);
	flex-wrap: wrap;
}

.gmhu-specstrip__cell {
	padding: 14px 26px;
	border-right: 1px solid var(--gmhu-line-soft);
}

.gmhu-specstrip__cell:first-child {
	padding-left: 0;
}

.gmhu-specstrip__cell:last-child {
	border-right: 0;
}

.gmhu-specstrip__value {
	font-family: var(--gmhu-display);
	font-size: 19px;
	font-weight: 700;
	color: var(--gmhu-navy);
}

.gmhu-specstrip__label {
	font-size: 12px;
	color: var(--gmhu-label);
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.gmhu-specline {
	display: flex;
	gap: 22px;
	font-size: 15px;
	color: var(--gmhu-ink);
	flex-wrap: wrap;
}

.gmhu-specline strong {
	font-family: var(--gmhu-display);
	font-weight: 700;
}

.gmhu-chips {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.gmhu-chip {
	background: var(--gmhu-chip);
	color: #48566a;
	font-size: 13px;
	padding: 7px 12px;
	border-radius: 3px;
}

.gmhu-save.is-saved {
	border-color: var(--gmhu-blue);
	color: var(--gmhu-blue);
}

/* ----------------------------------------------------------- inventory ---- */

.gmhu-main--archive {
	background: #fff;
}

.gmhu-archive-head {
	background: var(--gmhu-surface);
	border-bottom: 1px solid var(--gmhu-line);
	padding: 34px 0;
}

.gmhu-archive-head__intro {
	font-size: 17px;
	color: var(--gmhu-muted);
	margin: 0;
}

.gmhu-archive-body {
	padding-block: 36px 56px;
}

.gmhu-inventory {
	display: grid;
	grid-template-columns: 300px 1fr;
	gap: 36px;
	align-items: start;
}

.gmhu-inventory--no-rail {
	grid-template-columns: 1fr;
}

.gmhu-rail {
	display: flex;
	flex-direction: column;
	gap: 26px;
	position: sticky;
	top: 24px;
}

.gmhu-filters {
	border: 1px solid var(--gmhu-line-card);
	border-radius: 6px;
	padding: 22px;
	background: #fff;
}

.gmhu-filters__head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

.gmhu-filters__title {
	font-family: var(--gmhu-display);
	font-size: 17px;
	font-weight: 700;
	color: var(--gmhu-navy);
}

.gmhu-filters__reset {
	font-size: 13px;
	color: var(--gmhu-blue);
	font-weight: 600;
	text-decoration: none;
}

.gmhu-filter {
	margin-bottom: 24px;
}

.gmhu-filter:last-of-type {
	margin-bottom: 0;
}

.gmhu-filter__label {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--gmhu-label);
	margin-bottom: 12px;
}

/* Dual price slider. */

.gmhu-range {
	position: relative;
	height: 16px;
	margin: 14px 6px;
}

.gmhu-range__track {
	position: absolute;
	top: 6px;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--gmhu-line-card);
	border-radius: 2px;
}

.gmhu-range__fill {
	position: absolute;
	top: 0;
	bottom: 0;
	background: var(--gmhu-blue);
	border-radius: 2px;
}

.gmhu-range__input {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 16px;
	margin: 0;
	background: none;
	pointer-events: none;
	appearance: none;
	-webkit-appearance: none;
}

.gmhu-range__input::-webkit-slider-thumb {
	pointer-events: auto;
	appearance: none;
	-webkit-appearance: none;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: #fff;
	border: 2px solid var(--gmhu-blue);
	cursor: pointer;
}

.gmhu-range__input::-moz-range-thumb {
	pointer-events: auto;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: #fff;
	border: 2px solid var(--gmhu-blue);
	cursor: pointer;
}

.gmhu-range__input::-moz-range-track {
	background: none;
}

.gmhu-range__values {
	display: flex;
	justify-content: space-between;
	font-size: 14px;
	color: var(--gmhu-ink);
	font-weight: 600;
}

/* Segmented control. */

.gmhu-segment {
	display: flex;
	gap: 6px;
}

.gmhu-segment__item {
	flex: 1;
	text-align: center;
	border: 1px solid var(--gmhu-line-field);
	border-radius: 4px;
	padding: 10px 0;
	font-size: 14px;
	font-weight: 600;
	color: var(--gmhu-ink);
	cursor: pointer;
	transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.gmhu-segment__item input {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}

.gmhu-segment__item:has(input:checked),
.gmhu-segment__item.is-active {
	background: var(--gmhu-navy);
	border-color: var(--gmhu-navy);
	color: #fff;
}

.gmhu-segment__item:has(input:focus-visible) {
	outline: 2px solid var(--gmhu-blue);
	outline-offset: 2px;
}

.gmhu-segment--form .gmhu-segment__item {
	padding: 11px 0;
	gap: 8px;
}

/* Checkboxes. */

.gmhu-checks {
	display: flex;
	flex-direction: column;
	gap: 11px;
	font-size: 15px;
	color: var(--gmhu-ink);
}

.gmhu-check,
.gmhu-consent {
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
}

.gmhu-consent {
	align-items: flex-start;
	font-size: 13px;
	color: var(--gmhu-muted);
	line-height: 1.45;
}

.gmhu-check input,
.gmhu-consent input {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}

.gmhu-check__box {
	width: 17px;
	height: 17px;
	border: 1.5px solid var(--gmhu-line-check);
	border-radius: 3px;
	flex: none;
	position: relative;
	background: #fff;
	transition: background-color 0.15s ease, border-color 0.15s ease;
}

.gmhu-consent .gmhu-check__box {
	margin-top: 1px;
}

.gmhu-check input:checked ~ .gmhu-check__box,
.gmhu-consent input:checked ~ .gmhu-check__box {
	background: var(--gmhu-blue);
	border-color: var(--gmhu-blue);
}

.gmhu-check input:checked ~ .gmhu-check__box::after,
.gmhu-consent input:checked ~ .gmhu-check__box::after {
	content: "";
	position: absolute;
	left: 4px;
	top: 0.5px;
	width: 5px;
	height: 9px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.gmhu-check input:focus-visible ~ .gmhu-check__box,
.gmhu-consent input:focus-visible ~ .gmhu-check__box {
	outline: 2px solid var(--gmhu-blue);
	outline-offset: 2px;
}

.gmhu-check__count {
	color: var(--gmhu-faint);
}

.gmhu-filters__submit {
	width: 100%;
	margin-top: 4px;
}

.gmhu-promo {
	background: var(--gmhu-surface);
	border: 1px solid var(--gmhu-line-card);
	border-radius: 6px;
	padding: 22px;
}

.gmhu-promo__title {
	font-family: var(--gmhu-display);
	font-size: 17px;
	font-weight: 700;
	color: var(--gmhu-navy);
	margin-bottom: 8px;
}

.gmhu-promo__text {
	font-size: 15px;
	line-height: 1.5;
	color: var(--gmhu-muted);
	margin: 0 0 16px;
}

/* Results. */

.gmhu-results__bar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	padding-bottom: 18px;
	border-bottom: 1px solid var(--gmhu-line);
	margin-bottom: 20px;
	flex-wrap: wrap;
}

.gmhu-results__count {
	font-size: 15px;
	color: var(--gmhu-muted);
}

.gmhu-results__count strong {
	font-weight: 700;
	color: var(--gmhu-navy);
}

.gmhu-sort {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 15px;
	color: var(--gmhu-ink);
}

.gmhu-sort__label {
	color: var(--gmhu-label);
}

.gmhu-results__list {
	display: flex;
	flex-direction: column;
	gap: 16px;
	transition: opacity 0.15s ease;
}

.gmhu-results__list[aria-busy="true"] {
	opacity: 0.55;
}

.gmhu-results__list--grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.gmhu-rows {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.gmhu-empty {
	border: 1px dashed var(--gmhu-line-card);
	border-radius: 6px;
	padding: 48px 32px;
	text-align: center;
	grid-column: 1 / -1;
}

.gmhu-empty__title {
	font-family: var(--gmhu-display);
	font-size: 21px;
	font-weight: 700;
	color: var(--gmhu-navy);
	margin-bottom: 8px;
}

.gmhu-empty__text {
	font-size: 16px;
	color: var(--gmhu-muted);
	margin: 0 0 20px;
}

.gmhu-pagination {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 34px;
	font-size: 15px;
	font-weight: 600;
}

.gmhu-pagination .page-numbers {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--gmhu-line-field);
	border-radius: 4px;
	color: var(--gmhu-ink);
	text-decoration: none;
}

.gmhu-pagination .page-numbers.current {
	background: var(--gmhu-navy);
	border-color: var(--gmhu-navy);
	color: #fff;
}

.gmhu-pagination .page-numbers.dots {
	border-color: transparent;
}

.gmhu-pagination a.page-numbers:hover {
	border-color: var(--gmhu-navy);
}

/* ------------------------------------------------------- search strip ---- */

.gmhu-search {
	background: var(--gmhu-surface);
	border-bottom: 1px solid var(--gmhu-line);
	padding: 22px var(--gmhu-gutter);
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr auto;
	gap: 14px;
	align-items: end;
}

.gmhu-search__field {
	display: flex;
	flex-direction: column;
	gap: 7px;
}

.gmhu-search__label {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--gmhu-label);
}

.gmhu-search__submit {
	padding: 14px 34px;
	font-size: 15px;
}

/* Inputs and selects. */

.gmhu-select {
	position: relative;
}

.gmhu-select::after {
	content: "▾";
	position: absolute;
	right: 13px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--gmhu-faint);
	pointer-events: none;
	font-size: 13px;
}

.gmhu-select select,
.gmhu-form input[type="text"],
.gmhu-form input[type="email"],
.gmhu-form input[type="tel"],
.gmhu-form textarea {
	width: 100%;
	background: #fff;
	border: 1px solid var(--gmhu-line-field);
	border-radius: 4px;
	padding: 12px 13px;
	font-family: var(--gmhu-sans);
	font-size: 15px;
	color: var(--gmhu-ink);
	appearance: none;
	-webkit-appearance: none;
	line-height: 1.3;
}

.gmhu-search .gmhu-select select {
	padding: 13px 14px;
}

.gmhu-select select {
	padding-right: 34px;
}

.gmhu-form input::placeholder,
.gmhu-form textarea::placeholder {
	color: var(--gmhu-placeholder);
}

.gmhu-form input:focus,
.gmhu-form textarea:focus,
.gmhu-select select:focus {
	outline: none;
	border-color: var(--gmhu-blue);
	box-shadow: 0 0 0 3px rgba(28, 95, 158, 0.12);
}

.gmhu-form .has-error input,
.gmhu-form .has-error textarea {
	border-color: #c0392b;
}

/* ------------------------------------------------------------ listing ---- */

.gmhu-main--single {
	background: #fff;
}

.gmhu-gallery {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 6px;
	padding: 6px 6px 0;
}

.gmhu-gallery__main,
.gmhu-gallery__tile {
	position: relative;
	border: 0;
	padding: 0;
	background: var(--gmhu-photo);
	border-radius: 4px;
	overflow: hidden;
	cursor: pointer;
	display: block;
	width: 100%;
}

.gmhu-gallery__main[disabled],
.gmhu-gallery__tile[disabled] {
	cursor: default;
}

.gmhu-gallery__main {
	height: 470px;
}

.gmhu-gallery__side {
	display: grid;
	grid-template-rows: 1fr 1fr;
	gap: 6px;
}

.gmhu-gallery img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.gmhu-gallery__more {
	position: absolute;
	inset: 0;
	background: rgba(15, 37, 64, 0.62);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-family: var(--gmhu-display);
	font-size: 19px;
	font-weight: 700;
}

.gmhu-listing {
	display: grid;
	grid-template-columns: 1fr 396px;
	gap: 48px;
	padding-block: 44px 60px;
	align-items: start;
}

.gmhu-listing__head {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 30px;
	padding-bottom: 26px;
	border-bottom: 1px solid var(--gmhu-line);
}

.gmhu-listing__title {
	font-size: 42px;
	letter-spacing: -0.028em;
	margin-bottom: 8px;
}

.gmhu-listing__location {
	font-size: 17px;
	color: var(--gmhu-muted);
}

.gmhu-listing__pricing {
	text-align: right;
	flex: none;
}

.gmhu-listing__price {
	font-family: var(--gmhu-display);
	font-size: 40px;
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1;
	color: var(--gmhu-navy);
}

.gmhu-listing__rent {
	font-size: 15px;
	color: var(--gmhu-muted);
	margin-top: 6px;
}

.gmhu-specgrid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1px;
	background: var(--gmhu-line);
	border: 1px solid var(--gmhu-line);
	border-radius: 6px;
	overflow: hidden;
	margin: 26px 0 34px;
}

.gmhu-specgrid__cell {
	background: #fff;
	padding: 20px 22px;
}

.gmhu-specgrid__label {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--gmhu-label);
	margin-bottom: 6px;
}

.gmhu-specgrid__value {
	font-family: var(--gmhu-display);
	font-size: 25px;
	font-weight: 700;
	color: var(--gmhu-navy);
}

.gmhu-details {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 48px;
	margin: 0 0 38px;
}

.gmhu-details__row {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	padding: 13px 0;
	border-bottom: 1px solid var(--gmhu-line-soft);
	font-size: 16px;
}

.gmhu-details dt {
	color: var(--gmhu-label);
	margin: 0;
}

.gmhu-details dd {
	color: var(--gmhu-navy);
	font-weight: 600;
	margin: 0;
	text-align: right;
}

.gmhu-details__status--available {
	color: var(--gmhu-green);
}

.gmhu-details__status--pending {
	color: var(--gmhu-amber);
}

.gmhu-details__status--sold {
	color: var(--gmhu-grey);
}

.gmhu-features {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px 24px;
	margin: 0 0 38px;
	padding: 0;
	list-style: none;
	font-size: 16px;
	color: var(--gmhu-ink);
}

.gmhu-features li {
	display: flex;
	align-items: center;
	gap: 10px;
}

.gmhu-features li::before {
	content: "";
	width: 6px;
	height: 6px;
	background: var(--gmhu-blue);
	border-radius: 50%;
	flex: none;
}

.gmhu-floorplan {
	border: 1px solid var(--gmhu-line-card);
	border-radius: 6px;
	background: repeating-linear-gradient(135deg, #eef1f5 0 10px, #f5f7fa 10px 20px);
	min-height: 340px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	padding: 16px;
}

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

.gmhu-sticky {
	position: sticky;
	top: 24px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

/* Agent card and form. */

.gmhu-agentcard {
	border: 1px solid var(--gmhu-line-card);
	border-radius: 6px;
	overflow: hidden;
	background: #fff;
}

.gmhu-agentcard__head {
	background: var(--gmhu-navy);
	padding: 22px 24px;
	display: flex;
	align-items: center;
	gap: 15px;
}

.gmhu-agentcard__avatar {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: repeating-linear-gradient(135deg, #42618a 0 6px, #4d6d97 6px 12px);
	flex: none;
	overflow: hidden;
	display: block;
}

.gmhu-agentcard__avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
	display: block;
}

.gmhu-agentcard__name {
	font-family: var(--gmhu-display);
	font-size: 18px;
	font-weight: 700;
	color: #fff;
}

.gmhu-agentcard__role {
	font-size: 14px;
	color: #a9bdd4;
}

.gmhu-agentcard__role a {
	color: inherit;
	text-decoration: none;
}

.gmhu-agentcard__role a:hover {
	color: #fff;
}

.gmhu-agentcard__body {
	padding: 24px;
}

.gmhu-form__title {
	font-family: var(--gmhu-display);
	font-size: 21px;
	font-weight: 700;
	color: var(--gmhu-navy);
	margin-bottom: 6px;
}

.gmhu-form__intro {
	font-size: 15px;
	color: var(--gmhu-muted);
	line-height: 1.5;
	margin: 0 0 20px;
}

.gmhu-form__fields {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.gmhu-form__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.gmhu-label {
	display: block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: var(--gmhu-label);
	margin-bottom: 6px;
}

.gmhu-form textarea {
	min-height: 84px;
	resize: vertical;
}

.gmhu-field-error {
	display: none;
	font-size: 13px;
	color: #c0392b;
	margin-top: 5px;
}

.gmhu-field-error:not(:empty) {
	display: block;
}

.gmhu-form__notice {
	display: none;
	border-radius: 4px;
	padding: 12px 14px;
	font-size: 14px;
	line-height: 1.45;
	margin-bottom: 14px;
}

.gmhu-form__notice.is-visible,
.gmhu-form__notice:not(:empty) {
	display: block;
}

.gmhu-form__notice--success {
	background: #e7f5f0;
	color: #0b5a46;
	border: 1px solid #bfe3d7;
}

.gmhu-form__notice--error {
	background: #fdecea;
	color: #922b21;
	border: 1px solid #f5c6c2;
}

.gmhu-form__ref {
	font-size: 12px;
	color: var(--gmhu-grey);
	text-align: center;
	font-family: var(--gmhu-mono);
}

.gmhu-form__submit[disabled] {
	opacity: 0.7;
	cursor: progress;
}

.gmhu-hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

/* Estimated monthly. */

.gmhu-monthly {
	border: 1px solid var(--gmhu-line-card);
	border-radius: 6px;
	padding: 20px 22px;
	background: #fff;
}

.gmhu-monthly__title {
	font-family: var(--gmhu-display);
	font-size: 17px;
	font-weight: 700;
	color: var(--gmhu-navy);
	margin-bottom: 12px;
}

.gmhu-monthly__row {
	display: flex;
	justify-content: space-between;
	font-size: 15px;
	color: var(--gmhu-muted);
	padding: 7px 0;
}

.gmhu-monthly__value {
	color: var(--gmhu-navy);
	font-weight: 600;
}

.gmhu-monthly__total {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	font-size: 16px;
	padding-top: 12px;
	margin-top: 7px;
	border-top: 1px solid var(--gmhu-line-soft);
	font-weight: 700;
	color: var(--gmhu-navy);
}

.gmhu-monthly__sum {
	font-family: var(--gmhu-display);
	font-weight: 800;
	font-size: 19px;
}

.gmhu-monthly__note {
	font-size: 12px;
	color: var(--gmhu-grey);
	margin: 10px 0 0;
	line-height: 1.45;
}

/* Similar homes. */

.gmhu-similar {
	background: var(--gmhu-surface);
	border-top: 1px solid var(--gmhu-line);
	padding: 52px 0;
}

.gmhu-similar__title {
	font-size: 28px;
	margin-bottom: 24px;
}

.gmhu-similar__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

/* --------------------------------------------------------- estimator ---- */

.gmhu-estimator {
	border: 1px solid var(--gmhu-line-card);
	border-radius: 6px;
	overflow: hidden;
	background: #fff;
}

.gmhu-estimator__head {
	background: var(--gmhu-surface);
	padding: 22px 24px;
	border-bottom: 1px solid var(--gmhu-line-card);
}

.gmhu-estimator__title {
	font-family: var(--gmhu-display);
	font-size: 20px;
	font-weight: 700;
	color: var(--gmhu-navy);
}

.gmhu-estimator__subtitle {
	font-size: 14px;
	color: var(--gmhu-label);
	margin-top: 4px;
}

.gmhu-estimator__body {
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.gmhu-estimator__row {
	display: flex;
	justify-content: space-between;
	font-size: 14px;
	margin-bottom: 10px;
}

.gmhu-estimator__row label {
	color: var(--gmhu-label);
	font-weight: 600;
}

.gmhu-estimator__out {
	font-family: var(--gmhu-display);
	font-weight: 700;
	color: var(--gmhu-navy);
}

.gmhu-slider {
	width: 100%;
	height: 16px;
	margin: 0;
	appearance: none;
	-webkit-appearance: none;
	background: none;
}

.gmhu-slider::-webkit-slider-runnable-track {
	height: 4px;
	border-radius: 2px;
	background: var(--gmhu-line-card);
}

.gmhu-slider::-moz-range-track {
	height: 4px;
	border-radius: 2px;
	background: var(--gmhu-line-card);
}

.gmhu-slider::-moz-range-progress {
	height: 4px;
	border-radius: 2px;
	background: var(--gmhu-blue);
}

.gmhu-slider::-webkit-slider-thumb {
	appearance: none;
	-webkit-appearance: none;
	width: 16px;
	height: 16px;
	margin-top: -6px;
	border-radius: 50%;
	background: #fff;
	border: 2px solid var(--gmhu-blue);
	cursor: pointer;
}

.gmhu-slider::-moz-range-thumb {
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: #fff;
	border: 2px solid var(--gmhu-blue);
	cursor: pointer;
}

.gmhu-estimator__result {
	background: var(--gmhu-navy);
	border-radius: 5px;
	padding: 22px 24px;
	text-align: center;
}

.gmhu-estimator__result-label {
	font-size: 13px;
	color: #a9bdd4;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 6px;
}

.gmhu-estimator__amount {
	font-family: var(--gmhu-display);
	font-size: 38px;
	font-weight: 800;
	color: #fff;
	letter-spacing: -0.02em;
}

.gmhu-estimator__per {
	font-size: 18px;
	font-weight: 600;
	color: #a9bdd4;
}

/* -------------------------------------------------------- stat tiles ---- */

.gmhu-stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1px;
	background: var(--gmhu-navy-line);
	border-radius: 5px;
	overflow: hidden;
}

.gmhu-stats__tile {
	background: var(--gmhu-navy-tile);
	padding: 26px;
}

.gmhu-stats__value {
	font-family: var(--gmhu-display);
	font-size: 34px;
	font-weight: 800;
	color: #fff;
}

.gmhu-stats__label {
	font-size: 14px;
	color: #a9bdd4;
	margin-top: 4px;
}

/* ----------------------------------------------------------- featured ---- */

.gmhu-featured {
	padding-block: 4px;
}

.gmhu-section-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 28px;
	flex-wrap: wrap;
}

.gmhu-section-head__link {
	font-size: 15px;
	font-weight: 600;
	color: var(--gmhu-blue);
	text-decoration: none;
	white-space: nowrap;
}

/* ------------------------------------------- helpers for Elementor use ---- */

/* Applied to a container (or legacy column) via "Advanced → CSS Classes". */
.gmhu-sticky-col {
	position: sticky;
	top: 24px;
	align-self: flex-start;
}

.gmhu-sticky-col > .elementor-widget-wrap,
.gmhu-sticky-col > .elementor-element-populated {
	position: sticky;
	top: 24px;
}

@media (max-width: 1024px) {
	.gmhu-sticky-col,
	.gmhu-sticky-col > .elementor-widget-wrap,
	.gmhu-sticky-col > .elementor-element-populated {
		position: static;
	}
}

.gmhu-lede {
	font-size: 19px;
	line-height: 1.5;
	max-width: 620px;
	text-wrap: pretty;
}

.gmhu-hero-title {
	text-wrap: balance;
}

/* Numbered "How it works" steps. */
.gmhu-step,
.gmhu-step > .elementor-widget-wrap,
.gmhu-step > .elementor-element-populated {
	border-top: 3px solid var(--gmhu-blue);
	padding-top: 20px;
}

/* A container styled as an outlined card. */
.gmhu-card-outline,
.gmhu-card-outline > .elementor-widget-wrap,
.gmhu-card-outline > .elementor-element-populated {
	border: 1px solid var(--gmhu-line-card);
	border-radius: 6px;
	padding: 26px;
}

.gmhu-spec-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
	font-size: 15px;
}

.gmhu-spec-list li {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	color: var(--gmhu-label);
}

.gmhu-spec-list strong {
	color: var(--gmhu-navy);
	font-weight: 600;
}

/* --------------------------------------------------------- lightbox ---- */

.gmhu-lightbox {
	position: fixed;
	inset: 0;
	background: rgba(11, 28, 49, 0.94);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 100000;
	padding: 40px;
}

.gmhu-lightbox img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.gmhu-lightbox__btn {
	position: absolute;
	background: rgba(255, 255, 255, 0.12);
	border: 0;
	color: #fff;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	font-size: 22px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.gmhu-lightbox__btn:hover {
	background: rgba(255, 255, 255, 0.22);
}

.gmhu-lightbox__prev {
	left: 24px;
}

.gmhu-lightbox__next {
	right: 24px;
}

.gmhu-lightbox__close {
	top: 24px;
	right: 24px;
}

.gmhu-lightbox__counter {
	position: absolute;
	bottom: 24px;
	left: 50%;
	transform: translateX(-50%);
	font-family: var(--gmhu-mono);
	font-size: 13px;
	color: #cfdaea;
}

/* ------------------------------------------------------- mobile nav ---- */

/* The toggle exists only at Elementor's mobile breakpoint (≤767px). Everything
   above that shows the inline nav, so the button must stay hidden there even if
   the theme sets its own button display rules. */
.gmhu-header__inner .gmhu-navtoggle {
	display: none;
}

/* ------------------------------------------------- responsive breakpoints ---
   Matched to the Elementor breakpoints this site uses:
   widescreen 2400 · laptop 1366 · tablet extra 1200 · tablet 1024 ·
   mobile extra 880 · mobile 767
   -------------------------------------------------------------------------- */

/* --- widescreen: 2400px and up ------------------------------------------- */

@media (min-width: 2400px) {
	:root {
		--gmhu-gutter: 80px;
	}

	.gmhu-gallery__main {
		height: 560px;
	}
}

/* --- laptop: up to 1366px ------------------------------------------------ */

@media (max-width: 1366px) {
	:root {
		--gmhu-gutter: 40px;
	}

	.gmhu-inventory {
		grid-template-columns: 288px 1fr;
		gap: 32px;
	}

	.gmhu-listing {
		grid-template-columns: 1fr 372px;
		gap: 40px;
	}

	.gmhu-listing__title {
		font-size: 38px;
	}

	.gmhu-listing__price {
		font-size: 36px;
	}

	.gmhu-nav,
	.gmhu-nav__list {
		gap: 26px;
	}
}

/* --- tablet extra: up to 1200px ------------------------------------------ */

@media (max-width: 1200px) {
	.gmhu-inventory {
		grid-template-columns: 264px 1fr;
		gap: 26px;
	}

	.gmhu-listing {
		grid-template-columns: 1fr 340px;
		gap: 32px;
	}

	.gmhu-card--featured {
		grid-template-columns: 320px 1fr;
	}

	.gmhu-card--featured .gmhu-card__media {
		height: 232px;
	}

	.gmhu-card--featured .gmhu-card__body {
		padding: 22px 24px;
	}

	.gmhu-card__title {
		font-size: 22px;
	}

	.gmhu-card__price {
		font-size: 27px;
	}

	.gmhu-specstrip__cell {
		padding: 13px 20px;
	}

	.gmhu-nav,
	.gmhu-nav__list {
		gap: 20px;
	}

	.gmhu-nav__list {
		font-size: 14px;
	}

	.gmhu-nav__cta {
		font-size: 14px;
		padding: 11px 18px;
	}
}

/* --- tablet: up to 1024px ------------------------------------------------ */

@media (max-width: 1024px) {
	:root {
		--gmhu-gutter: 32px;
	}

	/* Filter rail moves above the results and lays its groups out in a row. */
	.gmhu-inventory {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.gmhu-rail {
		position: static;
		flex-direction: row;
		flex-wrap: wrap;
		gap: 16px;
	}

	.gmhu-filters {
		flex: 1 1 100%;
	}

	.gmhu-filters .gmhu-filter {
		margin-bottom: 0;
	}

	.gmhu-filters {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 20px 24px;
		align-items: start;
	}

	.gmhu-filters__head,
	.gmhu-filters__submit {
		grid-column: 1 / -1;
	}

	.gmhu-filters__head {
		margin-bottom: 0;
	}

	.gmhu-promo {
		flex: 1 1 100%;
	}

	/* Listing page drops to one column; the agent card stops sticking. */
	.gmhu-listing {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.gmhu-sticky {
		position: static;
	}

	.gmhu-listing__aside {
		max-width: 560px;
	}

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

	.gmhu-search__submit {
		grid-column: 1 / -1;
	}

	.gmhu-footer__grid {
		grid-template-columns: 1.4fr 1fr 1fr;
	}

	.gmhu-gallery__main {
		height: 400px;
	}

	.gmhu-h1,
	.gmhu-listing__title {
		font-size: 34px;
	}

	.gmhu-h2 {
		font-size: 30px;
	}
}

/* --- mobile extra: up to 880px ------------------------------------------- */

@media (max-width: 880px) {
	/* Photo moves above the copy on every card. */
	.gmhu-card--featured,
	.gmhu-card--row {
		grid-template-columns: 1fr;
	}

	.gmhu-card--featured .gmhu-card__media,
	.gmhu-card--row .gmhu-card__media {
		height: 240px;
	}

	.gmhu-specgrid,
	.gmhu-features,
	.gmhu-results__list--grid,
	.gmhu-similar__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.gmhu-details {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.gmhu-listing__head,
	.gmhu-card__head {
		flex-direction: column;
		gap: 12px;
	}

	.gmhu-listing__pricing,
	.gmhu-card__pricing {
		text-align: left;
	}

	.gmhu-gallery {
		grid-template-columns: 1fr;
	}

	.gmhu-gallery__main {
		height: 320px;
	}

	.gmhu-gallery__side {
		grid-template-rows: none;
		grid-template-columns: 1fr 1fr;
		height: 150px;
	}

	.gmhu-footer__grid {
		grid-template-columns: 1fr 1fr;
	}
}

/* --- mobile: up to 767px -------------------------------------------------- */

@media (max-width: 767px) {
	:root {
		--gmhu-gutter: 20px;
	}

	/* Kebab / hamburger appears only here. */
	.gmhu-header__inner {
		position: relative;
		padding-block: 14px;
	}

	.gmhu-header__inner .gmhu-navtoggle {
		display: block;
		order: 3;
	}

	.gmhu-brand__name {
		font-size: 21px;
	}

	.gmhu-brand__tagline {
		display: none;
	}

	.gmhu-nav {
		display: none;
		position: absolute;
		top: calc(100% + 10px);
		left: var(--gmhu-gutter);
		right: var(--gmhu-gutter);
		z-index: 60;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		background: #fff;
		border: 1px solid var(--gmhu-line);
		border-radius: 6px;
		box-shadow: 0 18px 40px rgba(15, 37, 64, 0.14);
		padding: 8px 18px 18px;
	}

	.gmhu-nav.is-open {
		display: flex;
	}

	.gmhu-nav__list {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		font-size: 16px;
		width: 100%;
	}

	.gmhu-nav__list li {
		border-bottom: 1px solid var(--gmhu-line-soft);
	}

	.gmhu-nav__list a {
		display: block;
		padding: 14px 0;
		border-bottom: 0;
	}

	.gmhu-nav__list a:hover,
	.gmhu-nav__list .current-menu-item > a,
	.gmhu-nav__list .current_page_item > a {
		border-bottom: 0;
	}

	.gmhu-nav__cta {
		display: flex;
		width: 100%;
		margin-top: 16px;
		padding: 14px 20px;
		font-size: 15px;
	}

	.gmhu-topbar__inner {
		flex-direction: column;
		align-items: flex-start;
		gap: 4px;
		font-size: 12px;
		padding-block: 8px;
	}

	.gmhu-topbar__contact {
		gap: 14px;
	}

	.gmhu-h1,
	.gmhu-listing__title {
		font-size: 28px;
	}

	.gmhu-h2 {
		font-size: 25px;
	}

	.gmhu-h3 {
		font-size: 21px;
	}

	.gmhu-listing__price {
		font-size: 31px;
	}

	.gmhu-archive-head {
		padding: 24px 0;
	}

	.gmhu-archive-body {
		padding-block: 24px 40px;
	}

	.gmhu-filters {
		grid-template-columns: 1fr;
	}

	.gmhu-search,
	.gmhu-form__row,
	.gmhu-specgrid,
	.gmhu-features,
	.gmhu-results__list--grid,
	.gmhu-similar__grid,
	.gmhu-footer__grid,
	.gmhu-stats {
		grid-template-columns: 1fr;
	}

	.gmhu-search {
		padding: 18px var(--gmhu-gutter);
	}

	.gmhu-specstrip {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}

	.gmhu-specstrip__cell {
		padding: 12px 16px;
	}

	.gmhu-specstrip__cell:nth-child(2n) {
		border-right: 0;
	}

	.gmhu-specstrip__cell:nth-child(3),
	.gmhu-specstrip__cell:nth-child(4) {
		border-top: 1px solid var(--gmhu-line-soft);
	}

	.gmhu-card__foot {
		flex-direction: column;
		align-items: stretch;
	}

	.gmhu-card__actions {
		width: 100%;
	}

	.gmhu-card__actions .gmhu-btn {
		flex: 1;
	}

	.gmhu-gallery {
		padding: 0;
		gap: 4px;
	}

	.gmhu-gallery__main {
		height: 240px;
		border-radius: 0;
	}

	.gmhu-gallery__side {
		height: 110px;
		gap: 4px;
		padding-inline: 0;
	}

	.gmhu-listing {
		padding-block: 28px 40px;
	}

	.gmhu-agentcard__body,
	.gmhu-estimator__body {
		padding: 18px;
	}

	.gmhu-estimator__amount {
		font-size: 32px;
	}

	.gmhu-similar {
		padding: 36px 0;
	}

	.gmhu-lightbox {
		padding: 16px;
	}

	.gmhu-lightbox__prev {
		left: 10px;
	}

	.gmhu-lightbox__next {
		right: 10px;
	}
}
