/**
 * MON Harmony Plaza — layout and components (no Tailwind runtime).
 */

:root {
	--mhp-primary: #1e3a8a;
	--mhp-primary-dark: #1e40af;
	--mhp-secondary: #d97706;
	--mhp-accent: #38bdf8;
	--mhp-light: #f8fafc;
	--mhp-slate-900: #0f172a;
	--mhp-gray-600: #4b5563;
	--mhp-gray-700: #374151;
	--mhp-gray-800: #1f2937;
	--mhp-gray-900: #111827;
	--mhp-max: 80rem;
	--mhp-font-sans: "Inter", system-ui, -apple-system, sans-serif;
	--mhp-font-serif: "Playfair Display", Georgia, serif;
}

/* -------------------------------------------------------------------------
   Base
   ------------------------------------------------------------------------- */
.mhp-scroll-smooth {
	scroll-behavior: smooth;
	/* Offset in-page anchors below the fixed nav (~5rem min-height). */
	scroll-padding-top: 5.5rem;
}

/* Redundant offset for in-page targets (pairs with scroll-padding on html). */
.mhp-hero[id],
.mhp-section[id],
.mhp-contact[id] {
	scroll-margin-top: 5.5rem;
}

/* Skip link: first focusable element; visible on keyboard focus only. */
.mhp-skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 100000;
	padding: 0.75rem 1.25rem;
	background: var(--mhp-primary);
	color: #fff;
	font-weight: 600;
	text-decoration: none;
	border-radius: 0 0 0.25rem 0;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.mhp-skip-link:focus {
	left: 0;
	outline: 2px solid var(--mhp-secondary);
	outline-offset: 2px;
}

.mhp-body {
	margin: 0;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	background-color: var(--mhp-light);
	color: var(--mhp-gray-800);
	font-family: var(--mhp-font-sans);
	font-size: 1rem;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

.mhp-body h1,
.mhp-body h2,
.mhp-body h3,
.mhp-body h4,
.mhp-body h5,
.mhp-font-serif {
	font-family: var(--mhp-font-serif);
}

.mhp-main {
	flex: 1 0 auto;
	width: 100%;
}

.mhp-container {
	width: 100%;
	max-width: var(--mhp-max);
	margin-left: auto;
	margin-right: auto;
	padding-left: 1rem;
	padding-right: 1rem;
}

@media (min-width: 640px) {
	.mhp-container {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
}

@media (min-width: 1024px) {
	.mhp-container {
		padding-left: 2rem;
		padding-right: 2rem;
	}
}

.mhp-relative {
	position: relative;
}

.mhp-section-pad {
	padding-top: 6rem;
	padding-bottom: 4rem;
}

/* -------------------------------------------------------------------------
   Navigation
   ------------------------------------------------------------------------- */
.mhp-nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 50;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
	transition: box-shadow 0.3s ease;
}

.mhp-nav.is-scrolled {
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.06);
}

.mhp-nav-inner {
	padding-top: 0;
	padding-bottom: 0;
}

.mhp-nav-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	min-height: 5rem;
}

.mhp-logo-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	text-decoration: none;
	color: inherit;
}

.mhp-custom-logo .custom-logo-link {
	display: inline-block;
}

.mhp-custom-logo img {
	display: block;
	max-height: 3rem;
	width: auto;
	height: auto;
}

.mhp-logo-mark {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 9999px;
	background: var(--mhp-primary);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--mhp-font-serif);
	font-size: 1.25rem;
	font-weight: 700;
	flex-shrink: 0;
}

.mhp-logo-text {
	font-family: var(--mhp-font-serif);
	font-weight: 700;
	font-size: 1.5rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--mhp-primary);
	line-height: 1.1;
}

.mhp-logo-text-main {
	margin-right: 0.25rem;
}

.mhp-logo-text-accent {
	font-weight: 300;
	color: var(--mhp-secondary);
}

.mhp-nav-desktop {
	display: none;
	align-items: center;
	gap: 2rem;
}

@media (min-width: 768px) {
	.mhp-nav-desktop {
		display: flex;
	}
}

.mhp-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 2rem;
}

.mhp-menu a {
	color: var(--mhp-gray-600);
	font-weight: 500;
	text-decoration: none;
	transition: color 0.2s ease;
}

.mhp-menu a:hover,
.mhp-menu a:focus {
	color: var(--mhp-primary);
}

.mhp-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	cursor: pointer;
	border: none;
	font-family: inherit;
}

