/* ------------------------------------------------------------------
   JL Hockey — Front-end styles (v1.2)
   - Anton display font
   - Full-bleed sections, zero inter-section gap
   - Cinematic hero with rink image fading into navy
   - Hover, animations, accessible
------------------------------------------------------------------ */

:root {
	--jlh-radius-lg: 22px;
	--jlh-shadow-soft: 0 10px 30px -10px rgba(13, 27, 42, 0.18);
	--jlh-shadow-deep: 0 30px 60px -20px rgba(13, 27, 42, 0.35);
	--jlh-transition: 240ms cubic-bezier(0.2, 0.7, 0.2, 1);
	--jlh-navy: #0d1b2a;
	--jlh-navy-deep: #0b1220;
}

html {
	scroll-behavior: smooth;
	overflow-x: clip;
}

body {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
	overflow-x: clip;
}

/* Anton has only weight 400 — give all heading elements a clean baseline */
h1, h2, h3, .jlh-hero-title {
	font-weight: 400 !important;
}

a {
	transition: color var(--jlh-transition), opacity var(--jlh-transition);
}

/* ===== KILL WORDPRESS' DEFAULT INTER-SECTION GAP ==================== */
/* Each section is a full-bleed pattern; we don't want the default
   ~1.25rem margin-block-start between them. */
.jlh-main > *,
.jlh-main > .alignfull,
.jlh-main > .wp-block-group,
.jlh-main > .wp-block-template-part {
	margin-block-start: 0 !important;
	margin-block-end: 0 !important;
}

/* Reset margin between top-level sections in post-content too (sub-pages) */
.wp-block-post-content > *,
.wp-block-post-content > .alignfull {
	margin-block-start: 0 !important;
	margin-block-end: 0 !important;
}

/* ===== WP BUTTON HOVER ============================================= */
.wp-block-button__link {
	transition: transform var(--jlh-transition), background-color var(--jlh-transition), color var(--jlh-transition), box-shadow var(--jlh-transition);
}

.wp-block-button__link:hover {
	transform: translateY(-1px);
	box-shadow: 0 14px 30px -12px rgba(230, 57, 70, 0.45);
}

.wp-block-button.is-style-outline > .wp-block-button__link {
	background: transparent;
}

.wp-block-button.is-style-outline > .wp-block-button__link:hover {
	background: rgba(255, 255, 255, 0.08);
	box-shadow: none;
}

/* ===== HEADER ====================================================== */
.jlh-header {
	position: sticky;
	top: 0;
	z-index: 50;
	backdrop-filter: saturate(140%) blur(8px);
	background: rgba(13, 27, 42, 0.92) !important;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.jlh-header .wp-block-site-title a {
	color: #fff;
	text-decoration: none;
}

.jlh-logo-mark {
	display: inline-flex;
	width: 36px;
	height: 36px;
	margin-right: 0.65rem;
	transition: transform var(--jlh-transition);
}

.jlh-logo-mark:hover { transform: rotate(-6deg); }

.jlh-header .wp-block-navigation a {
	color: #e8eef6 !important;
	opacity: 0.85;
}

.jlh-header .wp-block-navigation a:hover,
.jlh-header .wp-block-navigation .current-menu-item > a {
	opacity: 1;
	color: #fff !important;
}

.jlh-cta-btn .wp-block-button__link {
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1), 0 10px 25px -10px rgba(230, 57, 70, 0.6);
}

/* ===== MOBILE NAV — HOCKEY PUCK TOGGLE ============================ */
.jlh-header .wp-block-navigation__responsive-container-open {
	position: relative;
	width: 56px;
	height: 56px;
	padding: 0;
	border-radius: 50%;
	background:
		radial-gradient(ellipse 80% 70% at 50% 35%, #2a3a52 0%, #14202f 55%, #0a121d 100%);
	box-shadow:
		0 0 0 2px rgba(255, 255, 255, 0.06),
		0 8px 20px -6px rgba(0, 0, 0, 0.55),
		inset 0 -3px 0 rgba(0, 0, 0, 0.45),
		inset 0 2px 0 rgba(255, 255, 255, 0.08);
	color: transparent !important;
	font-size: 0;
	transition: transform var(--jlh-transition), box-shadow var(--jlh-transition);
}

.jlh-header .wp-block-navigation__responsive-container-open:hover {
	transform: rotate(-12deg) scale(1.04);
	box-shadow:
		0 0 0 2px rgba(29, 111, 224, 0.55),
		0 12px 26px -6px rgba(0, 0, 0, 0.6),
		inset 0 -3px 0 rgba(0, 0, 0, 0.45),
		inset 0 2px 0 rgba(255, 255, 255, 0.12);
}

/* Hide the default hamburger SVG */
.jlh-header .wp-block-navigation__responsive-container-open svg {
	display: none;
}

/* Puck face — JL monogram + ring */
.jlh-header .wp-block-navigation__responsive-container-open::before {
	content: "JL";
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--wp--preset--font-family--display);
	font-size: 1.05rem;
	letter-spacing: 0.08em;
	color: #e63946;
	text-shadow: 0 1px 0 rgba(0, 0, 0, 0.6);
}

/* Subtle "puck stripe" highlight */
.jlh-header .wp-block-navigation__responsive-container-open::after {
	content: "";
	position: absolute;
	left: 14%;
	right: 14%;
	top: 50%;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
	pointer-events: none;
}

