/* =================================================================
 * BHH Holiday — public site styles.
 * Brand tokens are sourced from DESIGN.md.
 *   Primary:  charcoal #2B2A29 (matches JINDAL serif wordmark)
 *   Surfaces: white / offwhite / cream #F5EFE6 / stone-soft #EFE9DD
 *   Type:     DM Serif Display (display) / Plus Jakarta Sans (body)
 *             / JetBrains Mono (eyebrow caps).
 * ================================================================= */

:root {
	--jp-charcoal:      #2B2A29;
	--jp-charcoal-dark: #1A1918;
	--jp-white:         #FFFFFF;
	--jp-offwhite:      #FAFAFA;
	--jp-light:         #F1F1F1;
	--jp-cream:         #F5EFE6;
	--jp-stone-soft:    #EFE9DD;
	--jp-body:          #333333;
	--jp-hairline:      #E8E2D6;
	--jp-hairline-strong: #D9D9DD;
	--jp-blue:          #00A4E3;
	--jp-magenta:       #E5097F;
	--jp-orange:        #EA4F1B;
	--jp-yellow:        #F8B709;

	--jp-font-display:  'DM Serif Display', Georgia, 'Times New Roman', serif;
	--jp-font-body:     'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	--jp-font-mono:     'JetBrains Mono', ui-monospace, 'SFMono-Regular', Menlo, Consolas, monospace;

	--jp-radius-sm:    8px;
	--jp-radius-md:    12px;
	--jp-radius-lg:    16px;
	--jp-radius-xl:    22px;
	--jp-radius-2xl:   28px;
	--jp-radius-pill:  9999px;

	--jp-container:    1360px;
	--jp-section-y:    80px;
}

/* ===== Reset / base ===== */

*, *::before, *::after { box-sizing: border-box; }

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	font-family: var(--jp-font-body);
	color: var(--jp-body);
	background: var(--jp-white);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-size: 16px;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
#wpadminbar img, #wpadminbar svg { display: inline-block; max-width: none; height: auto; vertical-align: middle; }

a {
	color: var(--jp-charcoal);
	text-decoration: none;
	transition: color .15s ease;
}
a:hover { color: var(--jp-blue); }

h1, h2, h3, h4 {
	font-family: var(--jp-font-display);
	color: var(--jp-charcoal);
	margin: 0 0 .6em;
	line-height: 1.1;
	letter-spacing: -.01em;
	font-weight: 400;
}
h1 { font-size: clamp(2.4rem, 4.5vw, 3.6rem); }
h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.4rem, 2vw, 1.8rem); }
h4 { font-size: 1.25rem; }

p { margin: 0 0 1em; }

/* ===== Layout helpers ===== */

.jp-container {
	width: 100%;
	max-width: var(--jp-container);
	margin: 0 auto;
	padding: 0 24px;
}
.jp-section { padding: var(--jp-section-y) 0; }
.jp-section--cream { background: var(--jp-cream); }
.jp-section--charcoal { background: var(--jp-charcoal); color: var(--jp-white); }
.jp-section--offwhite { background: var(--jp-offwhite); }

.jp-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--jp-font-mono);
	font-size: 12px;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--jp-charcoal);
	margin: 0 0 16px;
	font-weight: 500;
}
.jp-eyebrow::before {
	content: "";
	display: inline-block;
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: var(--jp-blue);
	box-shadow: 0 0 0 4px rgba(0, 164, 227, .15);
}
.jp-section--charcoal .jp-eyebrow { color: rgba(255,255,255,.85); }

.jp-section__head { max-width: 720px; margin: 0 0 48px; }
.jp-section__head h2 { margin: 0; }
.jp-section__head p { margin: 16px 0 0; color: var(--jp-body); font-size: 1.05rem; }
.jp-section--charcoal .jp-section__head p { color: rgba(255,255,255,.78); }

/* ===== Buttons ===== */

.jp-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 13px 26px;
	font-family: var(--jp-font-body);
	font-weight: 600;
	font-size: 14px;
	line-height: 1.2;
	border-radius: var(--jp-radius-pill);
	border: 1px solid transparent;
	cursor: pointer;
	transition: background .18s ease, color .18s ease, border-color .18s ease, transform .05s ease;
}
.jp-btn--primary { background: var(--jp-charcoal); color: var(--jp-white); }
.jp-btn--primary:hover { background: var(--jp-charcoal-dark); color: var(--jp-white); }
.jp-btn--secondary {
	background: var(--jp-white); color: var(--jp-charcoal);
	border-color: var(--jp-hairline-strong);
}
.jp-btn--secondary:hover { border-color: var(--jp-charcoal); color: var(--jp-charcoal); }
.jp-btn--ghost-light {
	background: transparent; color: var(--jp-white);
	border-color: rgba(255,255,255,.4);
}
.jp-btn--ghost-light:hover { background: rgba(255,255,255,.1); color: var(--jp-white); border-color: var(--jp-white); }
.jp-btn--white { background: var(--jp-white); color: var(--jp-charcoal); }
.jp-btn--white:hover { background: var(--jp-cream); color: var(--jp-charcoal); }
.jp-btn:active { transform: translateY(1px); }
.jp-btn svg { width: 16px; height: 16px; }