.mhp-btn-nav-cta {
	background: var(--mhp-primary);
	color: #fff;
	padding: 0.5rem 1.5rem;
	border-radius: 9999px;
	font-weight: 500;
	box-shadow: 0 4px 6px -1px rgba(30, 58, 138, 0.25);
	transition: background 0.2s ease, color 0.2s ease;
}

.mhp-btn-nav-cta:hover,
.mhp-btn-nav-cta:focus {
	background: var(--mhp-primary-dark);
	color: #fff;
}

.mhp-nav-mobile-toggle-wrap {
	display: flex;
	align-items: center;
}

@media (min-width: 768px) {
	.mhp-nav-mobile-toggle-wrap {
		display: none;
	}
}

.mhp-mobile-menu-btn {
	background: none;
	border: none;
	padding: 0.5rem;
	color: var(--mhp-gray-600);
	cursor: pointer;
}

.mhp-mobile-menu-btn:hover,
.mhp-mobile-menu-btn:focus {
	color: var(--mhp-primary);
}

.mhp-mobile-menu {
	display: none;
	background: #fff;
	border-top: 1px solid #f3f4f6;
	position: absolute;
	left: 0;
	right: 0;
	width: 100%;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
}

.mhp-mobile-menu.is-open {
	display: block;
}

.mhp-mobile-menu-inner {
	padding: 0.5rem 0.75rem 1rem;
	display: flex;
	flex-direction: column;
	text-align: center;
	gap: 0.25rem;
}

.mhp-mobile-menu-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.mhp-mobile-menu-list a {
	display: block;
	padding: 0.75rem;
	color: var(--mhp-gray-600);
	text-decoration: none;
	border-radius: 0.375rem;
}

.mhp-mobile-menu-list a:hover,
.mhp-mobile-menu-list a:focus {
	color: var(--mhp-primary);
	background: #f9fafb;
}

.mhp-mobile-menu-cta {
	display: block;
	padding: 0.75rem;
	color: var(--mhp-primary);
	font-weight: 600;
	text-decoration: none;
	border-radius: 0.375rem;
}

.mhp-mobile-menu-cta:hover,
.mhp-mobile-menu-cta:focus {
	background: #f9fafb;
}

/* -------------------------------------------------------------------------
   Hero
   ------------------------------------------------------------------------- */
.mhp-hero {
	position: relative;
	min-height: 100vh;
	min-height: 100dvh;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--mhp-slate-900);
	background-image: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.7)), var(--mhp-hero-bg);
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
}

@media (max-width: 768px) {
	.mhp-hero {
		background-attachment: scroll;
	}
}

.mhp-hero-overlay-bottom {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
	pointer-events: none;
}

.mhp-hero-inner {
	position: relative;
	z-index: 10;
	text-align: center;
	padding: 0 1rem;
	max-width: 56rem;
	margin: 0 auto;
}

.mhp-fade-in {
	animation: mhpFadeIn 1s ease-in-out forwards;
}

@keyframes mhpFadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.mhp-hero-eyebrow {
	color: var(--mhp-secondary);
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	margin: 0 0 1rem;
	font-size: 0.875rem;
}

.mhp-hero-title {
	margin: 0 0 1.5rem;
	font-size: clamp(2.5rem, 6vw, 4.5rem);
	font-weight: 700;
	color: #fff;
	line-height: 1.1;
}

.mhp-hero-desc {
	margin: 0 0 2.5rem;
	font-size: clamp(1rem, 2.5vw, 1.25rem);
	color: #e5e7eb;
	font-weight: 300;
	max-width: 42rem;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.6;
}

.mhp-hero-actions {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	justify-content: center;
	align-items: center;
}

@media (min-width: 640px) {
	.mhp-hero-actions {
		flex-direction: row;
	}
}

.mhp-btn-hero-primary {
	background: var(--mhp-primary);
	color: #fff;
	padding: 1rem 2rem;
	border-radius: 9999px;
	font-weight: 500;
	font-size: 1.125rem;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
	transition: background 0.2s ease;
}

.mhp-btn-hero-primary:hover,
.mhp-btn-hero-primary:focus {
	background: var(--mhp-primary-dark);
	color: #fff;
}

.mhp-btn-hero-secondary {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(8px);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.3);
	padding: 1rem 2rem;
	border-radius: 9999px;
	font-weight: 500;
	font-size: 1.125rem;
	transition: background 0.2s ease, border-color 0.2s ease;
}

.mhp-btn-hero-secondary:hover,
.mhp-btn-hero-secondary:focus {
	background: rgba(255, 255, 255, 0.2);
	color: #fff;
}

