/* =========================================================
   MergerLoom — base design system (navy & gold consulting look)
   ========================================================= */

:root {
	--navy: #16324f;
	--navy-deep: #0d2135;
	--gold: #b8862b;
	--gold-light: #d9ad57;
	--cream: #f4f1ea;
	--grid: #d9d2c2;
	--ink: #2d3748;
	--ink-light: #5a6472;
	--white: #ffffff;
	--radius: 6px;
	--shadow: 0 10px 30px rgba(13, 33, 53, 0.08);
	--shadow-lg: 0 20px 50px rgba(13, 33, 53, 0.14);
	--serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
	--sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
	--container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--sans);
	color: var(--ink);
	background: var(--white);
	line-height: 1.6;
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
	font-family: var(--serif);
	color: var(--navy);
	line-height: 1.2;
	margin: 0 0 0.5em;
	font-weight: 700;
}
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1em; }
.container {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 24px;
}
.section { padding: 72px 0; }
.section--tight { padding: 48px 0; }
.section--cream { background: var(--cream); }
.section--navy { background: var(--navy); color: rgba(255,255,255,0.92); }
.section--navy h1, .section--navy h2, .section--navy h3 { color: var(--white); }
.eyebrow {
	font-size: 0.78rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--gold);
	font-weight: 700;
	margin-bottom: 0.6em;
	display: inline-block;
}
.lead { font-size: 1.15rem; color: var(--ink-light); max-width: 640px; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 13px 26px;
	border-radius: var(--radius);
	font-weight: 600;
	font-size: 0.95rem;
	border: 1.5px solid transparent;
	cursor: pointer;
	transition: all 0.18s ease;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn--gold { background: var(--gold); color: var(--white); }
.btn--gold:hover { background: var(--gold-light); }
.btn--navy { background: var(--navy); color: var(--white); }
.btn--navy:hover { background: var(--navy-deep); }
.btn--outline { background: transparent; border-color: rgba(255,255,255,0.5); color: inherit; }
.btn--outline:hover { border-color: var(--gold); color: var(--gold); }
.btn--outline-navy { background: transparent; border-color: var(--navy); color: var(--navy); }
.btn--outline-navy:hover { background: var(--navy); color: var(--white); }
.btn--whatsapp { background: #25945a; color: var(--white); }
.btn--whatsapp:hover { background: #1f7d4c; }
.btn--sm { padding: 9px 18px; font-size: 0.85rem; }
.btn--block { width: 100%; justify-content: center; }

/* =========================================================
   Header
   ========================================================= */
.site-header {
	position: sticky;
	top: 0;
	z-index: 200;
	background: var(--white);
	border-bottom: 1px solid var(--grid);
}
.site-header__bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 24px;
	max-width: var(--container);
	margin: 0 auto;
	gap: 20px;
}
.site-logo {
	display: inline-flex;
	align-items: center;
	color: var(--navy);
	white-space: nowrap;
}
.ml-logo { display: inline-flex; align-items: center; gap: 9px; }
.ml-logo-mark { width: 30px; height: 27px; flex-shrink: 0; color: currentColor; }
.ml-logo__text {
	font-family: var(--serif);
	font-weight: 700;
	font-size: 1.5rem;
	line-height: 1;
	color: currentColor;
}
.ml-logo__accent { color: var(--gold); }
.primary-nav {
	display: flex;
	gap: 28px;
	flex: 1;
	justify-content: center;
}
.primary-nav a {
	font-weight: 600;
	font-size: 0.92rem;
	color: var(--navy);
	padding: 6px 0;
	border-bottom: 2px solid transparent;
}
.primary-nav a:hover, .primary-nav a.current { border-bottom-color: var(--gold); color: var(--gold); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.icon-btn {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--cream);
	color: var(--navy);
	flex-shrink: 0;
}
.icon-btn svg { width: 19px; height: 19px; }
.icon-btn.whatsapp { background: #e6f5ec; color: #1f7d4c; }
.menu-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 6px;
}
.menu-toggle span { width: 24px; height: 2px; background: var(--navy); display: block; }

/* =========================================================
   Hero / illustrations (custom SVG duotone system — see
   template-parts/illustration-*.php)
   ========================================================= */
.hero {
	background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
	color: var(--white);
	position: relative;
	overflow: hidden;
}
.hero__grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 40px;
	align-items: center;
	padding: 88px 24px 72px;
	max-width: var(--container);
	margin: 0 auto;
	position: relative;
	z-index: 2;
}
.hero h1, .hero h2, .hero h3, .hero h4 { color: var(--white); }
.hero p.lead { color: rgba(255,255,255,0.78); }
.hero__stats {
	display: flex;
	gap: 32px;
	margin-top: 36px;
	flex-wrap: wrap;
}
.hero__stat b { display: block; font-family: var(--serif); font-size: 1.8rem; color: var(--gold-light); }
.hero__stat span { font-size: 0.82rem; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 0.06em; }
.hero__actions { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.hero__art { position: relative; }
.hero__art svg { width: 100%; height: auto; }
.illustration-tint-navy { color: var(--navy); }
.illustration-tint-gold { color: var(--gold); }

/* Value props / services grid */
.card-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 28px;
	margin-top: 40px;
}
.value-card {
	background: var(--white);
	border: 1px solid var(--grid);
	border-radius: var(--radius);
	padding: 30px 26px;
	box-shadow: var(--shadow);
}
.value-card .icon-wrap {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: var(--cream);
	color: var(--gold);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
}
.value-card .icon-wrap svg { width: 26px; height: 26px; }
.value-card h3 { margin-bottom: 0.4em; }
.value-card p { color: var(--ink-light); font-size: 0.95rem; margin-bottom: 0; }

/* Section header */
.section-head { max-width: 680px; margin-bottom: 20px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }

/* =========================================================
   Listing cards
   ========================================================= */
.listing-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 28px;
	margin-top: 8px;
}
.listing-card {
	background: var(--white);
	border: 1px solid var(--grid);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
	display: flex;
	flex-direction: column;
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.listing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.listing-card__media {
	height: 190px;
	background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255,255,255,0.5);
}
.listing-card__media img { width: 100%; height: 100%; object-fit: cover; }
.listing-card__media svg { width: 64px; height: 64px; opacity: 0.35; }
.listing-card__badge {
	position: absolute;
	top: 12px;
	left: 12px;
	background: var(--gold);
	color: var(--white);
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	padding: 5px 10px;
	border-radius: 3px;
}
.listing-card__body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.listing-card__trade { font-size: 0.78rem; color: var(--gold); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 6px; }
.listing-card__title { font-size: 1.12rem; margin-bottom: 8px; }
.listing-card__title a { color: var(--navy); }
.listing-card__excerpt { color: var(--ink-light); font-size: 0.9rem; flex: 1; margin-bottom: 14px; }
.listing-card__meta { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--grid); padding-top: 14px; }
.listing-card__price { font-family: var(--serif); font-weight: 700; color: var(--navy); font-size: 1.1rem; }
.listing-card__date { font-size: 0.78rem; color: var(--ink-light); }