/* ===== Header ===== */

.jp-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255,255,255,.92);
	backdrop-filter: saturate(160%) blur(12px);
	-webkit-backdrop-filter: saturate(160%) blur(12px);
	border-bottom: 1px solid var(--jp-hairline);
}
.jp-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 14px 24px;
	max-width: var(--jp-container);
	margin: 0 auto;
}
.jp-header__brand {
	display: flex;
	align-items: center;
	gap: 12px;
	color: var(--jp-charcoal);
}
.jp-header__brand img { height: 44px; width: auto; }
.jp-header__nav {
	display: flex;
	align-items: center;
	gap: 22px;
}
.jp-header__nav-item { position: relative; }
.jp-header__nav-link {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 14px;
	font-weight: 500;
	color: var(--jp-charcoal);
	letter-spacing: .005em;
	padding: 8px 0;
}
.jp-header__nav-link:hover { color: var(--jp-blue); }
.jp-header__nav-link.current-menu-item,
.jp-header__nav .current_page_item > .jp-header__nav-link { color: var(--jp-blue); }
.jp-header__chev { transition: transform .2s ease; flex-shrink: 0; }
.jp-header__nav-item.has-children:hover .jp-header__chev { transform: rotate(180deg); color: var(--jp-blue); }

/* Mega menu — 3-column panel (intro + link list + feature card) */
.jp-mega {
	position: absolute;
	top: calc(100% + 6px);
	left: 50%;
	transform: translateX(-50%) translateY(-4px);
	width: min(1080px, calc(100vw - 48px));
	background: var(--jp-white);
	border: 1px solid var(--jp-hairline);
	border-radius: var(--jp-radius-lg);
	box-shadow: 0 22px 48px -16px rgba(20, 24, 28, .18), 0 6px 14px -4px rgba(20, 24, 28, .06);
	padding: 28px;
	opacity: 0;
	visibility: hidden;
	transition: opacity .18s ease, transform .18s ease, visibility 0s linear .18s;
	z-index: 60;
}
.jp-header__nav-item.has-children:hover .jp-mega,
.jp-header__nav-item.has-children:focus-within .jp-mega {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
	transition: opacity .18s ease, transform .18s ease, visibility 0s linear 0s;
}
.jp-mega__inner {
	display: grid;
	grid-template-columns: 1fr 1.2fr 1fr;
	gap: 28px;
	align-items: start;
}
.jp-mega__intro h4 {
	font-family: var(--jp-font-display);
	font-size: 1.4rem;
	color: var(--jp-charcoal);
	line-height: 1.15;
	margin: 14px 0 10px;
}
.jp-mega__intro p {
	font-size: 13.5px;
	line-height: 1.55;
	color: var(--jp-stone);
	margin: 0 0 14px;
}
.jp-mega__chip {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 5px 12px;
	font-family: var(--jp-font-mono);
	font-size: 11px;
	letter-spacing: .14em;
	text-transform: uppercase;
	background: var(--jp-cream);
	border: 1px solid var(--jp-hairline);
	border-radius: var(--jp-radius-pill);
	color: var(--jp-charcoal);
	font-weight: 600;
}
.jp-mega__chip::before {
	content: "";
	display: inline-block;
	width: 7px; height: 7px;
	border-radius: 999px;
	background: var(--jp-mint, #00d4a4);
	box-shadow: 0 0 0 3px rgba(0, 212, 164, .25);
	animation: jp-pulse 1.8s ease-in-out infinite;
}
@keyframes jp-pulse { 0%,100% { opacity: 1; } 50% { opacity: .55; } }
.jp-mega__list {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.jp-mega__item {
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding: 10px 12px;
	border-radius: var(--jp-radius-sm);
	color: var(--jp-charcoal);
	transition: background .15s ease;
}
.jp-mega__item:hover { background: var(--jp-cream); color: var(--jp-charcoal); }
.jp-mega__item strong {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	font-weight: 600;
	color: var(--jp-charcoal);
}
.jp-mega__item .jp-mega__arr {
	display: inline-flex;
	transition: transform .2s ease;
	color: var(--jp-stone);
}
.jp-mega__item:hover .jp-mega__arr { transform: translateX(3px); color: var(--jp-charcoal); }
.jp-mega__item span:not(.jp-mega__arr) {
	font-size: 12.5px;
	color: var(--jp-stone);
	font-weight: 400;
}
.jp-mega__feature {
	display: flex;
	flex-direction: column;
	border-radius: var(--jp-radius-md);
	overflow: hidden;
	border: 1px solid var(--jp-hairline);
	background: var(--jp-white);
	color: var(--jp-charcoal);
	transition: border-color .2s ease, transform .25s ease;
}
.jp-mega__feature:hover { border-color: var(--jp-charcoal); transform: translateY(-2px); color: var(--jp-charcoal); }
.jp-mega__feature-img {
	aspect-ratio: 16/10;
	background-size: cover;
	background-position: center;
}
.jp-mega__feature-content { padding: 14px 16px; }
.jp-mega__feature-content small {
	font-family: var(--jp-font-mono);
	font-size: 10.5px;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--jp-stone);
}
.jp-mega__feature-content h5 {
	font-family: var(--jp-font-display);
	font-size: 1.1rem;
	color: var(--jp-charcoal);
	line-height: 1.2;
	margin: 6px 0 4px;
}
.jp-mega__feature-content p { font-size: 12.5px; color: var(--jp-stone); margin: 0 0 6px; line-height: 1.45; }
.jp-mega__feature-content a { font-size: 13px; font-weight: 600; color: var(--jp-charcoal); }
.jp-mega__feature-content a:hover { color: var(--jp-blue); }

/* ===== Page banner / breadcrumbs / subnav / metrics / cat-grid / cta-strip ===== */

.jp-page-hero {
	position: relative;
	min-height: 460px;
	display: flex;
	align-items: flex-end;
	background: var(--jp-charcoal);
	color: var(--jp-white);
	overflow: hidden;
}
.jp-page-hero__bg {
	position: absolute; inset: 0;
	background-size: cover; background-position: center;
}
.jp-page-hero__overlay {
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(10,12,14,.40) 0%, rgba(10,12,14,.20) 50%, rgba(10,12,14,.85) 100%);
}
.jp-page-hero__content {
	position: relative; z-index: 2;
	width: 100%;
	max-width: var(--jp-container);
	margin: 0 auto;
	padding: 110px 24px 56px;
}
.jp-page-hero__content h1 {
	color: var(--jp-white);
	max-width: 880px;
	font-size: clamp(2.2rem, 4vw, 3.4rem);
	margin: 8px 0 12px;
}
.jp-page-hero__content p {
	color: rgba(255,255,255,.85);
	font-size: 1.05rem;
	line-height: 1.55;
	max-width: 640px;
	margin: 0;
}

