/* ==========================================================================
   Melaaura Brands Hub - editorial sections for the /brands/ page.
   Rendered by the `melaaura_brands_hub` Elementor widget (rey-child).
   Fonts: Cormorant Garamond (display serif) + Inter, via the shared
   `melaaura-hero-fonts` handle.
   ========================================================================== */

.mbh {
	--mbh-ink: #1c1917;
	--mbh-body: #57534e;
	--mbh-faint: #78716c;
	--mbh-cream: #faf8f5;
	--mbh-gold: #ddbb39;
	--mbh-gold-deep: #a16207;
	--mbh-border: #e7e5e4;
	--mbh-serif: 'Cormorant Garamond', Georgia, serif;
	--mbh-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

	font-family: var(--mbh-sans);
	color: var(--mbh-body);
	font-size: 16px;
	line-height: 1.75;
}

.mbh *, .mbh *::before, .mbh *::after { box-sizing: border-box; }

.mbh h2, .mbh h3 {
	font-family: var(--mbh-serif);
	font-weight: 500;
	color: var(--mbh-ink);
	line-height: 1.15;
	margin: 0;
}

.mbh a { color: inherit; }

.mbh-full {
	margin-inline: calc(50% - 50vw);
	padding-inline: calc(50vw - 50%);
}

.mbh-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--mbh-gold-deep);
}

.mbh-eyebrow::before {
	content: '';
	width: 26px;
	height: 1px;
	background: var(--mbh-gold);
}

.mbh [data-mbh-reveal] {
	opacity: 0;
	transform: translateY(26px);
	transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.mbh .mbh-inview { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
	.mbh [data-mbh-reveal] { opacity: 1; transform: none; transition: none; }
}

/* -- Intro ----------------------------------------------------------- */
.mbh-intro {
	max-width: 880px;
	margin: 0 auto;
	padding: 88px 24px 64px;
	text-align: center;
}

.mbh-intro .mbh-eyebrow { justify-content: center; }

.mbh-intro .mbh-eyebrow::after,
.mbh-houses-head .mbh-eyebrow::after,
.mbh-guide-head .mbh-eyebrow::after {
	content: '';
	width: 26px;
	height: 1px;
	background: var(--mbh-gold);
}

.mbh-intro h2 {
	font-size: clamp(2.3rem, 5vw, 3.4rem);
	margin: 18px 0 26px;
}

.mbh-lead p { margin: 0 0 1.2em; }
.mbh-lead p:last-child { margin-bottom: 0; }

.mbh-stats {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	list-style: none;
	margin: 56px 0 0;
	padding: 36px 0 0;
	border-top: 1px solid var(--mbh-border);
}

.mbh-stats li {
	flex: 1 1 0;
	min-width: 150px;
	padding: 6px 20px;
}

.mbh-stats li + li { border-left: 1px solid var(--mbh-border); }

.mbh-stat-num {
	display: block;
	font-family: var(--mbh-serif);
	font-size: clamp(2.4rem, 4vw, 3.1rem);
	font-weight: 500;
	color: var(--mbh-ink);
	line-height: 1;
	font-variant-numeric: tabular-nums;
}

.mbh-stat-num sup {
	font-size: 0.55em;
	color: var(--mbh-gold-deep);
	top: -0.45em;
}

.mbh-stat-label {
	display: block;
	margin-top: 10px;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--mbh-faint);
}

/* -- Spotlights ------------------------------------------------------ */
.mbh-spotlights {
	max-width: 1200px;
	margin: 0 auto;
	padding: 24px 24px 40px;
	display: flex;
	flex-direction: column;
	gap: 104px;
}

.mbh-spot {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
	gap: clamp(32px, 6vw, 88px);
	align-items: center;
}

.mbh-spot:nth-child(even) .mbh-spot-media { order: 2; }
.mbh-spot:nth-child(even) .mbh-spot-body { order: 1; }

.mbh-spot-media { position: relative; }

.mbh-spot-media a { display: block; overflow: hidden; }

.mbh-spot-media img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.mbh-spot-media:hover img { transform: scale(1.035); }

.mbh-spot-media::after {
	content: '';
	position: absolute;
	inset: 18px -18px -18px 18px;
	border: 1px solid var(--mbh-gold);
	opacity: 0.55;
	pointer-events: none;
	z-index: -1;
}

