/* Jumper Bee — Equipment: Heaters & Coolers template styles (layered on homepage-v2.css) */

.jb-equipment {
	color: var(--jb-text);
	font-family: var(--jb-font-body);
	line-height: 1.55;
}

.jb-equipment--heaters-coolers {
	--hc-flame: #d9622b;
	--hc-flame-deep: #a74813;
	--hc-chill: #2d7ba8;
	--hc-chill-deep: #1b5679;
	--hc-deep: #13324a;
	--hc-cream: #f6ecd6;
	--hc-ice: #e4f1fa;
	--hc-shadow: rgba(19,50,74,.18);
}

/* Breadcrumbs */
.jb-crumbs {
	background: var(--jb-bg-soft);
	font-size: .9rem;
	padding: .9rem 0;
	border-bottom: 1px solid var(--jb-gray-2);
}
.jb-crumbs ol {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: .4rem;
}
.jb-crumbs li + li::before {
	content: "/";
	color: var(--jb-gray-2);
	margin-right: .4rem;
}
.jb-crumbs a { color: var(--jb-blue-deep); text-decoration: none; }
.jb-crumbs a:hover { text-decoration: underline; }
.jb-crumbs [aria-current="page"] { color: var(--jb-text); font-weight: 600; }

/* Eyebrow label */
.jb-eyebrow {
	text-transform: uppercase;
	letter-spacing: .12em;
	font-size: .78rem;
	font-weight: 700;
	color: var(--hc-flame-deep);
	margin: 0 0 .5rem;
}
.jb-hero .jb-eyebrow { color: var(--hc-flame); }

/* Heaters & Coolers hero accent — warm + cool split gradient */
.jb-hero--heaters-coolers {
	min-height: 0;
	background:
		radial-gradient(ellipse at 88% 18%, rgba(217,98,43,.36), transparent 55%),
		radial-gradient(ellipse at 10% 90%, rgba(45,123,168,.38), transparent 55%),
		linear-gradient(180deg, var(--jb-bg-dark) 0%, var(--jb-bg-dark-2) 100%);
}