.jp-breadcrumbs {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--jp-font-mono);
	font-size: 11px;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: rgba(255,255,255,.75);
	margin-bottom: 12px;
}
.jp-breadcrumbs a { color: rgba(255,255,255,.75); }
.jp-breadcrumbs a:hover { color: var(--jp-white); }
.jp-breadcrumbs__sep { opacity: .5; }

.jp-subnav {
	background: var(--jp-cream);
	border-top: 1px solid var(--jp-hairline);
	border-bottom: 1px solid var(--jp-hairline);
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}
.jp-subnav__inner {
	max-width: var(--jp-container);
	margin: 0 auto;
	padding: 14px 24px;
	display: flex;
	gap: 22px;
	white-space: nowrap;
}
.jp-subnav__inner a {
	font-size: 13.5px;
	font-weight: 500;
	color: var(--jp-stone);
	padding: 6px 0;
	border-bottom: 2px solid transparent;
	transition: color .15s ease, border-color .15s ease;
}
.jp-subnav__inner a:hover,
.jp-subnav__inner a.is-active {
	color: var(--jp-charcoal);
	border-bottom-color: var(--jp-charcoal);
}

.jp-metrics-head { max-width: 720px; margin: 0 0 36px; }
.jp-metrics-head h2 { margin: 0; }
.jp-metrics {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 16px;
}
.jp-metric {
	background: var(--jp-stone-soft);
	border-radius: var(--jp-radius-lg);
	padding: 24px 20px;
	text-align: left;
}
.jp-metric__value {
	font-family: var(--jp-font-display);
	font-size: clamp(1.6rem, 2.4vw, 2.2rem);
	color: var(--jp-charcoal);
	line-height: 1;
}
.jp-metric__label {
	font-family: var(--jp-font-mono);
	font-size: 11px;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--jp-stone);
	margin-top: 12px;
}
@media (max-width: 1024px) { .jp-metrics { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px)  { .jp-metrics { grid-template-columns: repeat(2, 1fr); } }

.jp-cat-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.jp-cat-card {
	position: relative;
	border-radius: var(--jp-radius-xl);
	overflow: hidden;
	aspect-ratio: 4/5;
	color: var(--jp-white);
	display: flex;
	align-items: flex-end;
	transition: transform .35s ease;
}
.jp-cat-card:hover { transform: translateY(-4px); color: var(--jp-white); }
.jp-cat-card__img {
	position: absolute; inset: 0;
	background-size: cover; background-position: center;
	transition: transform .8s ease;
}
.jp-cat-card:hover .jp-cat-card__img { transform: scale(1.06); }
.jp-cat-card__overlay {
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(10,12,14,.0) 30%, rgba(10,12,14,.85) 100%);
}
.jp-cat-card__content {
	position: relative; z-index: 2;
	padding: 28px;
}
.jp-cat-card__company {
	display: inline-block;
	font-family: var(--jp-font-mono);
	font-size: 10px;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: rgba(255,255,255,.92);
	background: rgba(255,255,255,.16);
	border: 1px solid rgba(255,255,255,.28);
	padding: 5px 10px;
	border-radius: 999px;
	margin: 0 0 10px;
	backdrop-filter: blur(6px);
}
.jp-cat-card__content h3 {
	font-family: var(--jp-font-display);
	color: var(--jp-white);
	font-size: 1.4rem;
	line-height: 1.15;
	margin: 0 0 6px;
}
.jp-cat-card__content p {
	font-family: var(--jp-font-mono);
	font-size: 11px;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: rgba(255,255,255,.80);
	margin: 0 0 14px;
}
.jp-cat-card__link {
	display: inline-flex; align-items: center; gap: 6px;
	font-size: 13px; font-weight: 600;
	color: var(--jp-white);
}
.jp-cat-card__link svg { width: 14px; height: 14px; transition: transform .2s ease; }
.jp-cat-card:hover .jp-cat-card__link svg { transform: translateX(4px); }