.mbh-spot:nth-child(even) .mbh-spot-media::after {
	inset: 18px 18px -18px -18px;
}

.mbh-spot-body { position: relative; padding: 12px 0; }

.mbh-spot-index {
	position: absolute;
	top: -64px;
	left: -10px;
	font-family: var(--mbh-serif);
	font-style: italic;
	font-size: clamp(5.5rem, 9vw, 8.5rem);
	line-height: 1;
	color: rgba(28, 25, 23, 0.07);
	pointer-events: none;
	user-select: none;
}

.mbh-spot-body h3 {
	font-size: clamp(2rem, 3.6vw, 2.7rem);
	margin: 14px 0 18px;
}

.mbh-spot-body h3 a { text-decoration: none; transition: color 0.25s ease; }

.mbh-spot-body h3 a:hover { color: var(--mbh-gold-deep); }

.mbh-spot-body > p { margin: 0 0 26px; font-size: 15.5px; }

.mbh-facts {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px 24px;
	margin: 0 0 30px;
	padding-top: 22px;
	border-top: 1px solid var(--mbh-border);
}

.mbh-facts dt {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--mbh-faint);
	margin-bottom: 6px;
}

.mbh-facts dd {
	margin: 0;
	font-family: var(--mbh-serif);
	font-size: 17.5px;
	color: var(--mbh-ink);
	line-height: 1.35;
}

.mbh-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--mbh-ink);
	text-decoration: none;
	padding-bottom: 6px;
	background-image: linear-gradient(var(--mbh-gold-deep), var(--mbh-gold-deep));
	background-repeat: no-repeat;
	background-size: 0% 1px;
	background-position: left bottom;
	transition: background-size 0.35s ease, color 0.25s ease;
}

.mbh-link svg { transition: transform 0.3s ease; }

.mbh-link:hover { color: var(--mbh-gold-deep); background-size: 100% 1px; }

.mbh-link:hover svg { transform: translateX(5px); }
/* -- Houses grid ----------------------------------------------------- */
.mbh-houses {
	background: var(--mbh-cream);
	padding-top: 90px;
	padding-bottom: 96px;
	margin-top: 60px;
}

.mbh-houses-head {
	max-width: 780px;
	margin: 0 auto 58px;
	text-align: center;
	padding: 0 24px;
}

.mbh-houses-head .mbh-eyebrow { justify-content: center; }

.mbh-houses-head h2 {
	font-size: clamp(2rem, 4vw, 2.8rem);
	margin: 16px 0 18px;
}

.mbh-houses-head p { margin: 0; }

.mbh-houses-grid {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 56px 44px;
}

.mbh-house { display: block; text-decoration: none; }

.mbh-house figure { margin: 0 0 20px; overflow: hidden; }

.mbh-house img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.mbh-house:hover img { transform: scale(1.04); }

.mbh-house h3 { font-size: 23px; margin: 0 0 8px; transition: color 0.25s ease; }

.mbh-house:hover h3 { color: var(--mbh-gold-deep); }

.mbh-house p { margin: 0 0 12px; font-size: 14px; line-height: 1.65; }

.mbh-house-more {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--mbh-gold-deep);
	opacity: 0;
	transform: translateY(4px);
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.mbh-house:hover .mbh-house-more { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
	.mbh-house-more { opacity: 1; transform: none; }
	.mbh-spot-media img, .mbh-house img { transition: none; }
	.mbh-spot-media:hover img, .mbh-house:hover img { transform: none; }
}

/* -- Guide ------------------------------------------------------------ */
.mbh-guide {
	max-width: 1200px;
	margin: 0 auto;
	padding: 96px 24px 70px;
}

.mbh-guide-head {
	max-width: 720px;
	margin: 0 auto 56px;
	text-align: center;
}

.mbh-guide-head .mbh-eyebrow { justify-content: center; }

.mbh-guide-head h2 {
	font-size: clamp(2rem, 4vw, 2.8rem);
	margin: 16px 0 0;
}

.mbh-guide-grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 40px 36px;
}

.mbh-guide-grid li {
	border-top: 1px solid var(--mbh-border);
	padding-top: 24px;
}

.mbh-guide-num {
	display: block;
	font-family: var(--mbh-serif);
	font-style: italic;
	font-size: 30px;
	color: var(--mbh-gold-deep);
	line-height: 1;
	margin-bottom: 14px;
}