/* Filters */
.filters-bar {
	background: var(--cream);
	border: 1px solid var(--grid);
	border-radius: var(--radius);
	padding: 22px;
	margin-bottom: 36px;
}
.filters-bar form {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 14px;
	align-items: end;
}
.filters-bar label {
	display: block;
	font-size: 0.78rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--navy);
	margin-bottom: 6px;
}
.filters-bar select,
.filters-bar input[type="number"],
.filters-bar input[type="text"] {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid var(--grid);
	border-radius: var(--radius);
	background: var(--white);
	font-family: var(--sans);
	font-size: 0.9rem;
	color: var(--ink);
}
.filters-bar .filters-submit { align-self: end; }

/* Price range slider (dual-handle) */
.price-slider-field { grid-column: span 2; min-width: 260px; }
.price-slider {
	position: relative;
	height: 34px;
	margin-top: 26px;
}
.price-slider__track {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	height: 6px;
	transform: translateY(-50%);
	background: var(--white);
	border: 1px solid var(--grid);
	border-radius: 999px;
	overflow: hidden;
}
.price-slider__range {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--gold);
	border-radius: 999px;
}
.price-slider__input {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	transform: translateY(-50%);
	margin: 0;
	background: transparent;
	-webkit-appearance: none;
	appearance: none;
	pointer-events: none;
	height: 20px;
}
.price-slider__input::-webkit-slider-runnable-track { -webkit-appearance: none; background: transparent; height: 20px; }
.price-slider__input::-moz-range-track { background: transparent; height: 20px; border: none; }
.price-slider__input::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	pointer-events: all;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: var(--white);
	border: 3px solid var(--gold);
	box-shadow: 0 2px 6px rgba(15, 30, 60, 0.25);
	cursor: pointer;
	margin-top: 0;
}
.price-slider__input::-moz-range-thumb {
	pointer-events: all;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: var(--white);
	border: 3px solid var(--gold);
	box-shadow: 0 2px 6px rgba(15, 30, 60, 0.25);
	cursor: pointer;
}
.price-slider__bubble {
	position: absolute;
	top: -22px;
	transform: translateX(-50%);
	background: var(--navy);
	color: var(--white);
	font-size: 0.72rem;
	font-weight: 700;
	padding: 3px 8px;
	border-radius: var(--radius);
	white-space: nowrap;
	pointer-events: none;
}
.price-slider__bubble::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	border: 4px solid transparent;
	border-top-color: var(--navy);
}
.price-slider__scale {
	display: flex;
	justify-content: space-between;
	font-size: 0.75rem;
	color: var(--ink-light);
	margin-top: 6px;
}
.results-count { color: var(--ink-light); font-size: 0.92rem; margin-bottom: 20px; }