@media (max-width: 1024px) { .jp-cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .jp-cat-grid { grid-template-columns: 1fr; } }

.jp-cta-strip {
	background: var(--jp-charcoal);
	color: var(--jp-white);
	padding: 56px 0;
}
.jp-cta-strip__inner {
	max-width: var(--jp-container);
	margin: 0 auto;
	padding: 0 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	flex-wrap: wrap;
}
.jp-cta-strip__inner h3 {
	font-family: var(--jp-font-display);
	color: var(--jp-white);
	font-size: 1.6rem;
	margin: 0 0 6px;
	line-height: 1.2;
}
.jp-cta-strip__inner p {
	color: rgba(255,255,255,.75);
	margin: 0;
	font-size: 1rem;
}

/* ===== Product detail (single bhh_product) — HS-Proteins-style layout ===== */

.jp-product-detail__back {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--jp-font-mono);
	font-size: 12px;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--jp-stone);
	margin-bottom: 28px;
}
.jp-product-detail__back:hover { color: var(--jp-charcoal); }
.jp-product-detail__back svg { width: 14px; height: 14px; }
.jp-product-detail__sep { opacity: .55; margin: 0 4px; }
.jp-product-detail__crumb { color: var(--jp-charcoal); font-weight: 600; }

.jp-product-detail {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: start;
}
.jp-product-detail__media {
	display: flex;
	flex-direction: column;
	gap: 14px;
	position: sticky;
	top: 96px;
}
.jp-product-detail__main {
	border-radius: var(--jp-radius-xl);
	overflow: hidden;
	background: var(--jp-white);
	aspect-ratio: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	box-sizing: border-box;
}
.jp-product-detail__main img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	display: block;
	transition: opacity .2s ease;
}
.jp-product-detail__main--empty {
	color: var(--jp-stone);
	font-family: var(--jp-font-mono);
	font-size: 12px;
	letter-spacing: .14em;
	text-transform: uppercase;
}
.jp-product-detail__thumbs {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
	gap: 10px;
}
.jp-product-detail__thumb {
	background: var(--jp-white);
	border: 2px solid transparent;
	border-radius: var(--jp-radius-md);
	overflow: hidden;
	padding: 0;
	cursor: pointer;
	aspect-ratio: 1;
	transition: border-color .15s ease;
}
.jp-product-detail__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.jp-product-detail__thumb:hover { border-color: var(--jp-hairline-strong); }
.jp-product-detail__thumb.is-active { border-color: var(--jp-charcoal); }

