/* Warburton Life — Business detail hero. */

.wl-bhero {
	max-width: 1376px;
	margin: 0 auto;
	/* Top padding clears the fixed wl-topnav header (~77px). */
	padding: 7rem 2rem 3.5rem;
	color: var(--wp--preset--color--ink, #241823);
	font-family: var(--wp--preset--font-family--sans, "Public Sans", system-ui, sans-serif);
}
/* If crumbs (or any block) come before the hero, they handle header clearance
 * — drop the hero's 7rem to a normal section gap. */
.wl-bhero:not(:first-child),
.wl-bcrumbs + .wl-bhero {
	padding-top: 1.5rem;
}

.wl-bhero .mono   { font-family: var(--wp--preset--font-family--mono, "JetBrains Mono", monospace); }
.wl-bhero .hand   { font-family: var(--wp--preset--font-family--hand, "Caveat", cursive); }
.wl-bhero .serif  { font-family: var(--wp--preset--font-family--serif, "Fraunces", Georgia, serif); }

/* Tagline pills (mirrors .wl-bstory__tag) + hours pill. */
.wl-bhero__pills {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 1.5rem;
}
.wl-bhero__pill {
	padding: 0.4375rem 0.9375rem;
	border-radius: 100px;
	border: 1.5px solid transparent;
	font-size: 0.8125rem;
	line-height: 1.2;
	font-weight: 500;
	color: var(--wp--preset--color--paper, #f2e6d8);
}
.wl-bhero__pill--mauve-dark { background: var(--wp--preset--color--mauve-dark, #5e4770); }
.wl-bhero__pill--forest    { background: var(--wp--preset--color--forest,     #4a6450); }
.wl-bhero__pill--gold      { background: var(--wp--preset--color--gold,       #d9a64a); color: var(--wp--preset--color--ink, #241823); }
.wl-bhero__pill--rose-dark { background: var(--wp--preset--color--rose-dark,  #a84e63); }
.wl-bhero__pill--hours {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: var(--wp--preset--color--ink, #241823);
	color: var(--wp--preset--color--paper, #f2e6d8);
}
.wl-bhero__pill-dot {
	width: 8px;
	height: 8px;
	border-radius: 4px;
	background: var(--wp--preset--color--forest, #4a6450);
	box-shadow: 0 0 0 2px rgba(74, 100, 80, 0.25);
}

/* Title */
.wl-bhero__title {
	font-size: clamp(4rem, 11vw, 9rem);
	line-height: 0.92;
	font-weight: 700;
	letter-spacing: -0.005em;
	margin: 0;
	color: var(--wp--preset--color--ink, #241823);
}
.wl-bhero__title-accent {
	color: var(--wp--preset--color--rose-dark, #a84e63);
	font-style: italic;
}

/* Lede */
.wl-bhero__lede {
	font-size: clamp(1.125rem, 1.6vw, 1.375rem);
	line-height: 1.45;
	max-width: 720px;
	margin: 1.75rem 0 0;
	font-style: italic;
	font-weight: 400;
	opacity: 0.85;
}

/* Media */
.wl-bhero__media {
	margin-top: 3rem;
	position: relative;
	border-radius: 18px;
	overflow: hidden;
	height: clamp(360px, 38vw, 540px);
	border: 1.5px solid var(--wp--preset--color--ink, #241823);
}
.wl-bhero__img,
.wl-bhero__placeholder svg {
	width: 100%; height: 100%; display: block; object-fit: cover;
}

/* Pinned info card overlay */
.wl-bhero__pinned {
	position: absolute;
	left: 2rem;
	bottom: 2rem;
	right: 2rem;
	max-width: max-content;
	background: var(--wp--preset--color--paper, #f2e6d8);
	border: 1.5px solid var(--wp--preset--color--ink, #241823);
	border-radius: 14px;
	padding: 1.4rem 1.6rem;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, max-content));
	gap: 2.25rem;
}
.wl-bhero__cell { min-width: 0; }
.wl-bhero__cell-k {
	font-size: 0.625rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	opacity: 0.55;
	margin-bottom: 0.4rem;
}
.wl-bhero__cell-v {
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.15;
	letter-spacing: -0.01em;
}
.wl-bhero__cell-sub {
	font-size: 0.75rem;
	opacity: 0.6;
	margin-top: 0.15rem;
}

@media (max-width: 720px) {
	.wl-bhero { padding: 1.75rem 1rem 2rem; }
	.wl-bhero__pinned {
		position: static;
		margin: -1rem 0 0;
		border-radius: 0 0 14px 14px;
		border-top: none;
		grid-template-columns: 1fr 1fr;
		gap: 1.25rem;
	}
	.wl-bhero__media { border-radius: 14px 14px 0 0; height: 280px; }
}