/* Hero form palette override */
.jb-equipment--heaters-coolers .jb-hero__form button,
.jb-equipment--heaters-coolers .jb-hero__form input[type="submit"],
.jb-equipment--heaters-coolers .jb-hero__form .frm_button_submit {
	background: var(--hc-flame-deep);
}
.jb-equipment--heaters-coolers .jb-hero__form button:hover,
.jb-equipment--heaters-coolers .jb-hero__form input[type="submit"]:hover,
.jb-equipment--heaters-coolers .jb-hero__form .frm_button_submit:hover { background: #8a3c0d; }

/* Intro narrative */
.jb-hc-intro {
	background: #fff;
	text-align: center;
}
.jb-hc-intro p { font-size: 1.08rem; }
.jb-hc-intro .jb-intro__cta {
	margin-top: 1.5rem;
	font-weight: 600;
	font-size: 1.05rem;
}

/* Grids */
.jb-grid--2 { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 768px) {
	.jb-grid--2 { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

/* Two-col reverse layout */
@media (min-width: 900px) {
	.jb-two-col--reverse { grid-template-columns: 1fr 1fr; }
	.jb-two-col--reverse > :first-child { order: 2; }
	.jb-two-col--reverse > :last-child { order: 1; }
}

/* Cards — icon-led, dual palette */
.jb-card--hc {
	display: flex;
	flex-direction: column;
	gap: .5rem;
	background: #fff;
	border-radius: var(--jb-radius);
	padding: 1.5rem;
	border-top: 4px solid var(--jb-gray-2);
	box-shadow: var(--jb-shadow);
	transition: transform .2s ease, box-shadow .2s ease;
}
.jb-card--hc:hover {
	transform: translateY(-3px);
	box-shadow: var(--jb-shadow-lg);
}
.jb-card--hc h3 { margin: .25rem 0 .4rem; }
.jb-card--hc p { margin: 0; color: var(--jb-text); }

.jb-card__icon {
	width: 52px;
	height: 52px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	background: var(--hc-cream);
	color: var(--hc-flame-deep);
}
.jb-card__icon .jb-icon { width: 28px; height: 28px; }
.jb-card--accent-1 .jb-card__icon { background: var(--hc-ice); color: var(--hc-chill-deep); }
.jb-card--accent-2 .jb-card__icon { background: #fbe1cf; color: var(--hc-flame-deep); }
.jb-card--accent-3 .jb-card__icon { background: #dff0ec; color: #1a6a55; }

/* Heater cards lean warm, cooler cards lean cool */
.jb-hc-heaters .jb-card--hc { border-top-color: var(--hc-flame); }
.jb-hc-heaters .jb-card--accent-1 .jb-card__icon { background: #fbe1cf; color: var(--hc-flame-deep); }
.jb-hc-coolers .jb-card--hc { border-top-color: var(--hc-chill); }
.jb-hc-coolers .jb-card--accent-2 .jb-card__icon { background: var(--hc-ice); color: var(--hc-chill-deep); }

/* Gallery */
.jb-hc-gallery { background: #fff; }
.jb-hc-gallery__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
	margin-top: 1rem;
}
@media (min-width: 640px) {
	.jb-hc-gallery__grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 960px) {
	.jb-hc-gallery__grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}
.jb-hc-gallery__item {
	margin: 0;
	aspect-ratio: 4 / 3;
	border-radius: var(--jb-radius-lg);
	overflow: hidden;
	border: 4px solid var(--hc-flame);
	box-shadow: 0 14px 40px var(--hc-shadow);
	transition: transform .25s ease, box-shadow .25s ease;
}
.jb-hc-gallery__item:nth-child(2) { border-color: var(--hc-chill); }
.jb-hc-gallery__item:nth-child(3) { border-color: var(--hc-deep); }
.jb-hc-gallery__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .5s ease;
}
.jb-hc-gallery__item:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 50px rgba(19,50,74,.28);
}
.jb-hc-gallery__item:hover img { transform: scale(1.05); }
@media (prefers-reduced-motion: reduce) {
	.jb-hc-gallery__item, .jb-hc-gallery__item img { transition: none; }
	.jb-hc-gallery__item:hover { transform: none; }
	.jb-hc-gallery__item:hover img { transform: none; }
}

/* Section backgrounds for rhythm */
.jb-hc-heaters { background: var(--jb-cream); }
.jb-hc-heat-signature { background: linear-gradient(180deg, #fff 0%, #fdf4ea 100%); }
.jb-hc-coolers { background: var(--jb-bg-soft); }
.jb-hc-cool-signature { background: linear-gradient(180deg, #fff 0%, #edf6fc 100%); }
.jb-hc-power { background: var(--jb-bg-dark); color: #fff; }
.jb-hc-power h2, .jb-hc-power h3 { color: #fff; }
.jb-hc-power a:not(.jb-btn) { color: var(--hc-flame); }
.jb-hc-power .jb-eyebrow { color: var(--hc-flame); }
.jb-hc-power .jb-checklist li {
	background: rgba(255,255,255,.06);
	border-color: rgba(255,255,255,.14);
	color: #f1f1f1;
}
.jb-hc-power .jb-checklist li::before {
	background: var(--hc-flame);
	color: #fff;
}
.jb-hc-power .jb-checklist strong { color: #fff; }
.jb-hc-events { background: #fff; }
.jb-hc-faq { background: var(--jb-bg-soft); }

/* Lead paragraphs and fine print */
.jb-home .jb-lead {
	font-size: 1.1rem;
	color: var(--jb-text);
	max-width: 820px;
	margin: 0 0 1.75rem;
}
.jb-home .jb-fine {
	font-size: .9rem;
	color: #555;
	margin: 2.25rem 0 0;
	font-style: italic;
}
.jb-hc-power .jb-fine { color: #dcdcdc; }

/* Signature figures — heater frame (warm), cooler frame (cool) */
.jb-hc-heat-signature .jb-events__figure {
	margin: 0;
	border: 4px solid var(--hc-flame);
	border-radius: var(--jb-radius-lg);
	overflow: hidden;
	box-shadow: 0 20px 50px rgba(167,72,19,.22);
}
.jb-hc-cool-signature .jb-events__figure {
	margin: 0;
	border: 4px solid var(--hc-chill);
	border-radius: var(--jb-radius-lg);
	overflow: hidden;
	box-shadow: 0 20px 50px rgba(27,86,121,.22);
}
.jb-hc-heat-signature .jb-events__figure img,
.jb-hc-cool-signature .jb-events__figure img {
	width: 100%;
	height: auto;
	display: block;
}

/* Pill row */
.jb-pill-row {
	display: flex;
	flex-wrap: wrap;
	gap: .5rem;
	margin: .75rem 0 1.25rem;
}
.jb-pill {
	display: inline-block;
	padding: .4rem .8rem;
	border-radius: 999px;
	background: var(--hc-ice);
	border: 1px solid rgba(45,123,168,.25);
	color: var(--hc-chill-deep);
	font-size: .88rem;
	font-weight: 600;
}
.jb-hc-heat-signature .jb-pill {
	background: #fbe1cf;
	border-color: rgba(167,72,19,.25);
	color: var(--hc-flame-deep);
}

/* Checklist */
.jb-home .jb-checklist {
	list-style: none;
	padding: 0;
	margin: 0 0 1.75rem;
	display: grid;
	gap: .75rem;
	grid-template-columns: 1fr;
}
@media (min-width: 720px) {
	.jb-checklist--two { grid-template-columns: 1fr 1fr; gap: .9rem 1.25rem; }
}
.jb-checklist li {
	position: relative;
	padding: .85rem 1rem .85rem 3rem;
	background: #fff;
	border: 1px solid var(--jb-gray-2);
	border-radius: var(--jb-radius);
	box-shadow: 0 2px 6px rgba(13,27,61,.04);
	line-height: 1.5;
}
.jb-checklist li::before {
	content: "\2713";
	position: absolute;
	left: .9rem;
	top: .95rem;
	width: 1.45rem;
	height: 1.45rem;
	border-radius: 50%;
	background: var(--hc-deep);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: .85rem;
	font-weight: 800;
	line-height: 1;
}
.jb-checklist strong { color: var(--jb-black); }

/* FAQ accordion */
.jb-faq { display: grid; gap: .75rem; }
.jb-faq__item {
	background: #fff;
	border-radius: var(--jb-radius);
	box-shadow: var(--jb-shadow);
	padding: 1rem 1.25rem;
	border-left: 4px solid var(--hc-flame);
}
.jb-faq__item:nth-child(even) { border-left-color: var(--hc-chill); }
.jb-faq__item summary {
	cursor: pointer;
	font-weight: 700;
	font-size: 1.05rem;
	color: var(--jb-black);
	list-style: none;
	position: relative;
	padding-right: 2rem;
}
.jb-faq__item summary::-webkit-details-marker { display: none; }
.jb-faq__item summary::after {
	content: "+";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.4rem;
	line-height: 1;
	color: var(--hc-flame-deep);
	font-weight: 800;
}
.jb-faq__item:nth-child(even) summary::after { color: var(--hc-chill-deep); }
.jb-faq__item[open] summary::after { content: "\2212"; }
.jb-faq__item p {
	margin: .75rem 0 0;
	color: var(--jb-text);
}

/* Final CTA block — warm + cool split */
.jb-hc-cta {
	background: linear-gradient(135deg, var(--hc-flame-deep) 0%, var(--hc-deep) 55%, var(--hc-chill-deep) 100%);
	color: #fff;
	text-align: center;
}
.jb-hc-cta h2 { color: #fff; }
.jb-hc-cta .jb-hero__cta { justify-content: center; }
.jb-hc-cta a:not(.jb-btn) {
	color: #fff;
	text-decoration: underline;
	text-decoration-thickness: 2px;
}
.jb-hc-cta a.jb-btn.jb-btn--primary {
	background: var(--hc-cream);
	color: var(--hc-flame-deep);
}
.jb-hc-cta a.jb-btn.jb-btn--primary:hover { background: #ebdcbc; color: var(--hc-flame-deep); }
.jb-hc-cta a.jb-btn.jb-btn--secondary { border-color: #fff; color: #fff; background: transparent; }
.jb-hc-cta a.jb-btn.jb-btn--secondary:hover { background: #fff; color: var(--hc-deep); }

/* Reduced motion polish */
@media (prefers-reduced-motion: reduce) {
	.jb-card--hc { transition: none; }
	.jb-card--hc:hover { transform: none; }
}