.mhp-hero-scroll {
	position: absolute;
	bottom: 2.5rem;
	left: 50%;
	transform: translateX(-50%);
	color: rgba(255, 255, 255, 0.5);
	animation: mhpBounce 2s infinite;
}

@keyframes mhpBounce {
	0%,
	100% {
		transform: translateX(-50%) translateY(0);
	}
	50% {
		transform: translateX(-50%) translateY(6px);
	}
}

/* -------------------------------------------------------------------------
   Sections — shared
   ------------------------------------------------------------------------- */
.mhp-section {
	padding: 4rem 0;
}

@media (min-width: 768px) {
	.mhp-section {
		padding: 6rem 0;
	}
}

.mhp-section-white {
	background: #fff;
}

.mhp-section-tint {
	background: rgba(239, 246, 255, 0.5);
	position: relative;
	overflow: hidden;
}

.mhp-section-dark {
	background: var(--mhp-gray-900);
	color: #fff;
}

.mhp-section-head {
	text-align: center;
	max-width: 48rem;
	margin: 0 auto 4rem;
}

.mhp-section-head-dark .mhp-section-title {
	color: #fff;
}

.mhp-eyebrow {
	color: var(--mhp-secondary);
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-size: 0.875rem;
	display: block;
	margin-bottom: 0.5rem;
}

.mhp-section-title {
	margin: 0.5rem 0 1rem;
	font-size: clamp(2rem, 4vw, 2.25rem);
	font-weight: 700;
	color: var(--mhp-gray-900);
}

.mhp-section-title-left {
	text-align: left;
}

.mhp-section-sub {
	margin: 0;
	color: var(--mhp-gray-600);
	line-height: 1.6;
}

.mhp-section-head-dark .mhp-muted {
	color: #9ca3af;
}

.mhp-prose {
	color: var(--mhp-gray-600);
	margin-bottom: 1.5rem;
	line-height: 1.7;
}

.mhp-prose:last-of-type {
	margin-bottom: 2rem;
}

.mhp-prose strong {
	color: var(--mhp-gray-800);
	font-weight: 600;
}

/* -------------------------------------------------------------------------
   About
   ------------------------------------------------------------------------- */
.mhp-about-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 4rem;
	align-items: center;
}

@media (min-width: 768px) {
	.mhp-about-grid {
		grid-template-columns: 1fr 1fr;
	}
}

.mhp-about-media {
	position: relative;
}

.mhp-about-deco {
	position: absolute;
	z-index: 0;
}

.mhp-about-deco-tl {
	top: -1rem;
	left: -1rem;
	width: 6rem;
	height: 6rem;
	background: rgba(217, 119, 6, 0.2);
	border-top-left-radius: 3rem;
}

.mhp-about-deco-br {
	bottom: -1rem;
	right: -1rem;
	width: 8rem;
	height: 8rem;
	border: 2px solid rgba(30, 58, 138, 0.2);
	border-bottom-right-radius: 3rem;
}

.mhp-about-img {
	position: relative;
	z-index: 10;
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	border-top-left-radius: 3rem;
	border-bottom-right-radius: 3rem;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	display: block;
}