/* Pagination */
.ml-pagination { display: flex; gap: 8px; justify-content: center; margin-top: 48px; flex-wrap: wrap; }
.ml-pagination a, .ml-pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	border-radius: var(--radius);
	border: 1px solid var(--grid);
	font-size: 0.88rem;
	color: var(--navy);
	padding: 0 10px;
}
.ml-pagination .current { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* =========================================================
   Single listing
   ========================================================= */
.listing-hero { background: var(--navy); color: var(--white); padding: 56px 0 40px; }
.listing-hero h1 { color: var(--white); }
.listing-hero .eyebrow { color: var(--gold-light); }
.listing-hero__price { font-family: var(--serif); font-size: 2rem; color: var(--gold-light); margin-top: 8px; }
.listing-gallery {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	grid-template-rows: repeat(2, 160px);
	gap: 10px;
	margin: -30px 0 48px;
	position: relative;
	z-index: 3;
}
.listing-gallery a:first-child { grid-row: span 2; }
.listing-gallery img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); }
.listing-gallery .placeholder {
	width: 100%; height: 100%;
	background: var(--cream);
	border-radius: var(--radius);
	display: flex; align-items: center; justify-content: center;
	color: var(--grid);
}
.listing-detail-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 46px; align-items: start; }
.detail-block { margin-bottom: 36px; }
.detail-block h2 { font-size: 1.3rem; border-bottom: 2px solid var(--grid); padding-bottom: 10px; margin-bottom: 18px; }
.fact-table { width: 100%; border-collapse: collapse; }
.fact-table tr { border-bottom: 1px solid var(--grid); }
.fact-table td { padding: 10px 4px; font-size: 0.94rem; }
.fact-table td:first-child { color: var(--ink-light); width: 42%; }
.fact-table td:last-child { font-weight: 600; color: var(--navy); }
.sidebar-card {
	background: var(--cream);
	border: 1px solid var(--grid);
	border-radius: var(--radius);
	padding: 26px;
	position: sticky;
	top: 96px;
}
.sidebar-card h3 { font-size: 1.05rem; }
.sidebar-card .btn { margin-top: 10px; }
.contact-modal-trigger { width: 100%; }

