/*
 * Hero section — copy side (headline, lede, CTAs, rating).
 * Visual (bottle + leaf orbit) lives in log-hero-visual.css.
 * @package log-core
 */

.hero {
	position: relative;
	background: linear-gradient(160deg, var(--plum-950) 0%, var(--plum-800) 55%, var(--plum-700) 100%);
	border-radius: 32px;
	margin: 22px 88px 0;
	overflow: hidden;
	padding: 34px 24px 36px;
	color: #fff;
}

.hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at var(--mx, 18%) var(--my, 20%), rgba(188, 211, 172, .16), transparent 42%);
	transition: background .25s linear;
	pointer-events: none;
}

.hero::after {
	content: '';
	position: absolute;
	width: 480px;
	height: 480px;
	border: 1px solid rgba(188, 211, 172, .08);
	border-radius: 50%;
	bottom: -240px;
	right: -160px;
	pointer-events: none;
}

.hero-grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1.05fr .95fr;
	gap: 40px;
	align-items: center;
	max-width: 1280px;
	margin: 0 auto;
}

.eyebrow-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(188, 211, 172, .13);
	border: 1px solid rgba(188, 211, 172, .38);
	color: var(--sage-400);
	padding: 8px 16px;
	border-radius: var(--r-pill);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	margin-bottom: 16px;
}

.eyebrow-pill .icon { width: 13px; height: 13px; }

.hero h1 {
	font-family: var(--display);
	font-weight: 700;
	line-height: 1.1;
	font-size: clamp(36px, 4.8vw, 56px);
	letter-spacing: -.01em;
	color: #fff;
	margin: 0;
}

.hero h1 em {
	font-style: italic;
	font-weight: 600;
	color: var(--sage-400);
}

.hero p.lede {
	margin: 14px 0 0;
	max-width: 480px;
	color: #e2d3da;
	font-size: 15px;
	line-height: 1.7;
}

.trust-pills { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 16px; }

.trust-pill {
	display: flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, .07);
	border: 1px solid rgba(255, 255, 255, .14);
	padding: 9px 16px;
	border-radius: var(--r-pill);
	font-size: 12.5px;
	font-weight: 600;
	transition: transform .25s var(--ease), background .25s var(--ease);
}

.trust-pill:hover { transform: translateY(-3px); background: rgba(255, 255, 255, .13); }
.trust-pill .icon { width: 14px; height: 14px; color: var(--sage-400); }

.hero-btn-row { display: flex; gap: 14px; margin-top: 18px; flex-wrap: wrap; }

.btn-sage {
	position: relative;
	overflow: hidden;
	background: var(--sage-500);
	color: var(--plum-950);
	font-weight: 700;
	font-size: 13.5px;
	padding: 15px 26px;
	border-radius: var(--r-pill);
	display: inline-flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
	transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}

.btn-sage:hover { background: var(--sage-400); color: var(--plum-950); box-shadow: 0 14px 30px rgba(155, 185, 138, .35); }

.btn-ghost-white {
	border: 1.4px solid rgba(255, 255, 255, .5);
	color: #fff;
	font-weight: 700;
	font-size: 13.5px;
	padding: 15px 26px;
	border-radius: var(--r-pill);
	text-decoration: none;
	transition: all .25s var(--ease);
}

.btn-ghost-white:hover { background: rgba(255, 255, 255, .12); color: #fff; }

.rating-row { display: flex; align-items: center; gap: 26px; margin-top: 18px; flex-wrap: wrap; }
.stars-gold { color: var(--sage-400); display: flex; gap: 2px; }
.stars-gold .icon { width: 14px; height: 14px; fill: currentColor; stroke: none; }
.rating-text strong { display: block; font-size: 14px; }
.rating-text span { font-size: 12px; color: #d8c5cf; }
.rating-sep { width: 1px; height: 34px; background: rgba(255, 255, 255, .18); }
.cert-row { display: flex; align-items: center; gap: 10px; font-size: 13px; color: #f0e3e9; }
.cert-row .icon { width: 18px; height: 18px; color: var(--sage-400); }

.scroll-hint {
	margin-top: 26px;
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	font-size: 11px;
	letter-spacing: .12em;
	color: #cdb6c0;
	font-weight: 700;
	text-align: center;
}

.mouse-ic {
	width: 22px;
	height: 34px;
	border: 2px solid rgba(255, 255, 255, .4);
	border-radius: 14px;
	display: flex;
	justify-content: center;
	padding-top: 6px;
}

.mouse-ic span {
	width: 3px;
	height: 7px;
	border-radius: 2px;
	background: var(--sage-400);
	animation: log-scroll-dot 1.6s ease-in-out infinite;
}

@keyframes log-scroll-dot {
	0% { transform: translateY(0); opacity: 1; }
	70% { transform: translateY(9px); opacity: 0; }
	100% { opacity: 0; }
}

@media (max-width: 980px) {
	.hero { margin: 14px 16px 0; }
}

@media (max-width: 760px) {
	.hero-grid { grid-template-columns: 1fr; }
}