.mhp-about-img.mhp-media-placeholder {
	object-fit: unset;
	background: linear-gradient(145deg, #e5e7eb 0%, #d1d5db 45%, #cbd5e1 100%);
	box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.mhp-about-floating-card {
	display: none;
	position: absolute;
	top: 50%;
	right: -3rem;
	transform: translateY(-50%);
	background: #fff;
	padding: 1.5rem;
	border-radius: 1rem;
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
	z-index: 20;
}

@media (min-width: 1024px) {
	.mhp-about-floating-card {
		display: block;
	}
}

.mhp-about-floating-inner {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.mhp-about-floating-icon {
	width: 3rem;
	height: 3rem;
	border-radius: 9999px;
	background: rgba(30, 58, 138, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--mhp-primary);
	font-size: 1.25rem;
}

.mhp-about-floating-label {
	margin: 0;
	font-size: 0.875rem;
	color: #6b7280;
	font-weight: 500;
}

.mhp-about-floating-value {
	margin: 0;
	font-weight: 700;
	color: var(--mhp-gray-800);
}

.mhp-about-stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
}

.mhp-stat {
	border-left: 4px solid var(--mhp-secondary);
	padding-left: 1rem;
}

.mhp-stat-value {
	margin: 0;
	font-size: 1.875rem;
	font-weight: 700;
	color: var(--mhp-primary);
	font-family: var(--mhp-font-serif);
}

.mhp-stat-label {
	margin: 0.25rem 0 0;
	font-size: 0.75rem;
	color: #6b7280;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	font-weight: 500;
}

/* -------------------------------------------------------------------------
   Amenities
   ------------------------------------------------------------------------- */
.mhp-amenities-blob {
	position: absolute;
	width: 24rem;
	height: 24rem;
	border-radius: 9999px;
	filter: blur(64px);
	pointer-events: none;
}

.mhp-amenities-blob-tr {
	right: -16rem;
	top: -16rem;
	background: rgba(56, 189, 248, 0.1);
}

.mhp-amenities-blob-bl {
	left: -16rem;
	bottom: -16rem;
	background: rgba(217, 119, 6, 0.1);
}

.mhp-amenities-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}

@media (min-width: 768px) {
	.mhp-amenities-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.mhp-amenities-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.mhp-amenity-card {
	background: #fff;
	padding: 2rem;
	border-radius: 1rem;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
	border: 1px solid #f3f4f6;
	transition: box-shadow 0.3s ease;
}

.mhp-amenity-card:hover {
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08);
}

.mhp-amenity-icon {
	width: 3.5rem;
	height: 3.5rem;
	border-radius: 0.75rem;
	background: rgba(30, 58, 138, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--mhp-primary);
	font-size: 1.5rem;
	margin-bottom: 1.5rem;
	transition: background 0.3s ease, color 0.3s ease;
}

.mhp-amenity-card:hover .mhp-amenity-icon {
	background: var(--mhp-primary);
	color: #fff;
}

.mhp-amenity-title {
	margin: 0 0 0.75rem;
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--mhp-gray-900);
}

.mhp-amenity-desc {
	margin: 0;
	color: var(--mhp-gray-600);
	line-height: 1.6;
}

/* -------------------------------------------------------------------------
   Apartments
   ------------------------------------------------------------------------- */
.mhp-apartments-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
}