/* Close button on overlay */
.jlh-header .wp-block-navigation__responsive-container-close {
	position: absolute;
	top: 1.25rem;
	right: 1.25rem;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	z-index: 2;
}

.jlh-header .wp-block-navigation__responsive-container-close:hover {
	background: rgba(230, 57, 70, 0.25);
}

.jlh-header .wp-block-navigation__responsive-container-close svg {
	width: 22px;
	height: 22px;
}

/* Mobile overlay container — full-screen on top of everything */
.jlh-header .wp-block-navigation__responsive-container.is-menu-open {
	position: fixed !important;
	inset: 0 !important;
	width: 100vw !important;
	height: 100vh !important;
	height: 100dvh !important;
	max-width: 100vw !important;
	max-height: 100vh !important;
	max-height: 100dvh !important;
	margin: 0 !important;
	padding: 5.5rem 1.75rem 2.5rem !important;
	background-color: var(--jlh-navy) !important;
	background-image:
		radial-gradient(60% 50% at 50% -10%, rgba(29, 111, 224, 0.25), transparent 70%),
		radial-gradient(45% 35% at 100% 110%, rgba(230, 57, 70, 0.18), transparent 70%);
	display: flex !important;
	flex-direction: column;
	z-index: 100000 !important;
	overflow-y: auto;
	overscroll-behavior: contain;
	animation: jlh-overlay-in 240ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

@keyframes jlh-overlay-in {
	from { opacity: 0; transform: translateY(-8px); }
	to { opacity: 1; transform: translateY(0); }
}

.jlh-header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-close,
.jlh-header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-dialog,
.jlh-header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content {
	display: flex !important;
	flex-direction: column !important;
	flex: 1;
	width: 100% !important;
	max-width: 100% !important;
	margin: 0 !important;
	align-items: stretch !important;
	justify-content: flex-start !important;
	text-align: left !important;
}

.jlh-header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container,
.jlh-header .wp-block-navigation__responsive-container.is-menu-open ul.wp-block-navigation__container {
	display: flex !important;
	flex-direction: column !important;
	justify-content: flex-start !important;
	align-items: stretch !important;
	gap: 0.25rem;
	width: 100%;
	margin: 1.25rem 0 0;
	padding: 0;
	list-style: none;
	text-align: left;
}

.jlh-header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item {
	width: 100%;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	justify-content: flex-start !important;
	text-align: left;
}

.jlh-header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content {
	display: flex;
	justify-content: flex-start !important;
	width: 100%;
	font-family: var(--wp--preset--font-family--display) !important;
	font-size: 1.75rem !important;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 1rem 0;
	color: #fff !important;
	opacity: 1 !important;
	text-align: left;
}

.jlh-header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content:hover {
	color: var(--wp--preset--color--accent) !important;
}

body.has-modal-open,
html.has-modal-open {
	overflow: hidden !important;
}

/* ===== HERO — CINEMATIC, FULL-BLEED ================================ */
.jlh-hero {
	position: relative;
	overflow: hidden;
	background: var(--jlh-navy);
	min-height: 78vh;
	display: flex;
	align-items: center;
}

/* The rink image sits absolutely on the right, starting just past the text,
   and intentionally overflows the right edge of the viewport. */
.jlh-hero__rink {
	position: absolute;
	top: 50%;
	left: 48%;
	transform: translateY(-50%);
	width: 78vw;
	max-width: 1500px;
	height: 105%;
	pointer-events: none;
	z-index: 0;
}

.jlh-hero__rink::before {
	/* Soft fade from navy on the LEFT edge of the image so it blends with text */
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg,
		var(--jlh-navy) 0%,
		rgba(13, 27, 42, 0.92) 6%,
		rgba(13, 27, 42, 0.45) 18%,
		rgba(13, 27, 42, 0.05) 32%,
		rgba(13, 27, 42, 0) 60%);
	z-index: 1;
}

.jlh-hero__rink::after {
	/* Small bottom & top vignette to keep things cinematic */
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg,
		rgba(13, 27, 42, 0.35) 0%,
		rgba(13, 27, 42, 0) 25%,
		rgba(13, 27, 42, 0) 75%,
		rgba(13, 27, 42, 0.45) 100%);
	z-index: 1;
}

.jlh-hero__rink-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: left center;
	display: block;
	filter: saturate(108%) contrast(106%) brightness(0.95);
	z-index: 0;
}

