/**
 * for-him.css — /for-him/ homepage. Tokens only, so it renders in the For Him palette
 * (body.theme-him): dark navy surfaces, near-white headings, steel-blue accent. Loaded only on
 * the For Him homepage. Built to prototypes/purepleasure-for-him-v2-prototype.html.
 */

/* ── Hero — matches prototypes/purepleasure-for-him-v2-prototype.html EXACTLY. The silhouette is a
   fully-opaque decorative CSS background (no <img>, not og:image); its softness comes only from the
   fill colour (#26354A) sitting close to the hero background (#0A0F14) — no opacity, mask or blend. ── */
.fh-hero {
	position: relative;
	overflow: hidden;
	background: var(--pp-fh-hero-bg);
	padding: clamp(72px, 11vw, 148px) 0 clamp(64px, 9vw, 120px);
	min-height: 66vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.fh-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
	background: url(../img/for-him-silhouette-lady-flip-right-fade.webp) right bottom -3% / auto 124% no-repeat;
}
.fh-hero > * { position: relative; z-index: 1; }
.fh-hero__inner {
	position: relative;
	z-index: 2;
	max-width: var(--pp-container);
	margin: 0 auto;
	padding: 0 var(--pp-gutter);
	width: 100%;
}
.fh-hero__text { max-width: 46rem; margin: 0 auto; }
.fh-hero .ad-eyebrow { color: var(--pp-pink); letter-spacing: 0.3em; margin-bottom: 20px; }
.fh-hero__title {
	font-family: var(--pp-sans);         /* uppercase SANS, not Playfair */
	text-transform: uppercase;
	font-weight: var(--pp-w-semibold);
	letter-spacing: 0.06em;
	color: var(--pp-plum);               /* near-white in theme-him */
	font-size: clamp(2.6rem, 6.5vw, 5rem);
	line-height: 1.04;
	margin: 0.4rem 0 1.1rem;
}
.fh-hero__title em { color: var(--pp-pink); font-style: normal; font-weight: var(--pp-w-bold); }
.fh-hero__deck {
	font-family: var(--pp-display);
	font-style: italic;
	font-weight: var(--pp-w-regular);
	color: var(--pp-text);
	font-size: clamp(1.2rem, 2.4vw, 1.7rem);
	line-height: 1.5;
	max-width: 34rem;
	margin: 0 auto 1.9rem;
}
.fh-hero__cta { display: flex; align-items: center; justify-content: center; gap: 1.4rem; flex-wrap: wrap; }
.fh-hero__link { color: var(--pp-pink); font-weight: var(--pp-w-semibold); font-size: 0.9rem; }
.fh-hero__link:hover { color: var(--pp-plum); }

/* ── Trust bar (real claims only) ── */
.fh-trust { background: var(--pp-plum-deep); border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); }
.fh-trust__inner { max-width: var(--pp-container); margin: 0 auto; padding: 18px var(--pp-gutter); display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px 16px; }
.fh-trust__item { font-size: 0.74rem; font-weight: var(--pp-w-semibold); letter-spacing: 0.14em; text-transform: uppercase; color: var(--pp-text); }
.fh-trust__dot { color: var(--pp-pink); font-size: 0.5rem; }

/* ── "What HE Can't Get Enough Of" arriving placeholder (For Him has no categories yet) ── */
.fh-band { background: var(--pp-blush-light); }
.fh-band__inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 4vw, 48px); }
.fh-point__k { font-family: var(--pp-display); font-size: 2rem; font-weight: 800; color: var(--pp-pink); margin-bottom: .5rem; }
.fh-point h3 { font-family: var(--pp-display); font-size: 1.35rem; color: var(--pp-plum); margin-bottom: .6rem; }
.fh-point p { color: var(--pp-text); line-height: 1.7; font-size: .98rem; }

.fh-notify { background: var(--pp-wash-dark); text-align: center; }
.fh-notify__inner { max-width: 620px; margin: 0 auto; }
.fh-notify .ad-eyebrow { color: var(--pp-pink); }
.fh-notify__title { font-family: var(--pp-display); font-weight: 800; color: var(--pp-on-accent); font-size: clamp(1.8rem, 4vw, 2.6rem); margin: .4rem 0 .8rem; }
.fh-notify__deck { color: rgba(255,255,255,.72); line-height: 1.7; margin-bottom: 1.6rem; }

@media (max-width: 860px) {
	.fh-hero { min-height: auto; }
	.fh-band__inner { grid-template-columns: 1fr; }
}

/* Mobile: the desktop landscape asset (sized by height) collapses to a thin strip on a narrow
   viewport, so ≤560px uses the portrait crop (head fully in frame) sized to the hero width.
   She sits behind the headline by design — white on #26354A is ~11:1, well past AA. */
@media (max-width: 560px) {
	.fh-hero::before {
		background-image: url(../img/for-him-silhouette-lady-mobile-flip.webp);
		background-size: 100% auto;
		background-position: center bottom;
	}
}