.jp-product-detail__body { padding-top: 8px; }
.jp-product-detail__chip {
	display: inline-block;
	padding: 5px 14px;
	background: var(--jp-stone-soft);
	color: var(--jp-charcoal);
	font-family: var(--jp-font-mono);
	font-size: 11px;
	letter-spacing: .14em;
	text-transform: uppercase;
	font-weight: 600;
	border-radius: var(--jp-radius-pill);
	margin-bottom: 18px;
}
.jp-product-detail__title {
	font-family: var(--jp-font-display);
	font-size: clamp(2rem, 3.5vw, 2.6rem);
	color: var(--jp-charcoal);
	line-height: 1.1;
	margin: 0 0 16px;
}
.jp-product-detail__lede {
	font-size: 16px;
	line-height: 1.65;
	color: var(--jp-body);
	margin: 0 0 28px;
	max-width: 560px;
}

/* Spec grid (2x2 icon tiles) */
.jp-spec-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 22px;
	margin: 0 0 24px;
}
.jp-spec {
	display: flex;
	gap: 12px;
	align-items: flex-start;
}
.jp-spec__icon {
	flex-shrink: 0;
	width: 36px; height: 36px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--jp-stone-soft);
	color: var(--jp-charcoal);
	border-radius: var(--jp-radius-sm);
}
.jp-spec__icon svg { width: 18px; height: 18px; }
.jp-spec__body { display: flex; flex-direction: column; gap: 2px; }
.jp-spec__label {
	font-family: var(--jp-font-mono);
	font-size: 11px;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--jp-stone);
	font-weight: 500;
}
.jp-spec__value {
	font-size: 15px;
	color: var(--jp-charcoal);
	font-weight: 600;
	line-height: 1.4;
}

/* Highlighted spec rows (Composition / Weave) — top + bottom hairline. */
.jp-spec-detail {
	border-top: 1px solid var(--jp-hairline);
	border-bottom: 1px solid var(--jp-hairline);
	padding: 18px 0;
	margin: 0 0 28px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.jp-spec-detail__row { display: flex; flex-direction: column; gap: 4px; }
.jp-spec-detail__head {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--jp-font-mono);
	font-size: 11px;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--jp-stone);
	font-weight: 600;
}
.jp-spec-detail__head svg { color: var(--jp-charcoal); width: 14px; height: 14px; }
.jp-spec-detail p {
	font-size: 15px;
	color: var(--jp-charcoal);
	margin: 0;
	font-weight: 600;
	line-height: 1.45;
}

.jp-product-detail__cta {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin: 0 0 28px;
}
.jp-product-detail__cta .jp-btn { width: 100%; }

/* Trust strip — 3 column row */
.jp-trust {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
	padding: 22px 0;
	border-top: 1px solid var(--jp-hairline);
	border-bottom: 1px solid var(--jp-hairline);
	margin: 0 0 18px;
}
.jp-trust__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 4px;
}
.jp-trust__item svg { color: var(--jp-charcoal); margin-bottom: 4px; }
.jp-trust__item strong {
	font-size: 13.5px;
	color: var(--jp-charcoal);
	font-weight: 600;
}
.jp-trust__item span {
	font-size: 11.5px;
	color: var(--jp-stone);
	font-family: var(--jp-font-mono);
	letter-spacing: .08em;
	text-transform: uppercase;
}

/* Accordion */
.jp-acc {
	border-bottom: 1px solid var(--jp-hairline);
}
.jp-acc summary {
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 0;
	cursor: pointer;
	font-family: var(--jp-font-display);
	font-size: 1.05rem;
	color: var(--jp-charcoal);
	font-weight: 400;
	user-select: none;
}
.jp-acc summary::-webkit-details-marker { display: none; }
.jp-acc__chev {
	display: inline-flex;
	transform: rotate(90deg);
	transition: transform .2s ease;
	color: var(--jp-stone);
}
.jp-acc[open] .jp-acc__chev { transform: rotate(-90deg); color: var(--jp-charcoal); }
.jp-acc__body { padding: 0 0 18px; }
.jp-acc__body p {
	font-size: 14.5px;
	line-height: 1.7;
	color: var(--jp-body);
	margin: 0 0 .8em;
}

/* Share row */
.jp-share {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 18px 0 0;
}
.jp-share__label {
	font-size: 13px;
	color: var(--jp-stone);
	margin-right: 4px;
}
.jp-share__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px; height: 32px;
	border-radius: var(--jp-radius-pill);
	border: 1px solid var(--jp-hairline);
	color: var(--jp-charcoal);
	transition: background .15s ease, border-color .15s ease;
}
.jp-share__btn:hover { background: var(--jp-charcoal); color: var(--jp-white); border-color: var(--jp-charcoal); }
.jp-share__btn svg { width: 14px; height: 14px; }

@media (max-width: 880px) {
	.jp-product-detail { grid-template-columns: 1fr; gap: 32px; }
	.jp-product-detail__media { position: static; }
	.jp-spec-grid { grid-template-columns: 1fr; gap: 16px; }
	.jp-product-detail__cta { grid-template-columns: 1fr; }
	.jp-trust { grid-template-columns: 1fr; }
}