/* Optional subtle grid overlay across the whole hero */
.jlh-hero__grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(to right, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
		linear-gradient(to bottom, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
	background-size: 90px 90px;
	mask-image: radial-gradient(ellipse at 25% 50%, #000 25%, transparent 70%);
	-webkit-mask-image: radial-gradient(ellipse at 25% 50%, #000 25%, transparent 70%);
	z-index: 1;
	pointer-events: none;
}

/* Blue glow behind the text */
.jlh-hero__glow {
	position: absolute;
	left: -10%;
	top: -10%;
	width: 60%;
	height: 70%;
	background: radial-gradient(closest-side, rgba(29, 111, 224, 0.22), transparent 70%);
	z-index: 1;
	pointer-events: none;
	filter: blur(8px);
}

@media (max-width: 1000px) {
	.jlh-hero__rink {
		top: 0;
		left: 0;
		transform: none;
		width: 100%;
		height: 100%;
		max-width: none;
	}
	.jlh-hero__rink::before {
		background: linear-gradient(180deg,
			rgba(13, 27, 42, 0.55) 0%,
			rgba(13, 27, 42, 0.85) 50%,
			var(--jlh-navy) 100%);
	}
	.jlh-hero__rink-img {
		opacity: 0.45;
		object-position: center;
	}
	.jlh-hero__glow { display: none; }
}

.jlh-hero__content {
	position: relative;
	z-index: 1;
	width: 100%;
}

/* Hero column: left-anchored, never centered by WP layout helpers */
.jlh-hero__col {
	max-width: 620px;
	margin-left: 0 !important;
	margin-right: auto !important;
	text-align: left;
}

.jlh-hero__col > * {
	margin-left: 0 !important;
	margin-right: auto !important;
	max-width: 100%;
}

.jlh-hero__col .wp-block-buttons,
.jlh-hero__col .jlh-hero-meta,
.jlh-hero__col .jlh-pill {
	justify-content: flex-start;
}

.jlh-hero-title {
	font-size: clamp(2.5rem, 7vw, 5.5rem) !important;
	line-height: 0.95 !important;
	letter-spacing: 0 !important;
	margin: 1.25rem 0 1.5rem !important;
	color: #fff;
}

.jlh-hero-title .jlh-accent {
	color: var(--wp--preset--color--accent);
	background: linear-gradient(135deg, #ff5d6c 0%, #e63946 60%, #f4c430 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.jlh-hero-lead {
	font-size: clamp(0.95rem, 1.2vw, 1.1rem) !important;
	line-height: 1.6 !important;
	max-width: 580px;
}

.jlh-pill {
	display: inline-flex !important;
	align-items: center;
	gap: 0.6rem;
	padding: 0.4rem 0.85rem 0.4rem 0.5rem;
	background: rgba(29, 111, 224, 0.18);
	border: 1px solid rgba(29, 111, 224, 0.4);
	border-radius: 999px;
	width: max-content;
	margin-bottom: 0 !important;
}

.jlh-pill p { margin: 0 !important; }

.jlh-dot {
	display: inline-block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #34d399;
	box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.18);
	animation: jlh-pulse 2s ease-in-out infinite;
	flex-shrink: 0;
}

@keyframes jlh-pulse {
	0%, 100% { transform: scale(1); opacity: 1; }
	50%      { transform: scale(1.15); opacity: 0.75; }
}

.jlh-hero-cta { gap: 0.75rem !important; flex-wrap: wrap; }

.jlh-hero-meta {
	gap: 1.5rem !important;
	flex-wrap: wrap;
}

.jlh-hero-meta p { margin: 0 !important; }

/* ===== SECTION HEADINGS (shared) =================================== */
.jlh-section-eyebrow {
	font-family: var(--wp--preset--font-family--display);
	font-size: 0.9rem;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: var(--wp--preset--color--accent);
	margin: 0 0 0.5rem !important;
}

/* ===== STATS ======================================================= */
.jlh-stats {
	border-block: 1px solid rgba(13, 27, 42, 0.06);
}

.jlh-stat {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.4rem;
}

.jlh-stat__icon {
	display: inline-flex;
	width: 44px;
	height: 44px;
	color: var(--wp--preset--color--primary);
	background: rgba(29, 111, 224, 0.12);
	border-radius: 12px;
	align-items: center;
	justify-content: center;
	margin-bottom: 0.25rem;
}

.jlh-stat__icon svg { width: 24px; height: 24px; }

.jlh-stat-num {
	font-family: var(--wp--preset--font-family--display);
	font-weight: 400;
	font-size: clamp(2.5rem, 5vw, 4rem);
	line-height: 1;
	background: linear-gradient(135deg, var(--jlh-navy) 0%, #1d6fe0 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	margin: 0 !important;
}

.jlh-stat-label {
	font-size: 0.85rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--wp--preset--color--muted);
	margin: 0 !important;
	font-weight: 600;
}

/* ===== ABOUT ======================================================= */
.jlh-coach-card {
	position: relative;
	max-width: 360px;
	margin-inline: auto;
}

.jlh-coach-card__photo {
	border-radius: 28px;
	overflow: hidden;
	box-shadow: var(--jlh-shadow-deep);
	transform: rotate(-1.5deg);
	transition: transform var(--jlh-transition);
	aspect-ratio: 4 / 5;
	background: var(--jlh-navy);
}

.jlh-coach-card__photo:hover { transform: rotate(0); }

.jlh-coach-card__photo svg,
.jlh-coach-card__photo img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: center top;
}

.jlh-coach-card__badge {
	position: absolute;
	background: #fff;
	border-radius: 16px;
	padding: 0.7rem 1rem;
	box-shadow: var(--jlh-shadow-soft);
	display: flex;
	flex-direction: column;
	line-height: 1.1;
	bottom: 8%;
	left: -14px;
	border: 1px solid #eef2f7;
}

.jlh-coach-card__badge--alt {
	bottom: auto;
	left: auto;
	top: 8%;
	right: -14px;
}

.jlh-coach-card__badge-label {
	font-size: 0.7rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #5b6b80;
}

.jlh-coach-card__badge-value {
	font-family: var(--wp--preset--font-family--display);
	font-weight: 400;
	font-size: 1.25rem;
	color: #0d1b2a;
	letter-spacing: 0.02em;
}

.jlh-creds {
	list-style: none;
	padding: 0;
	margin: 1.25rem 0 1.75rem;
}

.jlh-creds li {
	padding: 0.4rem 0 0.4rem 1.75rem;
	position: relative;
	color: #1b263b;
}

.jlh-creds li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.85rem;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: radial-gradient(circle at 30% 30%, #1d6fe0 0 6px, transparent 7px), #e6f1fb;
	border: 1px solid #c7dbf2;
}

/* ===== ABOUT PAGE — BIO / HISTORIQUE ============================== */
.jlh-bio {
	background: #fff;
}

.jlh-bio__photo {
	margin: 0;
	border-radius: var(--jlh-radius-lg);
	overflow: hidden;
	box-shadow: var(--jlh-shadow-deep);
	background: var(--jlh-navy);
	position: relative;
}

.jlh-bio__photo img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
}

.jlh-bio__quote {
	margin: 1.5rem 0 0;
	padding: 1.25rem 1.5rem;
	border-left: 4px solid var(--wp--preset--color--accent);
	background: linear-gradient(135deg, rgba(29, 111, 224, 0.05), rgba(230, 57, 70, 0.04));
	border-radius: 0 var(--jlh-radius-lg) var(--jlh-radius-lg) 0;
}

.jlh-bio__quote p {
	font-size: 1.05rem;
	line-height: 1.6;
	color: #1b263b;
	font-style: italic;
	margin: 0 0 0.5rem;
}

.jlh-bio__quote cite {
	font-family: var(--wp--preset--font-family--display);
	font-style: normal;
	letter-spacing: 0.08em;
	color: var(--wp--preset--color--accent);
	font-size: 0.9rem;
}

.jlh-historique {
	border-top: 1px solid rgba(13, 27, 42, 0.06);
}

.jlh-historique p {
	color: #1b263b;
}

/* ===== ABOUT PAGE — MONTAGE VIDEO ================================= */
.jlh-montage {
	position: relative;
	overflow: hidden;
}

.jlh-montage::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(60% 60% at 20% 10%, rgba(29, 111, 224, 0.22), transparent 60%),
		radial-gradient(50% 50% at 90% 100%, rgba(230, 57, 70, 0.18), transparent 60%);
	pointer-events: none;
	z-index: 0;
}

