/* hero.css — halfpage-dominant-photo hero (60% photo / 40% content), no overlay. */

.hero--halfpage {
	background: var(--c-bg);
	min-height: 82vh;
	display: grid;
	grid-template-columns: 1fr;
	position: relative;
}

@media (min-width: 1024px) {
	.hero--halfpage {
		grid-template-columns: 60fr 40fr;
	}
}

/* Photo column (left 60% on desktop, top on mobile — no overlay, no gradient) */
.hero__photo-wrap {
	position: relative;
	min-height: 320px;
	border: 1px solid var(--c-border);
}

.hero__photo {
	width: 100%;
	height: 100%;
	min-height: 320px;
	object-fit: cover;
	display: block;
}

/* Content column (right 40% on desktop) */
.hero__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: var(--s-64) var(--s-24);
}

@media (min-width: 1024px) {
	.hero__content {
		padding: var(--s-96) var(--s-64);
	}
}

.hero__kicker {
	font-family: var(--f-body);
	font-size: 0.75rem;
	letter-spacing: 2.25px;
	text-transform: uppercase;
	color: var(--c-accent-sec);
	font-weight: 600;
	margin-bottom: var(--s-24);
}

.hero h1 {
	font-family: var(--f-heading);
	font-weight: 600;
	font-size: clamp(2.375rem, 5.25vw, 4rem);
	line-height: 1.08;
	margin-bottom: var(--s-24);
	color: var(--c-white);
}

.hero h1 em {
	font-style: italic;
	font-weight: 500;
	color: var(--c-accent-sec);
}

.hero__subtitle {
	font-size: 1.125rem;
	color: var(--c-text-dim);
	max-width: min(36ch, 100%);
	margin-bottom: var(--s-32);
	line-height: 1.6;
}

.hero__ctas {
	display: flex;
	flex-wrap: wrap;
	gap: var(--s-16);
	margin-bottom: var(--s-24);
}

/* Never have hero anchors inherit button-link styling. Scope strictly. */
.hero a:not(.btn-primary):not(.btn-secondary):not(.btn-tertiary):not(.btn-ghost):not(.btn) {
	color: var(--c-accent-sec);
	border-bottom: 1px solid transparent;
	transition: border-color var(--dur) var(--ease);
}

.hero a:not(.btn-primary):not(.btn-secondary):not(.btn-tertiary):not(.btn-ghost):not(.btn):hover {
	border-bottom-color: var(--c-accent-sec);
}

/* Anchor navigation (diamond-separated) */
.hero__anchors {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0;
	font-family: var(--f-body);
	font-weight: 500;
	font-size: 0.8125rem;
	letter-spacing: 0.5px;
	color: var(--c-text-dim);
}

.hero__anchors a {
	color: var(--c-text);
	text-decoration: none;
	padding: var(--s-4) 0;
}

.hero__anchors a + a::before {
	content: '';
	display: inline-block;
	width: 5px;
	height: 5px;
	background: var(--c-accent);
	transform: rotate(45deg);
	margin: 0 var(--s-12);
	vertical-align: middle;
}

/* Fullbleed hero — darkened background photo, content centred on top */
.hero--fullbleed {
	position: relative;
	min-height: 92vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.hero--fullbleed .hero__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.hero--fullbleed .hero__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.hero--fullbleed .hero__bg::after {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(14, 23, 38, 0.72);
}

.hero--fullbleed .hero__content {
	position: relative;
	z-index: 1;
	max-width: 720px;
	text-align: center;
	padding: var(--s-96) var(--s-24);
}

.hero--fullbleed .hero__subtitle {
	max-width: 48ch;
	margin-left: auto;
	margin-right: auto;
}

.hero--fullbleed .hero__ctas {
	justify-content: center;
}

.hero--fullbleed .hero__anchors {
	justify-content: center;
}

.hero--fullbleed .three-tick {
	margin-left: auto;
	margin-right: auto;
}

@media (max-width: 767px) {
	.hero--fullbleed {
		min-height: 80vh;
	}
}

/* Small hero variant (Contact, Book, Thank You) */
.hero--small {
	min-height: 48vh;
}

@media (max-width: 1023px) {
	.hero--small {
		min-height: auto;
	}
}

/* Hero badges (three-tick with small labels) */
.hero__badges {
	display: flex;
	flex-wrap: wrap;
	gap: var(--s-16) var(--s-24);
	margin-top: var(--s-24);
	font-family: var(--f-body);
	font-size: 0.75rem;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--c-accent-sec);
}

.hero__badges span {
	display: inline-flex;
	align-items: center;
	gap: var(--s-8);
}

.hero__badges span + span::before {
	content: '';
	display: inline-block;
	width: 5px;
	height: 5px;
	background: var(--c-accent);
	transform: rotate(45deg);
	margin-right: var(--s-8);
}