/* Mega menu responsive */
@media (max-width: 1024px) {
	.jp-mega { padding: 22px; }
	.jp-mega__inner { grid-template-columns: 1fr; gap: 18px; }
	.jp-mega__feature-img { aspect-ratio: 16/9; }
}

/* Mobile drawer sub-items */
.jp-drawer__nav-sub {
	padding-left: 28px !important;
	font-weight: 400 !important;
	font-size: 14.5px !important;
	color: var(--jp-stone) !important;
}
.jp-drawer__nav-sub:hover { color: var(--jp-charcoal) !important; }
.jp-header__cta { display: inline-flex; align-items: center; }
.jp-header__toggle {
	display: none;
	background: transparent;
	border: 1px solid var(--jp-hairline);
	border-radius: 10px;
	padding: 8px;
	color: var(--jp-charcoal);
	cursor: pointer;
}
.jp-header__toggle svg { width: 22px; height: 22px; }

/* Mobile drawer */
.jp-drawer {
	position: fixed;
	inset: 0;
	background: rgba(43, 42, 41, .55);
	z-index: 90;
	opacity: 0; pointer-events: none;
	transition: opacity .25s ease;
}
.jp-drawer[aria-hidden="false"] { opacity: 1; pointer-events: auto; }
.jp-drawer__panel {
	position: absolute;
	right: 0; top: 0; bottom: 0;
	width: min(360px, 90vw);
	background: var(--jp-white);
	padding: 24px;
	transform: translateX(100%);
	transition: transform .3s ease;
	overflow-y: auto;
}
.jp-drawer[aria-hidden="false"] .jp-drawer__panel { transform: translateX(0); }
.jp-drawer__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.jp-drawer__close {
	background: transparent; border: 0; padding: 6px; cursor: pointer; color: var(--jp-charcoal);
}
.jp-drawer__nav { display: flex; flex-direction: column; gap: 4px; }
.jp-drawer__nav a {
	display: block;
	padding: 12px 14px;
	font-size: 16px;
	font-weight: 500;
	color: var(--jp-charcoal);
	border-radius: var(--jp-radius-md);
}
.jp-drawer__nav a:hover { background: var(--jp-stone-soft); }

@media (max-width: 880px) {
	.jp-header__nav, .jp-header__cta { display: none; }
	.jp-header__toggle { display: inline-flex; }
}

/* ===== Hero (home) ===== */

.jp-hero {
	position: relative;
	min-height: 78vh;
	display: flex;
	align-items: center;
	background: var(--jp-charcoal);
	color: var(--jp-white);
	overflow: hidden;
}
.jp-hero__media {
	position: absolute; inset: 0;
	background-size: cover; background-position: center;
}
.jp-hero__overlay {
	position: absolute; inset: 0;
	background:
		linear-gradient(180deg, rgba(10,12,14,.55) 0%, rgba(10,12,14,.30) 40%, rgba(10,12,14,.85) 100%),
		linear-gradient(135deg, rgba(43,42,41,.50) 0%, rgba(43,42,41,.20) 100%);
}
.jp-hero__inner {
	position: relative;
	z-index: 2;
	max-width: var(--jp-container);
	margin: 0 auto;
	padding: 120px 24px 64px;
	width: 100%;
}
.jp-hero h1 {
	color: var(--jp-white);
	max-width: 820px;
	font-size: clamp(2.6rem, 5.5vw, 4.8rem);
	line-height: 1.05;
	letter-spacing: -.02em;
	text-shadow: 0 1px 2px rgba(0,0,0,.2);
}
.jp-hero p.jp-hero__sub {
	color: rgba(255,255,255,.85);
	max-width: 560px;
	font-size: 1.1rem;
	line-height: 1.6;
	margin-top: 8px;
}
.jp-hero__ctas { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.jp-hero__eyebrow { color: rgba(255,255,255,.85); margin-bottom: 18px; }
.jp-hero__eyebrow::before { background: var(--jp-yellow); box-shadow: 0 0 0 4px rgba(248,183,9,.18); }

/* ===== Stats strip ===== */

.jp-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}
.jp-stat-tile {
	border-radius: var(--jp-radius-lg);
	padding: 32px 28px;
	background: var(--jp-stone-soft);
	color: var(--jp-charcoal);
}
.jp-stat-tile--hero { background: var(--jp-charcoal); color: var(--jp-white); }
.jp-stat-tile__num {
	font-family: var(--jp-font-display);
	font-size: clamp(2.2rem, 3.5vw, 3rem);
	line-height: 1;
	margin: 0;
}
.jp-stat-tile__label {
	font-family: var(--jp-font-mono);
	font-size: 11px;
	letter-spacing: .18em;
	text-transform: uppercase;
	margin-top: 12px;
	color: inherit;
	opacity: .75;
}