.jlh-montage > * {
	position: relative;
	z-index: 1;
}

.jlh-montage .wp-block-buttons {
	margin-top: 2.5rem;
}

.jlh-video {
	max-width: 980px;
	margin: 1.75rem auto 0;
	border-radius: var(--jlh-radius-lg);
	overflow: hidden;
	background: #000;
	box-shadow:
		0 0 0 1px rgba(255, 255, 255, 0.05),
		0 30px 60px -25px rgba(0, 0, 0, 0.7),
		0 8px 20px -10px rgba(29, 111, 224, 0.35);
	transition: transform var(--jlh-transition), box-shadow var(--jlh-transition);
}

.jlh-video:hover {
	transform: translateY(-3px);
	box-shadow:
		0 0 0 1px rgba(255, 255, 255, 0.08),
		0 36px 70px -25px rgba(0, 0, 0, 0.8),
		0 10px 22px -10px rgba(29, 111, 224, 0.55);
}

.jlh-video__player {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
	background: #000;
	border-radius: var(--jlh-radius-lg);
}

/* ===== ABOUT PAGE — ELITE PROSPECTS LINK CARD ===================== */
.jlh-eliteprospects {
	margin: 1.75rem 0;
}

.jlh-eliteprospects a {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem 1.25rem;
	background: #fff;
	color: #0d1b2a;
	text-decoration: none !important;
	border: 1px solid rgba(13, 27, 42, 0.08);
	border-radius: var(--jlh-radius-lg);
	box-shadow: var(--jlh-shadow-soft);
	transition: transform var(--jlh-transition), box-shadow var(--jlh-transition), border-color var(--jlh-transition);
}

.jlh-eliteprospects a:hover,
.jlh-eliteprospects a:focus-visible {
	transform: translateY(-2px);
	border-color: rgba(29, 111, 224, 0.45);
	box-shadow: 0 18px 36px -18px rgba(29, 111, 224, 0.5);
}

.jlh-eliteprospects__icon {
	flex: 0 0 auto;
	width: 44px;
	height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: linear-gradient(135deg, rgba(29, 111, 224, 0.12), rgba(230, 57, 70, 0.12));
	color: #1d6fe0;
}

.jlh-eliteprospects__label {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.jlh-eliteprospects__eyebrow {
	font-family: var(--wp--preset--font-family--display);
	letter-spacing: 0.2em;
	text-transform: uppercase;
	font-size: 0.75rem;
	color: var(--wp--preset--color--accent);
}

.jlh-eliteprospects__title {
	font-weight: 600;
	font-size: 1rem;
	color: #0d1b2a;
}

.jlh-eliteprospects__arrow {
	flex: 0 0 auto;
	font-size: 1.25rem;
	color: #1d6fe0;
	transition: transform var(--jlh-transition);
}

.jlh-eliteprospects a:hover .jlh-eliteprospects__arrow {
	transform: translate(3px, -3px);
}

/* ===== ABOUT PAGE — JL HOCKEY & PROCESSUS ========================= */
.jlh-processus {
	position: relative;
	overflow: hidden;
}

.jlh-processus::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(55% 60% at 0% 0%, rgba(29, 111, 224, 0.22), transparent 65%),
		radial-gradient(55% 60% at 100% 100%, rgba(230, 57, 70, 0.18), transparent 65%);
	pointer-events: none;
	z-index: 0;
}