.mbh-guide-grid h3 { font-size: 21px; margin: 0 0 10px; }

.mbh-guide-grid p { margin: 0; font-size: 14px; line-height: 1.7; }

.mbh-guide-foot {
	text-align: center;
	margin: 54px auto 0;
	max-width: 640px;
	font-size: 15.5px;
}

.mbh-guide-foot a {
	color: var(--mbh-gold-deep);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.mbh-guide-foot a:hover { color: var(--mbh-ink); }

/* -- Showroom band ---------------------------------------------------- */
.mbh-band {
	background: var(--mbh-ink);
	color: #d6d3d1;
	padding-top: 96px;
	padding-bottom: 96px;
}

.mbh-band-grid {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
	display: grid;
	grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
	gap: clamp(40px, 6vw, 90px);
	align-items: center;
}

.mbh-band .mbh-eyebrow { color: var(--mbh-gold); }
.mbh-band .mbh-eyebrow::before { background: var(--mbh-gold); }

.mbh-band h2 {
	color: #fafaf9;
	font-size: clamp(2.1rem, 4vw, 3rem);
	margin: 16px 0 20px;
}

.mbh-band-grid > div > p { margin: 0 0 30px; font-size: 15.5px; }

.mbh-band ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.mbh-band ul li {
	display: flex;
	align-items: center;
	gap: 14px;
	font-size: 15px;
	color: #fafaf9;
}

.mbh-band ul svg { flex: 0 0 auto; stroke: var(--mbh-gold); }

.mbh-band ul a {
	color: #fafaf9;
	text-decoration: none;
	border-bottom: 1px solid rgba(250, 250, 249, 0.3);
	transition: border-color 0.25s ease, color 0.25s ease;
}

.mbh-band ul a:hover { color: var(--mbh-gold); border-color: var(--mbh-gold); }

.mbh-band-actions {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 18px;
}

.mbh-btn {
	display: inline-block;
	padding: 17px 40px;
	font-family: var(--mbh-sans);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	text-decoration: none;
	text-align: center;
	cursor: pointer;
	transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.mbh-btn--gold {
	background: var(--mbh-gold);
	color: var(--mbh-ink);
	border: 1px solid var(--mbh-gold);
}

.mbh-btn--gold:hover { background: #e8cc58; border-color: #e8cc58; color: var(--mbh-ink); }

.mbh-btn--ghost {
	background: transparent;
	color: #fafaf9;
	border: 1px solid rgba(250, 250, 249, 0.55);
}

.mbh-btn--ghost:hover { background: #fafaf9; color: var(--mbh-ink); border-color: #fafaf9; }

/* -- FAQ ---------------------------------------------------------------
   The FAQ re-uses the category-landing component: .mela-lp / .mlp-faq
   markup styled by assets/category-landing.css (mela-lp-css) and driven
   by assets/category-landing.js (mela-lp-js). Only spacing harmonisation
   lives here - never restyle .mlp-* globally.
   --------------------------------------------------------------------- */
.mbh .mbh-lp-faq { margin-top: 28px; }

/* -- Responsive -------------------------------------------------------- */
@media (max-width: 1024px) {
	.mbh-houses-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 48px 36px; }
	.mbh-guide-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 880px) {
	.mbh-spot { grid-template-columns: 1fr; gap: 40px; }
	.mbh-spot:nth-child(even) .mbh-spot-media { order: 0; }
	.mbh-spot:nth-child(even) .mbh-spot-body { order: 1; }
	.mbh-spot-media::after { display: none; }
	.mbh-spot-index { top: -50px; }
	.mbh-spotlights { gap: 76px; }
	.mbh-band-grid { grid-template-columns: 1fr; }
	.mbh-band-actions { flex-direction: row; flex-wrap: wrap; }
}

@media (max-width: 640px) {
	.mbh-intro { padding: 64px 20px 48px; }
	.mbh-stats { margin-top: 40px; }
	.mbh-stats li { flex: 1 1 40%; padding: 14px 12px; }
	.mbh-stats li + li { border-left: 0; }
	.mbh-stats li:nth-child(even) { border-left: 1px solid var(--mbh-border); }
	.mbh-houses-grid { grid-template-columns: 1fr; gap: 44px; }
	.mbh-guide-grid { grid-template-columns: 1fr; }
	.mbh-facts { grid-template-columns: 1fr 1fr; }
}