@media (max-width: 880px) {
	.jp-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ===== Verticals grid ===== */

.jp-verticals {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.jp-vertical-card {
	background: var(--jp-stone-soft);
	border-radius: var(--jp-radius-lg);
	padding: 28px;
	transition: background .2s ease, transform .25s ease;
	color: var(--jp-charcoal);
}
.jp-vertical-card:hover { background: var(--jp-cream); transform: translateY(-2px); color: var(--jp-charcoal); }
.jp-vertical-card h3 {
	font-size: 1.4rem;
	margin: 0 0 10px;
}
.jp-vertical-card p { margin: 0; color: var(--jp-body); font-size: 14.5px; line-height: 1.55; }
.jp-vertical-card__index {
	font-family: var(--jp-font-mono);
	font-size: 11px;
	letter-spacing: .18em;
	color: var(--jp-charcoal);
	opacity: .55;
	margin-bottom: 16px;
	display: block;
}

@media (max-width: 960px) { .jp-verticals { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .jp-verticals { grid-template-columns: 1fr; } }

/* ===== About teaser / split ===== */

.jp-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
}
.jp-split__media {
	border-radius: var(--jp-radius-xl);
	overflow: hidden;
	aspect-ratio: 5/4;
	background: var(--jp-stone-soft);
}
.jp-split__media img { width: 100%; height: 100%; object-fit: cover; }
.jp-split__body h2 { margin-bottom: 16px; }
.jp-split__body p { color: var(--jp-body); }

@media (max-width: 880px) {
	.jp-split { grid-template-columns: 1fr; gap: 32px; }
}

/* ===== Story (CPT) cards ===== */

.jp-stories {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.jp-story-card {
	background: var(--jp-white);
	border-radius: var(--jp-radius-xl);
	overflow: hidden;
	border: 1px solid var(--jp-hairline);
	transition: border-color .2s ease, transform .25s ease;
}
.jp-story-card:hover {
	border-color: rgba(43, 42, 41, .35);
	transform: translateY(-2px);
}
.jp-story-card a { color: inherit; display: block; }
.jp-story-card__media {
	aspect-ratio: 5/4;
	overflow: hidden;
	background: var(--jp-stone-soft);
}
.jp-story-card__media img {
	width: 100%; height: 100%; object-fit: cover;
	transition: transform .6s ease;
}
.jp-story-card:hover .jp-story-card__media img { transform: scale(1.05); }
.jp-story-card__body { padding: 22px 24px 26px; }
.jp-story-card__cat {
	font-family: var(--jp-font-mono);
	font-size: 11px;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--jp-charcoal);
	opacity: .65;
}
.jp-story-card__title {
	font-family: var(--jp-font-display);
	font-size: 1.3rem;
	color: var(--jp-charcoal);
	margin: 8px 0 0;
	line-height: 1.2;
}

@media (max-width: 960px) { .jp-stories { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .jp-stories { grid-template-columns: 1fr; } }

/* Tax filter pills */
.jp-tax-filter {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin: 0 0 36px;
}
.jp-tax-filter a {
	display: inline-flex;
	align-items: center;
	padding: 8px 16px;
	font-size: 13px;
	font-weight: 500;
	border-radius: var(--jp-radius-pill);
	border: 1px solid var(--jp-hairline);
	color: var(--jp-charcoal);
	background: var(--jp-white);
}
.jp-tax-filter a.is-active,
.jp-tax-filter a:hover { background: var(--jp-charcoal); color: var(--jp-white); border-color: var(--jp-charcoal); }

/* Single story */
.jp-story-single {
	max-width: 880px;
	margin: 0 auto;
}
.jp-story-single__cover {
	border-radius: var(--jp-radius-xl);
	overflow: hidden;
	aspect-ratio: 16/9;
	margin: 24px 0 32px;
	background: var(--jp-stone-soft);
}
.jp-story-single__cover img { width: 100%; height: 100%; object-fit: cover; }
.jp-story-single__body { font-size: 1.05rem; line-height: 1.75; }
.jp-story-single__body p { margin: 0 0 1em; }
.jp-back-link {
	display: inline-flex; align-items: center; gap: 6px;
	font-family: var(--jp-font-mono);
	font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
	color: var(--jp-charcoal); opacity: .7;
}
.jp-back-link:hover { opacity: 1; color: var(--jp-charcoal); }

/* ===== Page banner (interior pages) ===== */

.jp-banner {
	position: relative;
	min-height: 380px;
	display: flex;
	align-items: flex-end;
	background: var(--jp-charcoal);
	color: var(--jp-white);
	overflow: hidden;
}
.jp-banner__media {
	position: absolute; inset: 0;
	background-size: cover; background-position: center;
}
.jp-banner__overlay {
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(10,12,14,.45) 0%, rgba(10,12,14,.25) 50%, rgba(10,12,14,.85) 100%);
}
.jp-banner__inner {
	position: relative; z-index: 2;
	width: 100%;
	max-width: var(--jp-container);
	margin: 0 auto;
	padding: 110px 24px 48px;
}
.jp-banner h1 {
	color: var(--jp-white);
	max-width: 880px;
	font-size: clamp(2.2rem, 4vw, 3.6rem);
	margin: 0;
}
.jp-banner__eyebrow { color: rgba(255,255,255,.85); margin-bottom: 12px; }
.jp-banner__eyebrow::before { background: var(--jp-yellow); box-shadow: 0 0 0 4px rgba(248,183,9,.18); }

/* ===== Contact ===== */

.jp-contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: start;
}
.jp-contact-info { padding-right: 24px; }
.jp-contact-info dl { margin: 0; }
.jp-contact-info dt {
	font-family: var(--jp-font-mono);
	font-size: 11px;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--jp-charcoal);
	opacity: .65;
	margin: 28px 0 6px;
}
.jp-contact-info dt:first-child { margin-top: 0; }
.jp-contact-info dd {
	margin: 0;
	font-size: 1rem;
	color: var(--jp-charcoal);
	line-height: 1.6;
}
.jp-contact-info dd a { color: var(--jp-charcoal); }
.jp-contact-info dd a:hover { color: var(--jp-blue); }