.jlh-processus > * {
	position: relative;
	z-index: 1;
}

.jlh-processus__word {
	background: linear-gradient(135deg, #f4c430 0%, #e63946 50%, #1d6fe0 100%);
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
	-webkit-text-fill-color: transparent;
	letter-spacing: 0.04em;
}

.jlh-processus .wp-block-buttons {
	margin-top: 2rem;
	gap: 0.85rem !important;
	flex-wrap: wrap;
}

.jlh-processus .wp-block-button.is-style-outline .wp-block-button__link {
	background: transparent !important;
	color: #fff !important;
}

.jlh-processus .wp-block-button.is-style-outline .wp-block-button__link:hover {
	background: rgba(255, 255, 255, 0.08) !important;
	border-color: #ffffff66 !important;
}

/* ===== PROCESSUS PAGE ============================================== */
.jlh-processus-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 380px));
	gap: 1.25rem;
	justify-content: center;
	margin: 2.25rem auto 0;
	max-width: 1180px;
}

.jlh-processus-card {
	position: relative;
	background: #fff;
	border: 1px solid rgba(13, 27, 42, 0.07);
	border-radius: var(--jlh-radius-lg);
	padding: 2rem 1.5rem 1.5rem;
	box-shadow: var(--jlh-shadow-soft);
	transition: transform var(--jlh-transition), box-shadow var(--jlh-transition), border-color var(--jlh-transition);
	overflow: hidden;
}

.jlh-processus-card::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	background: linear-gradient(180deg, #1d6fe0 0%, #e63946 100%);
	transition: width var(--jlh-transition);
}

.jlh-processus-card:hover {
	transform: translateY(-4px);
	border-color: rgba(29, 111, 224, 0.25);
	box-shadow: 0 22px 44px -22px rgba(29, 111, 224, 0.35);
}

.jlh-processus-card:hover::before {
	width: 6px;
}

.jlh-processus-card__num {
	display: inline-block;
	font-family: var(--wp--preset--font-family--display);
	font-size: 2rem;
	line-height: 1;
	letter-spacing: 0.04em;
	color: transparent;
	background: linear-gradient(135deg, #f4c430 0%, #e63946 50%, #1d6fe0 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin: 0 0 0.85rem;
}

.jlh-processus-card__title {
	font-family: var(--wp--preset--font-family--display);
	font-size: 1.35rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #0d1b2a;
	margin: 0 0 0.65rem;
	line-height: 1.15;
}

.jlh-processus-card__desc {
	color: #1b263b;
	font-size: 1rem;
	line-height: 1.6;
	margin: 0;
}

.jlh-processus-outro {
	position: relative;
	overflow: hidden;
}

.jlh-processus-outro::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(50% 60% at 100% 0%, rgba(29, 111, 224, 0.22), transparent 65%),
		radial-gradient(50% 60% at 0% 100%, rgba(230, 57, 70, 0.18), transparent 65%);
	pointer-events: none;
	z-index: 0;
}

.jlh-processus-outro > * {
	position: relative;
	z-index: 1;
}

.jlh-processus-outro .wp-block-buttons {
	margin-top: 1.75rem;
	gap: 0.85rem !important;
	flex-wrap: wrap;
}

.jlh-processus-outro .wp-block-button.is-style-outline .wp-block-button__link {
	background: transparent !important;
	color: #fff !important;
}

.jlh-processus-outro .wp-block-button.is-style-outline .wp-block-button__link:hover {
	background: rgba(255, 255, 255, 0.08) !important;
	border-color: #ffffff66 !important;
}

/* ===== SERVICES PAGE — VENUES ===================================== */
.jlh-venues {
	width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	background: #fff;
}

.jlh-venue {
	background: #fff;
	border-bottom: 1px solid rgba(13, 27, 42, 0.06);
}

.jlh-venue--alt {
	background: var(--wp--preset--color--surface, #f4f6fa);
}

.jlh-venue__inner {
	max-width: 1240px;
	margin: 0 auto;
	padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.5rem, 3vw, 2.5rem);
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
	gap: clamp(1.5rem, 4vw, 3rem);
	align-items: start;
}

@media (max-width: 880px) {
	.jlh-venue__inner {
		grid-template-columns: 1fr;
	}
}

.jlh-venue__info {
	position: sticky;
	top: clamp(1.5rem, 6vw, 3rem);
}

@media (max-width: 880px) {
	.jlh-venue__info { position: static; }
}

.jlh-venue__tag {
	display: inline-block;
	font-family: var(--wp--preset--font-family--display);
	font-size: 0.75rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--wp--preset--color--accent);
	padding: 0.35rem 0.75rem;
	border-radius: 999px;
	background: rgba(230, 57, 70, 0.08);
	border: 1px solid rgba(230, 57, 70, 0.18);
	margin-bottom: 1rem;
}

