/**
 * LHR redesign — For Hotels landing (/for-hotels/): creator roster + offers.
 * Template: page-templates/template-for-hotels.php. Contract tokens §1;
 * shared primitives from base.css (.lhr-container, .lhr-section, .lhr-eyebrow,
 * .lhr-btn, .lhr-card). Everything here is scoped .lhr-fh-*.
 *
 * Roster cards mirror the /creators/ media-kit preview language (creators.css
 * .lhr-cr-kit) so a creator's public card reads like the preview they built.
 *
 * The page doubles as a shareable one-pager: a print block at the bottom
 * flattens the dark bands and hides site chrome so it reads cleanly on paper.
 */

/* ------------------------------------------------------------------
 * 1. Dark image hero — full-bleed library shot behind a left-aligned
 *    text block. Contract §5b paint pattern: opaque dark fallback,
 *    plain DOM paint order (bg → img → scrim), NO isolation and NO
 *    z-index on the media layers; only the content lifts on z.
 * ---------------------------------------------------------------- */

.lhr-fh-hero {
	position: relative;
	margin: 0; /* nothing may render above the sticky header slot */
	overflow: hidden;
	background: var(--lhr-dark, #191713);
	color: #fff;
	padding-block: clamp(72px, 9vw, 128px);
}

/* Two classes: beat `.lhr-redesign img { height: auto }` from base.css. */
.lhr-fh-hero .lhr-fh-hero__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.lhr-fh-hero__scrim {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: linear-gradient(
		to right,
		rgba(25, 23, 19, 0.85) 0%,
		rgba(25, 23, 19, 0.62) 44%,
		rgba(25, 23, 19, 0.24) 100%
	);
}

.lhr-fh-hero__inner {
	position: relative;
	z-index: 2;
	text-align: left;
}

.lhr-fh-hero__eyebrow {
	margin: 0 0 20px;
	font-family: var(--lhr-font-sans, 'Hanken Grotesk', sans-serif);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--lhr-gold, #a9885a);
}

/* Two classes: the ink `.lhr-redesign h1` rule in base.css must not win here. */
.lhr-fh-hero .lhr-fh-hero__title {
	margin: 0;
	max-width: 700px;
	font-family: var(--lhr-font-serif, 'Playfair Display', serif);
	font-size: clamp(40px, 5vw, 64px);
	font-weight: 500;
	line-height: 1.08;
	letter-spacing: -0.01em;
	color: var(--lhr-cream, #f7f4ee);
}

.lhr-fh-hero__dek {
	margin: 24px 0 0;
	max-width: 560px;
	font-family: var(--lhr-font-sans, 'Hanken Grotesk', sans-serif);
	font-size: 16.5px;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.78);
}

/* Live stat row — hairline-topped, Playfair numerals. The three stats
   distribute evenly across the full rule width so the hairline and its
   content always read as one composed unit (no dead space at the end). */
.lhr-fh-stats {
	list-style: none;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 24px 40px;
	max-width: 720px;
	margin: 48px 0 0;
	padding: 32px 8px 0 0;
	border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.lhr-fh-stats__item {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	margin: 0;
	text-align: left;
}

.lhr-fh-stats__num {
	font-family: var(--lhr-font-serif, 'Playfair Display', serif);
	font-size: clamp(30px, 3.4vw, 40px);
	font-weight: 500;
	line-height: 1;
	color: var(--lhr-cream, #f7f4ee);
}

.lhr-fh-stats__label {
	font-family: var(--lhr-font-sans, 'Hanken Grotesk', sans-serif);
	font-size: 10.5px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.55);
}

/* ------------------------------------------------------------------
 * 2. Shared section heading rhythm
 * ---------------------------------------------------------------- */

.lhr-fh .lhr-fh-heading {
	margin: 0 0 clamp(28px, 4vw, 44px);
	max-width: 640px;
}

.lhr-fh .lhr-section {
	padding-block: calc(var(--lhr-section, 96px) / 2);
}

.lhr-fh-roster {
	padding-top: var(--lhr-section, 96px);
}

/* ------------------------------------------------------------------
 * 3. The Roster — media-kit cards (mirrors /creators/ preview language)
 * ---------------------------------------------------------------- */

.lhr-fh-roster__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(16px, 2vw, 24px);
	align-items: start;
}

.lhr-fh-creator {
	overflow: hidden;
}

.lhr-fh-creator__media {
	position: relative;
	aspect-ratio: 4 / 3;
	background: var(--lhr-panel, #f1ede4);
	display: grid;
	place-items: center;
	border-bottom: 1px solid var(--lhr-hairline, #e5dfd2);
}

.lhr-fh-creator__photo {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.lhr-fh-creator__monogram {
	font-family: var(--lhr-font-serif, 'Playfair Display', serif);
	font-weight: 400;
	font-size: 44px;
	letter-spacing: 0.12em;
	color: var(--lhr-gold, #a9885a);
	text-indent: 0.12em; /* optically recentre the letterspaced pair */
}

.lhr-fh-creator__body {
	padding: 26px 26px 28px;
}

/* Serif letterspaced caps name — the media-kit signature. */
.lhr-fh .lhr-fh-creator__name {
	margin: 0 0 6px;
	font-family: var(--lhr-font-serif, 'Playfair Display', serif);
	font-weight: 500;
	font-size: 21px;
	line-height: 1.2;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--lhr-ink, #22201c);
}

.lhr-fh-creator__loc {
	margin: 0;
	font-family: var(--lhr-font-sans, 'Hanken Grotesk', sans-serif);
	font-size: var(--lhr-caps-size, 11px);
	font-weight: 600;
	letter-spacing: var(--lhr-caps-track, 0.16em);
	text-transform: uppercase;
	color: var(--lhr-ink-faint, #98917f);
}

/* Stat row — Playfair numerals over small caps platform labels. */
.lhr-fh-creator__stats {
	list-style: none;
	margin: 20px 0 0;
	padding: 16px 0;
	border-top: 1px solid var(--lhr-hairline, #e5dfd2);
	border-bottom: 1px solid var(--lhr-hairline, #e5dfd2);
	display: flex;
	gap: 8px;
}

.lhr-fh-creator__stat {
	flex: 1 1 0;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
	margin: 0;
}

.lhr-fh-creator__num {
	font-family: var(--lhr-font-serif, 'Playfair Display', serif);
	font-weight: 500;
	font-size: 26px;
	line-height: 1;
	color: var(--lhr-ink, #22201c);
}

.lhr-fh-creator__statlabel {
	font-family: var(--lhr-font-sans, 'Hanken Grotesk', sans-serif);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: var(--lhr-caps-track, 0.16em);
	text-transform: uppercase;
	color: var(--lhr-ink-faint, #98917f);
}

.lhr-fh-creator__handle {
	font-family: var(--lhr-font-sans, 'Hanken Grotesk', sans-serif);
	font-size: 12px;
	color: var(--lhr-ink-soft, #6e675c);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/* Gold niche chips. */
.lhr-fh-creator__chips {
	list-style: none;
	margin: 18px 0 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.lhr-fh-chip {
	margin: 0;
	font-family: var(--lhr-font-sans, 'Hanken Grotesk', sans-serif);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: var(--lhr-caps-track, 0.16em);
	text-transform: uppercase;
	color: var(--lhr-gold, #a9885a);
	border: 1px solid var(--lhr-gold-soft, #cbb48d);
	background: var(--lhr-card, #fff);
	padding: 6px 10px;
	border-radius: 0;
}

/* One-line bio clamp. */
.lhr-fh-creator__bio {
	margin: 16px 0 0;
	font-family: var(--lhr-font-sans, 'Hanken Grotesk', sans-serif);
	font-size: 14px;
	line-height: 1.7;
	color: var(--lhr-ink-soft, #6e675c);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/* Empty state — elegant hairline panel while the roster is curated. */
.lhr-fh-roster-empty {
	border: 1px solid var(--lhr-hairline, #e5dfd2);
	background: var(--lhr-card, #fff);
	padding: clamp(48px, 7vw, 88px) clamp(24px, 5vw, 64px);
	text-align: center;
}

.lhr-fh-roster-empty__mark {
	display: block;
	margin-bottom: 18px;
	font-family: var(--lhr-font-serif, 'Playfair Display', serif);
	font-size: 28px;
	line-height: 1;
	color: var(--lhr-gold, #a9885a);
}

.lhr-fh-roster-empty__title {
	margin: 0;
	font-family: var(--lhr-font-serif, 'Playfair Display', serif);
	font-size: clamp(22px, 2.6vw, 30px);
	font-weight: 500;
	line-height: 1.25;
	color: var(--lhr-ink, #22201c);
}

.lhr-fh-roster-empty__copy {
	margin: 14px auto 0;
	max-width: 440px;
	font-family: var(--lhr-font-sans, 'Hanken Grotesk', sans-serif);
	font-size: 15px;
	line-height: 1.75;
	color: var(--lhr-ink-soft, #6e675c);
}

.lhr-fh-roster-empty__link {
	display: inline-block;
	margin-top: 26px;
	font-family: var(--lhr-font-sans, 'Hanken Grotesk', sans-serif);
	font-size: var(--lhr-caps-size, 11px);
	font-weight: 600;
	letter-spacing: var(--lhr-caps-track, 0.16em);
	text-transform: uppercase;
	text-decoration: none;
	color: var(--lhr-ink, #22201c);
	transition: color 200ms var(--lhr-ease, ease);
}

.lhr-fh-roster-empty__link:hover,
.lhr-fh-roster-empty__link:focus-visible {
	color: var(--lhr-gold, #a9885a);
}

/* ------------------------------------------------------------------
 * 3b. Image band — collection-style 16:7 crop between roster and
 *     offers (below the fold: lazy + async, bottom scrim, caption).
 * ---------------------------------------------------------------- */

.lhr-fh-band {
	padding-block: 0;
}

.lhr-fh-band__media {
	position: relative;
	margin: 0;
	aspect-ratio: 16 / 7;
	min-height: 240px;
	overflow: hidden;
	background: var(--lhr-dark, #191713);
}

/* Two classes: beat `.lhr-redesign img { height: auto }` from base.css. */
.lhr-fh-band__media .lhr-fh-band__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.lhr-fh-band__scrim {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: linear-gradient(
		to top,
		rgba(25, 23, 19, 0.74) 0%,
		rgba(25, 23, 19, 0.26) 44%,
		rgba(25, 23, 19, 0) 72%
	);
}

.lhr-fh-band__caption {
	position: absolute;
	left: clamp(20px, 4vw, 44px);
	right: clamp(20px, 4vw, 44px);
	bottom: clamp(18px, 3.4vw, 36px);
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.lhr-fh-band__eyebrow {
	font-family: var(--lhr-font-sans, 'Hanken Grotesk', sans-serif);
	font-size: var(--lhr-caps-size, 11px);
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--lhr-gold-soft, #cbb48d);
}

.lhr-fh-band__line {
	font-family: var(--lhr-font-serif, 'Playfair Display', serif);
	font-size: clamp(22px, 2.6vw, 32px);
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: -0.01em;
	color: #fff;
}

/* ------------------------------------------------------------------
 * 4. Our Offers — split intro + hairline list
 * ---------------------------------------------------------------- */

.lhr-fh-offers__grid {
	display: grid;
	grid-template-columns: 5fr 7fr;
	gap: clamp(32px, 5vw, 80px);
	align-items: start;
}

.lhr-fh-offers__note {
	margin: 0;
	max-width: 380px;
	font-size: 15px;
	line-height: 1.75;
	color: var(--lhr-ink-soft, #6e675c);
}

.lhr-fh-offers__intro .lhr-fh-heading {
	margin-bottom: 20px;
}

.lhr-fh-offers__list {
	list-style: none;
	margin: 0;
	padding: 0;
	border-top: 1px solid var(--lhr-hairline, #e5dfd2);
}

.lhr-fh-offer {
	display: grid;
	grid-template-columns: 148px 1fr;
	gap: 8px 24px;
	margin: 0;
	padding: 22px 0;
	border-bottom: 1px solid var(--lhr-hairline, #e5dfd2);
}

.lhr-fh-offer__label {
	padding-top: 5px;
	font-family: var(--lhr-font-sans, 'Hanken Grotesk', sans-serif);
	font-size: 10.5px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	font-variant-numeric: tabular-nums;
	color: var(--lhr-gold, #a9885a);
}

.lhr-fh-offer__body {
	display: block;
	min-width: 0;
}

.lhr-fh-offer .lhr-fh-offer__title {
	margin: 0 0 6px;
	font-family: var(--lhr-font-serif, 'Playfair Display', serif);
	font-size: 21px;
	font-weight: 500;
	line-height: 1.25;
	color: var(--lhr-ink, #22201c);
}

.lhr-fh-offer__desc {
	display: block;
	font-size: 14.5px;
	line-height: 1.7;
	color: var(--lhr-ink-soft, #6e675c);
}

/* ------------------------------------------------------------------
 * 5. CTA band (page-owned; global Blackbook band is opted out)
 * ---------------------------------------------------------------- */

.lhr-fh-cta {
	margin-top: calc(var(--lhr-section, 96px) / 2);
	background:
		radial-gradient(900px 420px at 50% 110%, rgba(169, 136, 90, 0.18), transparent 60%),
		var(--lhr-dark, #191713);
	color: #fff;
	padding-block: clamp(56px, 7vw, 96px);
}

.lhr-fh-cta__inner {
	max-width: 720px;
	text-align: center;
}

.lhr-fh-cta .lhr-fh-cta__title {
	margin: 0;
	font-family: var(--lhr-font-serif, 'Playfair Display', serif);
	font-size: clamp(30px, 3.6vw, 44px);
	font-weight: 500;
	line-height: 1.12;
	letter-spacing: -0.01em;
	color: var(--lhr-cream, #f7f4ee);
}

.lhr-fh-cta__sub {
	margin: 18px auto 0;
	max-width: 480px;
	font-size: 15.5px;
	line-height: 1.75;
	color: rgba(255, 255, 255, 0.62);
}

.lhr-fh-cta__actions {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 18px 32px;
	margin-top: 36px;
}

.lhr-fh-cta__alt {
	font-family: var(--lhr-font-sans, 'Hanken Grotesk', sans-serif);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	text-decoration: none;
	color: rgba(255, 255, 255, 0.72);
	transition: color 200ms var(--lhr-ease, ease);
}

.lhr-fh-cta__alt:hover,
.lhr-fh-cta__alt:focus-visible {
	color: var(--lhr-gold-soft, #cbb48d);
}

/* The address itself, spelled out — survives print + screenshots. */
.lhr-fh-cta__email {
	margin: 30px 0 0;
	font-family: var(--lhr-font-sans, 'Hanken Grotesk', sans-serif);
	font-size: 10.5px;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.38);
}

/* ------------------------------------------------------------------
 * 6. Responsive
 * ---------------------------------------------------------------- */

@media (max-width: 1023px) {
	.lhr-fh-roster__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.lhr-fh-offers__grid {
		grid-template-columns: 1fr;
	}

	.lhr-fh-offers__note {
		max-width: 560px;
	}
}

@media (max-width: 690px) {
	.lhr-fh-stats {
		gap: 24px 36px;
	}

	.lhr-fh-roster__grid {
		grid-template-columns: 1fr;
		max-width: 480px;
	}

	.lhr-fh-offer {
		grid-template-columns: 1fr;
		gap: 6px;
	}

	.lhr-fh-offer__label {
		padding-top: 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	.lhr-fh-cta__alt,
	.lhr-fh-roster-empty__link {
		transition: none;
	}
}

/* ------------------------------------------------------------------
 * 7. Print — the page doubles as a shareable one-pager. Site chrome
 *    disappears; dark bands flatten to ink-on-white with gold accents.
 *    Scoped to this template's body class only.
 * ---------------------------------------------------------------- */

@media print {
	body.page-template-template-for-hotels #m-header,
	body.page-template-template-for-hotels #m-footer,
	body.page-template-template-for-hotels .lhr-blackbook-band,
	body.page-template-template-for-hotels .lhr-fh-hero__img,
	body.page-template-template-for-hotels .lhr-fh-hero__scrim,
	body.page-template-template-for-hotels .lhr-fh-band {
		display: none !important;
	}

	body.page-template-template-for-hotels .lhr-fh-hero,
	body.page-template-template-for-hotels .lhr-fh-cta {
		background: #fff !important;
		color: #22201c !important;
		padding-block: 24px;
	}

	body.page-template-template-for-hotels .lhr-fh-hero .lhr-fh-hero__title,
	body.page-template-template-for-hotels .lhr-fh-cta .lhr-fh-cta__title,
	body.page-template-template-for-hotels .lhr-fh-stats__num {
		color: #22201c !important;
	}

	body.page-template-template-for-hotels .lhr-fh-hero__dek,
	body.page-template-template-for-hotels .lhr-fh-cta__sub,
	body.page-template-template-for-hotels .lhr-fh-stats__label,
	body.page-template-template-for-hotels .lhr-fh-cta__alt,
	body.page-template-template-for-hotels .lhr-fh-cta__email {
		color: #6e675c !important;
	}

	body.page-template-template-for-hotels .lhr-fh-stats {
		border-top-color: #e5dfd2;
	}

	body.page-template-template-for-hotels .lhr-section {
		padding-block: 20px;
	}

	body.page-template-template-for-hotels .lhr-fh-roster {
		padding-top: 24px;
	}

	body.page-template-template-for-hotels .lhr-fh-creator,
	body.page-template-template-for-hotels .lhr-fh-roster-empty,
	body.page-template-template-for-hotels .lhr-fh-offer,
	body.page-template-template-for-hotels .lhr-fh-cta {
		break-inside: avoid;
	}
}