/* Contact modal */
.ml-modal-overlay {
	position: fixed; inset: 0; background: rgba(13,33,53,0.55);
	display: none; align-items: center; justify-content: center; z-index: 500; padding: 20px;
}
.ml-modal-overlay.open { display: flex; }
.ml-modal {
	background: var(--white); border-radius: var(--radius); padding: 32px;
	max-width: 380px; width: 100%; text-align: center; position: relative;
	box-shadow: var(--shadow-lg);
}
.ml-modal__close { position: absolute; top: 14px; right: 14px; background: none; border: none; font-size: 1.3rem; cursor: pointer; color: var(--ink-light); }
.ml-modal .btn { width: 100%; margin-top: 12px; }

/* =========================================================
   Calculator
   ========================================================= */
.calc-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: start; }
.calc-form-card, .calc-result-card {
	background: var(--white); border: 1px solid var(--grid); border-radius: var(--radius);
	padding: 30px; box-shadow: var(--shadow);
}
.calc-field { margin-bottom: 18px; }
.calc-field label { display: block; font-weight: 600; font-size: 0.88rem; margin-bottom: 6px; color: var(--navy); }
.calc-field select, .calc-field input {
	width: 100%; padding: 11px 13px; border: 1px solid var(--grid); border-radius: var(--radius);
	font-family: var(--sans); font-size: 0.95rem;
}
.calc-field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.calc-result-table { width: 100%; border-collapse: collapse; margin-top: 14px; }
.calc-result-table th, .calc-result-table td { padding: 10px 8px; text-align: right; border-bottom: 1px solid var(--grid); font-size: 0.88rem; }
.calc-result-table th:first-child, .calc-result-table td:first-child { text-align: left; }
.calc-result-table thead th { color: var(--navy); font-family: var(--serif); font-size: 0.9rem; }
.calc-gate {
	background: var(--cream); border: 1px solid var(--grid); border-radius: var(--radius);
	padding: 24px; margin-top: 20px;
}
.calc-gate.hidden, .calc-result-card.hidden, .hidden { display: none !important; }
.calc-disclaimer { font-size: 0.78rem; color: var(--ink-light); margin-top: 18px; }

/* Market select page */
.market-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 40px; }
.market-card {
	background: var(--navy); color: var(--white); border-radius: var(--radius);
	padding: 40px 34px; text-align: center; box-shadow: var(--shadow);
}
.market-card h3 { color: var(--white); }
.market-card:nth-child(2) { background: var(--cream); color: var(--ink); }
.market-grid > .market-card:only-child { grid-column: 1 / -1; max-width: 480px; margin: 0 auto; }
.market-card:nth-child(2) h3 { color: var(--navy); }
.market-card .icon-wrap {
	width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 18px;
	background: rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; color: var(--gold-light);
}
.market-card:nth-child(2) .icon-wrap { background: var(--white); color: var(--gold); }
.market-card .icon-wrap svg { width: 30px; height: 30px; }

/* Forms (contact page) */
.form-grid { display: grid; gap: 16px; max-width: 520px; }
.form-grid label { font-weight: 600; font-size: 0.88rem; color: var(--navy); }
.form-grid input, .form-grid textarea, .form-grid select {
	width: 100%; padding: 12px 14px; border: 1px solid var(--grid); border-radius: var(--radius); font-family: var(--sans); font-size: 0.95rem;
}

/* Footer */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,0.75); padding: 56px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 40px; }
.footer-col h4 { color: var(--white); font-family: var(--sans); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 14px; }
.footer-col p, .footer-col a { font-size: 0.88rem; color: rgba(255,255,255,0.68); display: block; margin-bottom: 8px; }
.footer-col a:hover { color: var(--gold-light); }
.footer-logo { display: inline-flex; align-items: center; color: var(--white); margin-bottom: 10px; }
.footer-logo .ml-logo-mark { width: 27px; height: 24px; }
.footer-logo .ml-logo__text { font-size: 1.4rem; }
.footer-logo .ml-logo__accent { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: var(--gold-light); }