.jlh-venue__name {
	font-family: var(--wp--preset--font-family--display);
	font-size: clamp(1.6rem, 2.6vw, 2.2rem);
	letter-spacing: 0.02em;
	color: #0d1b2a;
	margin: 0 0 0.35rem;
	line-height: 1.1;
}

.jlh-venue__city {
	font-family: var(--wp--preset--font-family--display);
	font-size: 0.95rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #5a6b80;
	margin: 0 0 1rem;
}

.jlh-venue__address {
	display: inline-flex;
	align-items: flex-start;
	gap: 0.6rem;
	color: #0d1b2a;
	text-decoration: none !important;
	border-bottom: 1px dashed rgba(29, 111, 224, 0.4);
	padding-bottom: 0.15rem;
	font-size: 0.95rem;
	line-height: 1.4;
	transition: color var(--jlh-transition), border-color var(--jlh-transition);
}

.jlh-venue__address svg {
	flex: 0 0 18px;
	margin-top: 0.18rem;
	color: var(--wp--preset--color--accent);
}

.jlh-venue__address:hover,
.jlh-venue__address:focus-visible {
	color: #1d6fe0;
	border-bottom-color: #1d6fe0;
}

.jlh-venue__services {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
	gap: 1rem;
}

.jlh-service-pill {
	position: relative;
	background: #fff;
	border: 1px solid rgba(13, 27, 42, 0.08);
	border-radius: var(--jlh-radius-lg);
	padding: 1.5rem 1.5rem 1.25rem;
	box-shadow: var(--jlh-shadow-soft);
	display: flex;
	flex-direction: column;
	transition: transform var(--jlh-transition), box-shadow var(--jlh-transition), border-color var(--jlh-transition);
	overflow: hidden;
}

.jlh-venue--alt .jlh-service-pill {
	background: #fff;
}

.jlh-service-pill::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 3px;
	background: linear-gradient(180deg, #1d6fe0 0%, #e63946 100%);
	opacity: 0.5;
	transition: opacity var(--jlh-transition), width var(--jlh-transition);
}

.jlh-service-pill:hover {
	transform: translateY(-3px);
	border-color: rgba(29, 111, 224, 0.25);
	box-shadow: 0 22px 44px -22px rgba(29, 111, 224, 0.35);
}

.jlh-service-pill:hover::before {
	opacity: 1;
	width: 5px;
}

.jlh-service-pill--featured {
	border-color: rgba(29, 111, 224, 0.3);
	box-shadow: 0 0 0 1px rgba(29, 111, 224, 0.12), 0 25px 50px -25px rgba(29, 111, 224, 0.4);
}

.jlh-service-pill--featured::before {
	opacity: 1;
	width: 5px;
}