@media (min-width: 1024px) {
	.mhp-apartments-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

.mhp-apt-card {
	background: #fff;
	border-radius: 1.5rem;
	overflow: hidden;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
	border: 1px solid #f3f4f6;
	display: flex;
	flex-direction: column;
	height: 100%;
	transition: transform 0.3s ease;
}

.mhp-apt-card:hover {
	transform: translateY(-0.5rem);
}

.mhp-apt-media {
	height: 16rem;
	overflow: hidden;
	position: relative;
}

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

.mhp-apt-img.mhp-media-placeholder {
	min-height: 16rem;
	object-fit: unset;
	background: linear-gradient(145deg, #e5e7eb 0%, #d1d5db 45%, #cbd5e1 100%);
	box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.mhp-apt-badge {
	position: absolute;
	top: 1rem;
	left: 1rem;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(4px);
	padding: 0.5rem 1rem;
	border-radius: 9999px;
	font-weight: 700;
	color: var(--mhp-primary);
	font-size: 0.875rem;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

.mhp-apt-body {
	padding: 2rem;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.mhp-apt-headline {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 1rem;
	margin-bottom: 1.5rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid #f3f4f6;
}

.mhp-apt-title {
	margin: 0;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--mhp-gray-900);
}

.mhp-apt-area {
	text-align: right;
	flex-shrink: 0;
}

.mhp-apt-area-label {
	margin: 0;
	font-size: 0.75rem;
	text-transform: uppercase;
	color: #6b7280;
}

.mhp-apt-area-value {
	margin: 0;
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--mhp-primary);
}

.mhp-apt-desc {
	margin: 0 0 1.5rem;
	color: var(--mhp-gray-600);
	line-height: 1.6;
}

.mhp-apt-features {
	list-style: none;
	margin: 0 0 2rem;
	padding: 0;
}

.mhp-apt-features li {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	color: var(--mhp-gray-700);
	margin-bottom: 0.75rem;
}

.mhp-apt-check {
	color: var(--mhp-accent);
	width: 1.5rem;
	flex-shrink: 0;
	margin-top: 0.15rem;
}

.mhp-apt-btn {
	width: 100%;
	text-align: center;
	background: #eff6ff;
	color: var(--mhp-primary);
	font-weight: 600;
	padding: 0.75rem 1rem;
	border-radius: 0.75rem;
	text-decoration: none;
	margin-top: auto;
	transition: background 0.2s ease, color 0.2s ease;
}

.mhp-apt-btn:hover,
.mhp-apt-btn:focus {
	background: var(--mhp-primary);
	color: #fff;
}

/* -------------------------------------------------------------------------
   Gallery
   ------------------------------------------------------------------------- */
.mhp-gallery-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}

@media (min-width: 768px) {
	.mhp-gallery-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.mhp-gallery-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.mhp-gallery-item {
	position: relative;
	overflow: hidden;
	border-radius: 0.75rem;
	height: 16rem;
	cursor: pointer;
}

.mhp-gallery-item-wide {
	grid-column: span 1;
}

@media (min-width: 1024px) {
	.mhp-gallery-item-wide {
		grid-column: span 2;
	}
}

.mhp-gallery-empty {
	grid-column: 1 / -1;
	margin: 0;
	padding: 2rem 1rem;
	text-align: center;
	color: #9ca3af;
	font-size: 0.9375rem;
}

.mhp-gallery-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.mhp-gallery-item:hover .mhp-gallery-img {
	transform: scale(1.1);
}

.mhp-gallery-caption {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.4);
	opacity: 0;
	transition: opacity 0.3s ease;
	display: flex;
	align-items: flex-end;
	padding: 1.5rem;
}

.mhp-gallery-item:hover .mhp-gallery-caption {
	opacity: 1;
}

.mhp-gallery-cap-title {
	margin: 0;
	font-weight: 700;
	font-size: 1.125rem;
	color: #fff;
}

.mhp-gallery-cap-sub {
	margin: 0.25rem 0 0;
	font-size: 0.875rem;
	color: #d1d5db;
}

.mhp-gallery-cta-wrap {
	margin-top: 2.5rem;
	text-align: center;
}

.mhp-btn-gallery {
	display: inline-flex;
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: #fff;
	padding: 0.75rem 2rem;
	border-radius: 9999px;
	font-weight: 500;
	text-decoration: none;
	transition: background 0.3s ease, color 0.3s ease;
}

.mhp-btn-gallery:hover,
.mhp-btn-gallery:focus {
	background: #fff;
	color: var(--mhp-gray-900);
}

.mhp-btn-gallery-static {
	cursor: default;
	pointer-events: none;
}

/* -------------------------------------------------------------------------
   Contact
   ------------------------------------------------------------------------- */
.mhp-contact {
	background: var(--mhp-primary);
	color: #fff;
	border-top: 4px solid var(--mhp-secondary);
}

.mhp-contact-inner {
	padding-top: 4rem;
	padding-bottom: 4rem;
}

@media (min-width: 1024px) {
	.mhp-contact-inner {
		padding-top: 6rem;
		padding-bottom: 6rem;
	}
}

.mhp-contact-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 4rem;
}

@media (min-width: 1024px) {
	.mhp-contact-grid {
		grid-template-columns: 1fr 1fr;
	}
}

.mhp-contact-title {
	margin: 0 0 1.5rem;
	font-size: 1.875rem;
	font-weight: 700;
}

.mhp-contact-lead {
	margin: 0 0 2.5rem;
	color: #bfdbfe;
	font-size: 1.125rem;
	line-height: 1.6;
}

.mhp-contact-list {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.mhp-contact-row {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
}

.mhp-contact-icon {
	width: 3rem;
	height: 3rem;
	border-radius: 9999px;
	background: rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: var(--mhp-secondary);
	font-size: 1.25rem;
}

.mhp-contact-label {
	margin: 0 0 0.25rem;
	font-weight: 700;
	font-size: 1.125rem;
}

.mhp-contact-value {
	margin: 0;
	color: #bfdbfe;
}

.mhp-contact-link {
	color: #bfdbfe;
	text-decoration: none;
	transition: color 0.2s ease;
}

.mhp-contact-link:hover,
.mhp-contact-link:focus {
	color: #fff;
}

.mhp-contact-social {
	margin-top: 2.5rem;
	padding-top: 2.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.mhp-contact-social-intro {
	margin: 0 0 1rem;
	font-size: 0.875rem;
	color: #bfdbfe;
}

.mhp-social-row {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.mhp-social-row:empty {
	display: none;
}

.mhp-social-btn {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 9999px;
	background: rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	text-decoration: none;
	transition: background 0.2s ease;
}

.mhp-social-btn:hover,
.mhp-social-btn:focus {
	background: var(--mhp-secondary);
	color: #fff;
}

.mhp-contact-form-card {
	background: #fff;
	border-radius: 1.5rem;
	padding: 2rem;
	color: var(--mhp-gray-800);
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

@media (min-width: 1024px) {
	.mhp-contact-form-card {
		padding: 2.5rem;
	}
}

.mhp-form-card-title {
	margin: 0 0 1.5rem;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--mhp-gray-900);
}

.mhp-form-card-body {
	font-size: 1rem;
}

.mhp-form-placeholder {
	color: var(--mhp-gray-600);
	line-height: 1.6;
	margin: 0;
}

/* Contact Form 7 — basic fit theme */
.mhp-form-card-body .wpcf7-form input[type="text"],
.mhp-form-card-body .wpcf7-form input[type="email"],
.mhp-form-card-body .wpcf7-form input[type="tel"],
.mhp-form-card-body .wpcf7-form select,
.mhp-form-card-body .wpcf7-form textarea {
	width: 100%;
	padding: 0.75rem 1rem;
	border-radius: 0.75rem;
	border: 1px solid #e5e7eb;
	background: #f9fafb;
	font-family: inherit;
	font-size: 1rem;
	margin-top: 0.25rem;
	box-sizing: border-box;
}

.mhp-form-card-body .wpcf7-form label {
	display: block;
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--mhp-gray-700);
	margin-bottom: 0.75rem;
}

.mhp-form-card-body .wpcf7-form .wpcf7-submit {
	width: 100%;
	background: var(--mhp-primary);
	color: #fff;
	font-weight: 700;
	padding: 1rem;
	border-radius: 0.75rem;
	border: none;
	cursor: pointer;
	margin-top: 0.5rem;
	transition: background 0.2s ease;
}

.mhp-form-card-body .wpcf7-form .wpcf7-submit:hover,
.mhp-form-card-body .wpcf7-form .wpcf7-submit:focus {
	background: var(--mhp-primary-dark);
}

.mhp-form-card-body .wpcf7-not-valid-tip {
	font-size: 0.8125rem;
	color: #b91c1c;
	margin-top: 0.25rem;
}

.mhp-form-card-body .wpcf7-response-output {
	margin: 1rem 0 0;
	padding: 0.75rem;
	border-radius: 0.5rem;
	font-size: 0.875rem;
}

/* -------------------------------------------------------------------------
   Site footer (below contact)
   ------------------------------------------------------------------------- */
.mhp-site-footer {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	background: #152a5c;
	color: #bfdbfe;
}

.mhp-footer-inner {
	max-width: var(--mhp-max);
	margin: 0 auto;
	padding: 1.5rem 1rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	text-align: center;
}

@media (min-width: 768px) {
	.mhp-footer-inner {
		flex-direction: row;
		justify-content: space-between;
		text-align: left;
	}
}

.mhp-footer-copy {
	margin: 0;
	font-size: 0.875rem;
}

.mhp-footer-nav {
	width: 100%;
}

@media (min-width: 768px) {
	.mhp-footer-nav {
		width: auto;
	}
}

.mhp-footer-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
}

@media (min-width: 768px) {
	.mhp-footer-menu {
		justify-content: flex-start;
	}
}

.mhp-footer-menu a {
	color: #bfdbfe;
	text-decoration: none;
	font-size: 0.875rem;
}

.mhp-footer-menu a:hover,
.mhp-footer-menu a:focus {
	color: #fff;
}

.mhp-footer-architect {
	margin: 0;
	font-size: 0.875rem;
}

.mhp-footer-architect-name {
	color: #fff;
	font-weight: 500;
}

/* -------------------------------------------------------------------------
   Blog / inner pages
   ------------------------------------------------------------------------- */
.mhp-page-header {
	margin-bottom: 2rem;
}

.mhp-page-title {
	font-size: 2rem;
	font-weight: 700;
	color: var(--mhp-gray-900);
	margin: 0;
}

.mhp-page-content,
.mhp-index {
	padding-top: 5rem;
}

.mhp-index-title {
	font-size: 1.5rem;
	margin: 0 0 0.5rem;
}

.mhp-index-title a {
	color: var(--mhp-primary);
	text-decoration: none;
}

.mhp-index-article {
	margin-bottom: 2rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid #e5e7eb;
}

/* WPBakery / block editor wrappers */
.mhp-front-page .vc_row,
.mhp-front-page .wpb_row {
	margin-left: 0;
	margin-right: 0;
}

/**
 * Full-bleed sections inside WPBakery columns (row > column > element).
 */
.mhp-breakout {
	width: 100vw;
	max-width: 100vw;
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
	box-sizing: border-box;
}
