/*
 * Homepage dark feature band ("Apothecary Fresh") — photo on one side, an
 * eyebrow/headline/checklist on the other, over a black→bronze wash with a
 * soft gold bloom in the corner. Mirrors the New Arrivals Feature section in
 * website_reference/homepage_6.html.
 *
 * @package log-core
 */

.hp-band {
	position: relative;
	overflow: hidden;
	padding: 80px 0;
	background: linear-gradient(135deg, #0A0A0A 0%, #150f02 30%, #1e1503 55%, #0d0c01 75%, #050505 100%);
	color: #fff;
}

/* Corner bloom. */
.hp-band::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 384px;
	height: 384px;
	border-radius: 50%;
	background: rgba(212, 175, 55, .2);
	filter: blur(120px);
	pointer-events: none;
}

.hp-band-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	align-items: center;
}

/* ── Photo side ── */
.hp-band-visual {
	position: relative;
}

.hp-band-visual img {
	width: 100%;
	height: 500px;
	object-fit: cover;
	border-radius: var(--r-sm);
	box-shadow: var(--shadow-lg);
	transition: transform .7s var(--ease);
	display: block;
}

.hp-band-visual img:hover {
	transform: scale(1.01);
}

.hp-band-tag {
	position: absolute;
	bottom: 16px;
	left: 16px;
	padding: 16px 24px;
	border-radius: var(--r-sm);
	background: rgba(184, 148, 30, .9);
	backdrop-filter: blur(4px);
	border: 1px solid rgba(255, 255, 255, .1);
	font-family: var(--mono);
	font-size: 16px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: #fff;
}

/* ── Copy side ── */
.hp-band-copy {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.hp-band-copy .hp-eyebrow {
	color: var(--gold-500);
}

.hp-band-copy h2 {
	font-family: var(--display);
	font-size: clamp(30px, 4vw, 48px);
	font-weight: 700;
	line-height: 1.2;
	color: #fff;
	margin: 0;
}

.hp-band-copy p {
	font-size: 16px;
	line-height: 1.7;
	color: rgba(255, 255, 255, .7);
	max-width: 512px;
	margin: 0;
}

.hp-band-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.hp-band-list li {
	display: flex;
	align-items: center;
	gap: 16px;
	font-weight: 700;
	color: rgba(255, 255, 255, .9);
	transition: color .25s var(--ease);
}

.hp-band-list li:hover {
	color: var(--gold-400);
}

.hp-band-list .icon {
	width: 22px;
	height: 22px;
	flex-shrink: 0;
	color: var(--gold-500);
	stroke: currentColor;
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
	transition: color .25s var(--ease);
}

.hp-band-list li:hover .icon {
	color: var(--gold-400);
}

.hp-band-actions {
	padding-top: 16px;
	display: flex;
}

/* On the dark band the gold button carries a gold rim instead of a glow. */
.hp-band-actions .hp-btn-gold {
	padding-left: 40px;
	padding-right: 40px;
	border-color: rgba(212, 175, 55, .4);
	box-shadow: none;
}

.hp-band-actions .hp-btn-gold:hover {
	border-color: var(--gold-500);
	box-shadow: 0 14px 40px rgba(212, 175, 55, .45);
}

@media (max-width: 1024px) {
	.hp-band-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	/* Copy leads on narrow screens; the photo follows it. */
	.hp-band-copy {
		order: 1;
	}

	.hp-band-visual {
		order: 2;
	}

	.hp-band-visual img {
		height: 400px;
	}
}

@media (max-width: 767px) {
	.hp-band {
		padding: 60px 0;
	}

	.hp-band-visual img {
		height: 300px;
	}

	.hp-band-tag {
		font-size: 13px;
		padding: 12px 18px;
	}

	.hp-band-actions .hp-btn-gold {
		width: 100%;
		justify-content: center;
	}
}