.jlh-service-pill__badge {
	position: absolute;
	top: 0.85rem;
	right: 0.85rem;
	font-family: var(--wp--preset--font-family--display);
	font-size: 0.7rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	padding: 0.3rem 0.65rem;
	border-radius: 999px;
	background: linear-gradient(135deg, #e63946 0%, #f4c430 100%);
	color: #fff;
	box-shadow: 0 8px 16px -8px rgba(230, 57, 70, 0.5);
}

.jlh-service-pill__head {
	margin-bottom: 0.85rem;
	padding-right: 4.5rem;
}

.jlh-service-pill__title {
	font-family: var(--wp--preset--font-family--display);
	font-size: 1.35rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #0d1b2a;
	margin: 0 0 0.25rem;
	line-height: 1.15;
}

.jlh-service-pill__sub {
	font-size: 0.92rem;
	color: var(--wp--preset--color--accent);
	margin: 0;
	font-weight: 600;
}

.jlh-service-pill__desc {
	color: #1b263b;
	font-size: 0.98rem;
	line-height: 1.55;
	margin: 0 0 1.25rem;
	flex: 1;
}

.jlh-service-pill__foot {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1rem;
	padding-top: 0.85rem;
	border-top: 1px solid rgba(13, 27, 42, 0.07);
	flex-wrap: wrap;
}

.jlh-service-pill__price {
	display: flex;
	flex-direction: column;
}

.jlh-service-pill__price-num {
	font-family: var(--wp--preset--font-family--display);
	font-size: 1.85rem;
	letter-spacing: 0.02em;
	color: #0d1b2a;
	line-height: 1;
}

.jlh-service-pill__price-note {
	font-size: 0.78rem;
	color: #5a6b80;
	letter-spacing: 0.02em;
	margin-top: 0.2rem;
}

.jlh-service-pill__meta {
	font-family: var(--wp--preset--font-family--display);
	font-size: 0.78rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #5a6b80;
	background: rgba(13, 27, 42, 0.05);
	padding: 0.4rem 0.7rem;
	border-radius: 999px;
}

.jlh-service-pill__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.55rem;
	margin-top: 1.1rem;
	padding: 0.85rem 1.4rem;
	background: var(--wp--preset--color--accent, #e63946);
	color: #fff !important;
	text-decoration: none !important;
	border-radius: 999px;
	font-family: var(--wp--preset--font-family--condensed);
	font-weight: 700;
	font-size: 0.95rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	box-shadow: 0 12px 24px -12px rgba(230, 57, 70, 0.55);
	transition: transform var(--jlh-transition), box-shadow var(--jlh-transition), background-color var(--jlh-transition);
	align-self: stretch;
}

.jlh-service-pill__cta svg {
	transition: transform var(--jlh-transition);
}

.jlh-service-pill__cta:hover,
.jlh-service-pill__cta:focus-visible {
	background: #0d1b2a;
	box-shadow: 0 18px 30px -14px rgba(13, 27, 42, 0.55);
	transform: translateY(-2px);
}

.jlh-service-pill__cta:hover svg,
.jlh-service-pill__cta:focus-visible svg {
	transform: translateX(3px);
}

.jlh-service-pill--featured .jlh-service-pill__cta {
	background: linear-gradient(135deg, #e63946 0%, #1d6fe0 100%);
}

.jlh-service-pill--featured .jlh-service-pill__cta:hover,
.jlh-service-pill--featured .jlh-service-pill__cta:focus-visible {
	background: linear-gradient(135deg, #d0303c 0%, #0d1b2a 100%);
}

@media (max-width: 781px) {
	.jlh-bio__photo {
		max-width: 460px;
		margin: 0 auto 1.5rem;
	}
}

/* ===== SERVICES ==================================================== */
.jlh-services .wp-block-group.is-layout-grid {
	justify-content: center;
}

.jlh-service-card {
	transition: transform var(--jlh-transition), box-shadow var(--jlh-transition), border-color var(--jlh-transition);
	position: relative;
	overflow: hidden;
}

.jlh-service-card:hover {
	transform: translateY(-3px);
	border-color: #c7dbf2 !important;
	box-shadow: var(--jlh-shadow-soft);
}

.jlh-service-card__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.jlh-service-card__icon {
	display: inline-flex;
	width: 56px;
	height: 56px;
	border-radius: 16px;
	background: var(--wp--preset--color--ice);
	align-items: center;
	justify-content: center;
}

.jlh-service-card__icon svg { width: 30px; height: 30px; }

.jlh-service-card__tag {
	font-family: var(--wp--preset--font-family--display);
	font-weight: 400;
	letter-spacing: 0.14em;
	font-size: 0.85rem;
	color: #1d6fe0;
	background: rgba(29, 111, 224, 0.08);
	border: 1px solid rgba(29, 111, 224, 0.2);
	border-radius: 999px;
	padding: 0.3rem 0.7rem;
	text-transform: uppercase;
}

.jlh-service-card__link a {
	text-decoration: none;
	color: #0d1b2a !important;
	border-bottom: 2px solid #e63946;
	padding-bottom: 1px;
}

.jlh-service-card__link a:hover { color: #e63946 !important; }

/* ===== PILLARS ===================================================== */
.jlh-pillar {
	transition: border-color var(--jlh-transition), transform var(--jlh-transition);
	background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
}

.jlh-pillar:hover {
	border-color: #1d6fe0 !important;
	transform: translateY(-3px);
}

.jlh-pillar-num { font-weight: 400; }

/* ===== TESTIMONIALS / PRICING GRIDS — CENTERED ===================== */
/* WP renders these grids with `auto-fill, minmax(... , 1fr)`, which means the
   tracks always stretch to fill the row, so `justify-content: center` has no
   visible effect. We swap to `auto-fit` with a capped max-width per track so
   the tracks size naturally and any leftover row space is centered. */
.jlh-testimonials .wp-block-group.is-layout-grid {
	grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 400px)) !important;
	justify-content: center !important;
}

.jlh-pricing .wp-block-group.is-layout-grid {
	grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 380px)) !important;
	justify-content: center !important;
}

.jlh-testimonial,
.jlh-plan {
	background: #fff;
	transition: transform var(--jlh-transition), box-shadow var(--jlh-transition);
}

.jlh-testimonial:hover,
.jlh-plan:hover {
	transform: translateY(-3px);
	box-shadow: var(--jlh-shadow-soft);
}

.jlh-testimonial-foot {
	gap: 0.75rem !important;
	align-items: center;
	margin-top: 1.25rem;
}

.jlh-avatar {
	width: 44px;
	height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	color: #fff;
	font-family: var(--wp--preset--font-family--display);
	font-weight: 400;
	letter-spacing: 0.06em;
}

.jlh-plan--featured {
	box-shadow: 0 0 0 1px rgba(29, 111, 224, 0.15), 0 25px 50px -25px rgba(29, 111, 224, 0.45);
}

.jlh-plan__badge {
	position: absolute;
	top: -14px;
	left: 50%;
	transform: translateX(-50%);
	background: linear-gradient(135deg, #e63946 0%, #f4c430 100%);
	color: #fff;
	font-family: var(--wp--preset--font-family--display);
	font-weight: 400;
	letter-spacing: 0.14em;
	font-size: 0.85rem;
	padding: 0.35rem 0.9rem;
	border-radius: 999px;
	text-transform: uppercase;
	box-shadow: 0 8px 20px -8px rgba(230, 57, 70, 0.6);
}

.jlh-plan-list {
	list-style: none;
	padding: 0;
	margin: 0 0 1.5rem;
}
.jlh-plan-list li {
	position: relative;
	padding: 0.4rem 0 0.4rem 1.5rem;
	color: #1b263b;
}
.jlh-plan-list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 0.4rem;
	width: 18px;
	height: 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #1d6fe0;
	font-weight: 700;
}