/* Floating persistent contact widget */
.ml-float-contact { position: fixed; right: 22px; bottom: 22px; z-index: 300; display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }
.ml-float-btn {
	width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
	box-shadow: var(--shadow-lg); color: var(--white); cursor: pointer;
}
.ml-float-btn.whatsapp { background: #25945a; }
.ml-float-btn.email { background: var(--navy); }
.ml-float-btn svg { width: 26px; height: 26px; }

/* =========================================================
   Homepage metrics / KPI dashboard banner
   ========================================================= */
.metrics-banner { position: relative; z-index: 6; margin-top: -58px; padding-bottom: 8px; }
.metrics-banner__panel {
	background: var(--white);
	border: 1px solid var(--grid);
	border-radius: 10px;
	box-shadow: var(--shadow-lg);
	padding: 30px 36px 24px;
}
.metrics-banner__head {
	display: flex;
	align-items: center;
	gap: 9px;
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.09em;
	color: var(--ink-light);
	margin-bottom: 20px;
}
.metrics-banner__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #2ecc71;
	box-shadow: 0 0 0 4px rgba(46, 204, 113, 0.16);
	animation: mlPulse 2.2s ease-in-out infinite;
	flex-shrink: 0;
}
@keyframes mlPulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.35; }
}
.metrics-banner__grid {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
}
.metric-tile {
	flex: 1;
	text-align: center;
	padding: 4px 16px;
	min-width: 0;
}
.metric-tile__icon {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	margin: 0 auto 12px;
	background: var(--cream);
	color: var(--gold);
	display: flex;
	align-items: center;
	justify-content: center;
}
.metric-tile__icon svg { width: 21px; height: 21px; }
.metric-tile__value {
	font-family: var(--serif);
	font-size: clamp(1.5rem, 2.4vw, 2.1rem);
	font-weight: 700;
	color: var(--navy);
	line-height: 1;
	white-space: nowrap;
}
.metric-tile__label {
	font-size: 0.76rem;
	color: var(--ink-light);
	margin-top: 8px;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	line-height: 1.3;
}
.metric-tile__divider {
	width: 1px;
	background: var(--grid);
	margin: 4px 0;
	flex-shrink: 0;
}

/* Legal / prose pages */
.prose { max-width: 760px; }
.prose h2 { margin-top: 1.4em; }
.prose ul, .prose ol { margin: 0 0 1em 1.3em; }
.prose li { margin-bottom: 0.4em; }

/* Utility */
.mt-0 { margin-top: 0; }
.text-muted { color: var(--ink-light); }
.badge { display: inline-block; padding: 4px 10px; border-radius: 3px; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }
.badge--broker { background: rgba(184,134,43,0.14); color: var(--gold); }
.badge--owner { background: rgba(22,50,79,0.1); color: var(--navy); }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 900px) {
	.hero__grid { grid-template-columns: 1fr; padding-top: 56px; }
	.listing-detail-grid, .calc-wrap { grid-template-columns: 1fr; }
	.footer-grid { grid-template-columns: 1fr 1fr; }
	.market-grid { grid-template-columns: 1fr; }
	.sidebar-card { position: static; }
	.listing-gallery { grid-template-rows: 140px 140px; }
	.metrics-banner { margin-top: -44px; }
	.metrics-banner__panel { padding: 24px 22px 18px; }
}
@media (max-width: 720px) {
	.primary-nav { display: none; }
	.menu-toggle { display: flex; }
	.site-header.nav-open .primary-nav {
		display: flex; position: absolute; top: 100%; left: 0; right: 0; background: var(--white);
		flex-direction: column; padding: 16px 24px; border-bottom: 1px solid var(--grid); gap: 14px;
	}
	.footer-grid { grid-template-columns: 1fr; }
	.footer-bottom { flex-direction: column; align-items: flex-start; }
	.listing-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 120px 120px; }
	.listing-gallery a:first-child { grid-row: span 1; grid-column: span 2; height: 200px; }
	.calc-field--row { grid-template-columns: 1fr; }
	.metrics-banner { margin-top: -34px; }
	.metrics-banner__grid { flex-wrap: wrap; row-gap: 20px; }
	.metric-tile { flex: 0 0 50%; padding: 6px 8px; }
	.metric-tile__divider { display: none; }
}