@media (max-width: 880px) {
	.jp-contact-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ===== Careers ===== */

.jp-perk-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin: 0 0 40px;
}
.jp-perk {
	background: var(--jp-stone-soft);
	border-radius: var(--jp-radius-lg);
	padding: 24px;
}
.jp-perk h3 { font-size: 1.2rem; margin: 0 0 8px; }
.jp-perk p { margin: 0; font-size: 14.5px; line-height: 1.55; color: var(--jp-body); }
.jp-perk svg { color: var(--jp-charcoal); margin-bottom: 16px; }

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

/* ===== CTA card (large) ===== */

.jp-cta-card {
	background: var(--jp-charcoal);
	border-radius: var(--jp-radius-2xl);
	color: var(--jp-white);
	padding: 64px 48px;
	text-align: center;
}
.jp-cta-card h2 { color: var(--jp-white); margin: 0 0 16px; max-width: 720px; margin-left: auto; margin-right: auto; }
.jp-cta-card p { color: rgba(255,255,255,.78); margin: 0 0 28px; max-width: 540px; margin-left: auto; margin-right: auto; }
.jp-cta-card .jp-btn { margin: 0 6px 8px; }

/* ===== Footer ===== */

.jp-footer {
	background: var(--jp-offwhite);
	border-top: 1px solid var(--jp-hairline);
	padding: 64px 0 24px;
	color: var(--jp-body);
}
.jp-footer__cols {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 48px;
}
.jp-footer__brand img { height: 56px; width: auto; margin-bottom: 16px; }
.jp-footer__brand p { color: var(--jp-body); max-width: 320px; margin: 0; font-size: 14px; line-height: 1.6; }
.jp-footer h4 {
	font-family: var(--jp-font-mono);
	font-size: 11px;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--jp-charcoal);
	margin: 0 0 16px;
	font-weight: 600;
}
.jp-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.jp-footer ul a { color: var(--jp-body); font-size: 14.5px; }
.jp-footer ul a:hover { color: var(--jp-charcoal); }
.jp-footer__bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	padding-top: 32px;
	margin-top: 48px;
	border-top: 1px solid var(--jp-hairline);
	font-size: 12.5px;
	color: var(--jp-body);
}
.jp-footer__social { display: flex; gap: 8px; }
.jp-footer__social a {
	display: inline-flex;
	align-items: center; justify-content: center;
	width: 36px; height: 36px;
	border-radius: var(--jp-radius-pill);
	border: 1px solid var(--jp-hairline);
	color: var(--jp-charcoal);
}
.jp-footer__social a:hover { background: var(--jp-charcoal); color: var(--jp-white); border-color: var(--jp-charcoal); }

@media (max-width: 960px) {
	.jp-footer__cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
	.jp-footer__cols { grid-template-columns: 1fr; gap: 32px; }
	.jp-footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* ===== Misc ===== */

.jp-divider {
	height: 1px;
	background: var(--jp-hairline);
	margin: 64px auto;
	max-width: var(--jp-container);
}

.screen-reader-text {
	border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%);
	height: 1px; margin: -1px; overflow: hidden; padding: 0;
	position: absolute; width: 1px; word-wrap: normal !important;
}