/* ===== CTA ========================================================= */
.jlh-cta {
	position: relative;
	overflow: hidden;
}

.jlh-cta::after {
	content: "";
	position: absolute;
	right: -100px;
	top: -100px;
	width: 320px;
	height: 320px;
	background: radial-gradient(circle, rgba(244, 196, 48, 0.35) 0%, rgba(244, 196, 48, 0) 70%);
	pointer-events: none;
}

/* ===== CONTACT FORM — REBUILT ===================================== */
.jlh-form {
	box-shadow: var(--jlh-shadow-soft);
}

.jlh-form-grid {
	display: grid;
	gap: 1.1rem;
	margin: 0;
}

.jlh-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.1rem;
}

@media (max-width: 600px) {
	.jlh-form-row { grid-template-columns: 1fr; }
}

.jlh-form-grid label {
	display: grid;
	gap: 0.4rem;
	font-size: 0.78rem;
	font-weight: 700;
	color: #1b263b;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin: 0;
}

.jlh-form-grid label > span {
	display: block;
	color: #5b6b80;
}

.jlh-form-grid input,
.jlh-form-grid select,
.jlh-form-grid textarea {
	font: inherit;
	font-size: 1rem;
	font-weight: 400;
	letter-spacing: 0;
	text-transform: none;
	color: #0d1b2a;
	padding: 0.9rem 1.05rem;
	border: 1px solid #d8dee8;
	border-radius: 12px;
	background: #fdfefe;
	width: 100%;
	box-sizing: border-box;
	transition: border-color var(--jlh-transition), box-shadow var(--jlh-transition);
	appearance: none;
	-webkit-appearance: none;
	font-family: var(--wp--preset--font-family--body);
}

.jlh-form-grid select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231b263b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 1rem center;
	padding-right: 2.5rem;
}

.jlh-form-grid textarea {
	resize: vertical;
	min-height: 110px;
	font-family: var(--wp--preset--font-family--body);
}

.jlh-form-grid input:focus,
.jlh-form-grid select:focus,
.jlh-form-grid textarea:focus {
	outline: none;
	border-color: #1d6fe0;
	box-shadow: 0 0 0 4px rgba(29, 111, 224, 0.15);
}

.jlh-form-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	background: var(--wp--preset--color--accent);
	color: #fff;
	font-family: var(--wp--preset--font-family--display);
	font-weight: 400;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	font-size: 1.05rem;
	padding: 1rem 1.75rem;
	border-radius: 999px;
	cursor: pointer;
	transition: background var(--jlh-transition), transform var(--jlh-transition), box-shadow var(--jlh-transition);
	margin-top: 0.25rem;
	box-shadow: 0 10px 25px -12px rgba(230, 57, 70, 0.6);
	width: max-content;
}

.jlh-form-submit:hover {
	background: var(--jlh-navy);
	transform: translateY(-1px);
	box-shadow: 0 14px 30px -12px rgba(13, 27, 42, 0.45);
}

.jlh-form-success {
	background: #e7f7ef;
	border: 1px solid #b3e5c7;
	color: #1f6e3c;
	padding: 0.85rem 1rem;
	border-radius: 12px;
	font-size: 0.95rem;
	margin: 0;
}

.jlh-form-fallback {
	font-size: 0.9rem;
	color: #5b6b80;
	margin: 0.5rem 0 0;
}

/* ===== POST CARDS / FOOTER ========================================= */
.jlh-post-card {
	transition: transform var(--jlh-transition), box-shadow var(--jlh-transition), border-color var(--jlh-transition);
	background: #fff;
}

.jlh-post-card:hover {
	transform: translateY(-3px);
	border-color: #c7dbf2 !important;
	box-shadow: var(--jlh-shadow-soft);
}

.jlh-footer .wp-block-site-title a {
	color: #fff;
	text-decoration: none;
}

.jlh-footer-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.jlh-footer-list li {
	padding: 0.3rem 0;
}

.jlh-footer-list a,
.jlh-footer a {
	color: #d3dbe7;
	text-decoration: none;
	font-size: 0.95rem;
}

.jlh-footer-list a:hover,
.jlh-footer a:hover { color: #fff; }

/* ===== PAGE HERO =================================================== */
.jlh-page-hero {
	position: relative;
	overflow: hidden;
}

.jlh-page-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(600px 300px at 80% 0%, rgba(29, 111, 224, 0.25), transparent 70%);
	pointer-events: none;
}

.jlh-page-hero > * { position: relative; z-index: 1; }

/* ===== UTILITIES =================================================== */
.jlh-reveal {
	opacity: 0;
	transform: translateY(16px);
	transition: opacity 600ms ease, transform 600ms ease;
}

.jlh-reveal.is-visible {
	opacity: 1;
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	* { animation: none !important; transition: none !important; }
	.jlh-reveal { opacity: 1; transform: none; }
}

/* ===== MOBILE ====================================================== */
@media (max-width: 781px) {
	.jlh-header .wp-block-buttons { display: none; }
	.jlh-coach-card__badge { display: none; }
	.jlh-hero { min-height: 64vh; }
	.jlh-hero-title { font-size: clamp(2rem, 9vw, 3.25rem) !important; }
}
