.jbm-home {
	--jbm-home-text: #141414;
	--jbm-home-muted: #656565;
	--jbm-home-light: #e9e9e9;
	--jbm-home-divider: #ececec;
	--jbm-home-accent: #1d1d1d;
	--jbm-home-highlight: #008DE5;
	--jbm-home-soft: #aaaaaa;
	--jbm-home-header-height: 40px;
	--jbm-home-top-gap: 78px;
	--jbm-home-column-top-offset: 48px;
	--jbm-home-dock-side: 30px;
	--jbm-home-dock-bottom: 26px;
	--jbm-home-dock-baseline-nudge: -1px;
	--jbm-home-dock-socials-nudge: -3px;
	--jbm-home-center-footer-nudge: 13px;
	--jbm-home-dock-fade-height: 36px;
	--jbm-home-dock-z: 48;
	--jbm-home-dock-backdrop: linear-gradient(to top, rgba(255, 255, 255, 0.985) 0%, rgba(255, 255, 255, 0.92) 42%, rgba(255, 255, 255, 0) 100%);
	--jbm-home-mobile-dock-backdrop: linear-gradient(to top, rgba(255, 255, 255, 1) 70%, rgba(255, 255, 255, 0));
	--jbm-home-mobile-footer-surface: rgba(255, 255, 255, 1);
	--jbm-home-bottom-anchor-offset: 12px;
	color: var(--jbm-home-text);
	font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
	background: #fff;
	min-height: 100vh;
	overflow: hidden;
	position: relative;
}

html,
body {
	height: 100%;
}

body.home,
body.jbm-shell-page {
	overflow: hidden !important;
}

.jbm-home * {
	box-sizing: border-box;
}

.jbm-home__header {
	display: grid;
	grid-template-columns: minmax(180px, 1fr) minmax(420px, 2.4fr) minmax(200px, 1fr);
	align-items: center;
	gap: 0;
	height: var(--jbm-home-header-height);
	padding: 0 30px;
	max-width: none;
	margin: 0;
	font-size: 14px;
	border-bottom: 1px solid var(--jbm-home-divider);
}

.jbm-home__site {
	font-weight: 600;
}

.jbm-home__nav {
	display: flex;
	gap: 6px;
	font-size: 13px;
	text-transform: none;
	justify-content: flex-start;
	padding-left: 20px;
}

.jbm-home__nav-link {
	color: var(--jbm-home-muted);
	text-decoration: none;
	letter-spacing: 0.01em;
	font-weight: 600;
}

.jbm-home__nav-link.is-active {
	color: var(--jbm-home-text);
}

.jbm-home__time {
	color: var(--jbm-home-muted);
	font-variant-numeric: tabular-nums;
	justify-self: start;
	text-align: left;
	padding-left: 32px;
}

.jbm-home__grid {
	display: grid;
	grid-template-columns: minmax(180px, 1fr) minmax(420px, 2.4fr) minmax(200px, 1fr);
	gap: 0;
	max-width: none;
	margin: var(--jbm-home-top-gap) 0 80px;
	padding: 0 30px;
	height: calc(100vh - var(--jbm-home-header-height) - 48px);
	overflow: hidden;
	min-height: 0;
	align-items: start;
}

@supports (height: 100svh) {
	.jbm-home__grid {
		height: calc(100svh - var(--jbm-home-header-height) - 48px);
	}
}

.jbm-home__col {
	display: flex;
	flex-direction: column;
	gap: 32px;
	padding: 0;
	height: 100%;
	min-height: 0;
}

.jbm-home__col--center {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: var(--jbm-home-column-top-offset) 20px calc(46px + env(safe-area-inset-bottom, 0px));
	overflow-y: auto;
	max-height: 100%;
	min-height: 0;
	scroll-padding-bottom: calc(46px + env(safe-area-inset-bottom, 0px));
	-webkit-overflow-scrolling: touch;
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.jbm-home__col--center::-webkit-scrollbar {
	width: 0;
	height: 0;
	display: none;
}

.jbm-home__col--left {
	padding-right: 32px;
	padding-top: var(--jbm-home-column-top-offset);
	align-items: flex-start;
	padding-bottom: 30px;
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.jbm-home__col--right {
	padding-left: 32px;
	padding-top: var(--jbm-home-column-top-offset);
	align-items: flex-end;
	text-align: right;
	padding-bottom: 30px;
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.jbm-home__col-top {
	flex: 0 0 auto;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.jbm-home__guides {
	position: absolute;
	top: var(--jbm-home-header-height);
	bottom: 0;
	left: 0;
	right: 0;
	pointer-events: none;
	z-index: 4;
	display: grid;
	grid-template-columns: minmax(180px, 1fr) minmax(420px, 2.4fr) minmax(200px, 1fr);
	grid-template-rows: 1fr;
	padding: 0 30px;
	align-items: stretch;
}

.jbm-home__guide {
	display: block;
	position: relative;
	height: 100%;
	align-self: stretch;
}

.jbm-home__guide--left {
	grid-column: 2;
	grid-row: 1;
	border-left: 1px solid var(--jbm-home-divider);
}

.jbm-home__guide--right {
	grid-column: 2;
	grid-row: 1;
	border-right: 1px solid var(--jbm-home-divider);
}

.jbm-home__placeholder {
	background: var(--jbm-home-light);
	color: #4f4f4f;
	font-size: 13px;
	line-height: 1.2;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 12px;
}

.jbm-home__placeholder--large {
	width: 182px;
	height: 182px;
}

.jbm-home__cd-cover {
	width: 182px;
	height: 182px;
	display: block;
	background: var(--jbm-home-light);
	overflow: hidden;
}

.jbm-home__cd-cover-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.jbm-home__cd-block {
	display: flex;
	flex-direction: column;
	gap: 2px;
	width: 182px;
}

.jbm-home__cd-kicker {
	margin: 0 0 4px;
	font-size: 11px;
	line-height: 1.2;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--jbm-home-muted);
}

.jbm-home__cd-meta {
	margin: 0 0 8px;
	width: 100%;
	font-size: 11px;
	line-height: 1.25;
	color: var(--jbm-home-muted);
	text-align: left;
}

.jbm-home__cd-meta-title {
	font-weight: 600;
	color: var(--jbm-home-text);
}

.jbm-home__cd-meta-artist {
	margin-top: 1px;
	color: var(--jbm-home-text);
}

.jbm-home__cd-meta-year {
	margin-top: 1px;
}

.jbm-home__placeholder--socials {
	width: 120px;
	min-height: 28px;
	align-self: flex-start;
	margin-top: auto;
	margin-bottom: var(--jbm-home-bottom-anchor-offset);
}

.jbm-home__socials {
	width: auto;
	max-width: 100%;
	display: flex;
	flex-direction: row;
	gap: 6px;
	justify-content: flex-start;
	align-self: flex-start;
	margin-top: auto;
	margin-bottom: var(--jbm-home-bottom-anchor-offset);
}

.jbm-home__social-link {
	display: inline-flex;
	min-height: 28px;
	padding: 6px 8px;
	min-width: 88px;
	font-size: 12px;
	line-height: 1.2;
	text-align: left;
	text-decoration: none;
	color: var(--jbm-home-text);
	background: var(--jbm-home-light);
	align-items: center;
	gap: 8px;
	transition: background-color 160ms ease, color 160ms ease;
}

.jbm-home__social-link:hover,
.jbm-home__social-link:focus-visible {
	background: var(--jbm-home-divider);
	color: var(--jbm-home-text);
}

.jbm-home__social-icon {
	display: inline-flex;
	width: 14px;
	height: 14px;
	flex: 0 0 14px;
}

.jbm-home__social-icon svg {
	display: block;
	width: 14px;
	height: 14px;
	fill: currentColor;
}

.jbm-home__placeholder--media {
	min-height: 260px;
}

.jbm-home__placeholder--portrait {
	min-height: 200px;
	width: 160px;
	align-self: flex-end;
}

.jbm-home__hero {
	margin: 0;
	font-size: clamp(18px, 1.8vw, 22px);
	line-height: 1.25;
	font-weight: 500;
	position: sticky;
	top: 0;
	z-index: 2;
	background: #fff;
	padding: 0 0 14px;
	box-shadow: none;
	transition: box-shadow 160ms ease;
}

.jbm-home:not(.jbm-home--works):not(.jbm-home--info):not(.jbm-home--contact) .jbm-home__col--center {
	padding-top: 0;
	padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
	scroll-padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
}

.jbm-home:not(.jbm-home--works):not(.jbm-home--info):not(.jbm-home--contact) .jbm-home__hero {
	padding-top: var(--jbm-home-column-top-offset);
}

.jbm-home__page-title {
	margin: 0 0 24px;
	font-size: clamp(28px, 4.2vw, 56px);
	line-height: 1;
	font-weight: 600;
	letter-spacing: -0.01em;
}

.jbm-home__hero.is-scrolled {
	box-shadow: 0 10px 16px -14px rgba(0, 0, 0, 0.35);
}

.jbm-home__hero-lead {
	display: inline;
	font-weight: 700;
	color: var(--jbm-home-highlight);
}

.jbm-home__hero-body {
	display: inline;
	font-weight: 600;
	color: var(--jbm-home-soft);
	margin-left: 0.35ch;
}

.jbm-info {
	padding-top: 0;
	width: 100%;
	max-width: none;
	display: grid;
	grid-template-columns: minmax(0, 75%) minmax(0, 25%);
}

.jbm-info__lead {
	margin: 0;
	grid-column: 1;
	width: 100%;
	font-size: clamp(20px, 2.35vw, 24px);
	line-height: 1.35;
	font-weight: 700;
	color: #9b9b9b;
}

.jbm-info__lead-emphasis {
	color: var(--jbm-home-highlight);
}

.jbm-info__body {
	grid-column: 1;
	margin-top: 18px;
	width: 100%;
}

.jbm-info__body p {
	margin: 0;
	font-size: 13px;
	line-height: 1.35;
	color: #9f9f9f;
}

.jbm-info__body p + p {
	margin-top: 14px;
}

.jbm-info__divider {
	grid-column: 1 / -1;
	border: 0;
	border-top: 1px solid var(--jbm-home-divider);
	width: 100%;
	margin: 34px 0 8px;
}

.jbm-info__downloads {
	grid-column: 1 / -1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	width: 100%;
	padding: 2px 15% 8px;
	border-bottom: 1px solid var(--jbm-home-divider);
}

.jbm-info__download {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 0;
	padding: 0;
	background: transparent;
	color: var(--jbm-home-highlight);
	text-decoration: none;
	font-size: 12px;
	line-height: 1.1;
	font-weight: 700;
}

.jbm-info__download:hover,
.jbm-info__download:focus-visible {
	color: var(--jbm-home-highlight);
	text-decoration: underline;
}

.jbm-info-news {
	grid-column: 1 / -1;
	margin-top: 34px;
}

.jbm-info-news__heading-row {
	display: flex;
	align-items: baseline;
}

.jbm-info-news__heading {
	margin: 0;
	font-size: 18px;
	line-height: 1.1;
	font-weight: 700;
	color: var(--jbm-home-text);
}

.jbm-info-news__divider {
	border: 0;
	border-top: 1px solid var(--jbm-home-divider);
	margin: 10px 0 22px;
}

.jbm-info-news__list {
	display: grid;
	gap: 18px;
}

.jbm-info-news__item {
	display: grid;
	grid-template-columns: minmax(0, 75%);
	gap: 0;
	align-items: start;
}

.jbm-info-news__item.has-media {
	grid-template-columns: minmax(0, 75%) minmax(0, 25%);
	gap: 20px;
}

.jbm-info-news__copy {
	min-width: 0;
}

.jbm-info-news__title {
	margin: 0;
	font-size: 13px;
	line-height: 1.25;
	font-weight: 600;
	color: var(--jbm-home-text);
}

.jbm-info-news__title a {
	color: inherit;
	text-decoration: none;
}

.jbm-info-news__title a:hover,
.jbm-info-news__title a:focus-visible {
	text-decoration: underline;
}

.jbm-info-news__date {
	margin-top: 4px;
	font-size: 11px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--jbm-home-muted);
}

.jbm-info-news__excerpt {
	margin: 8px 0 0;
	font-size: 13px;
	line-height: 1.38;
	color: #9f9f9f;
}

.jbm-info-news__media {
	display: flex;
	justify-content: flex-end;
}

.jbm-info-news__thumb {
	display: block;
	width: min(100%, 132px);
	aspect-ratio: 1.55 / 1;
	background: #dddddd;
	overflow: hidden;
	text-decoration: none;
}

.jbm-info-news__thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.jbm-home__work {
	display: flex;
	flex-direction: column;
	gap: 16px;
	position: relative;
}

.jbm-contact {
	width: 100%;
	max-width: none;
}

.jbm-contact__title {
	margin: 0;
	font-size: clamp(20px, 2.35vw, 24px);
	line-height: 1.1;
	font-weight: 700;
	color: var(--jbm-home-highlight);
}

.jbm-contact__intro {
	margin: 14px 0 0;
	width: min(75%, 100%);
	font-size: 13px;
	line-height: 1.35;
	font-weight: 600;
	color: #9f9f9f;
}

.jbm-contact__email {
	margin: 46px 0 0;
	font-size: 13px;
	line-height: 1.2;
	font-weight: 700;
}

.jbm-contact__email a {
	color: var(--jbm-home-text);
	text-decoration: none;
}

.jbm-contact__notice {
	margin: 24px 0 0;
	padding: 12px 0;
	border-top: 1px solid var(--jbm-home-divider);
	border-bottom: 1px solid var(--jbm-home-divider);
	font-size: 13px;
	line-height: 1.35;
	font-weight: 600;
}

.jbm-contact__notice.is-success {
	color: var(--jbm-home-highlight);
}

.jbm-contact__notice.is-error {
	color: #a14b4b;
}

.jbm-contact-form {
	margin-top: 36px;
	width: 100%;
	border-top: 1px solid var(--jbm-home-divider);
}

.jbm-contact-form__honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.jbm-contact-form__row {
	padding: 14px 0 12px;
	border-bottom: 1px solid var(--jbm-home-divider);
}

.jbm-contact-form__row--message {
	padding-bottom: 24px;
	border-bottom: 0;
}

.jbm-contact-form__label {
	display: block;
	margin: 0 0 8px;
	font-size: 13px;
	line-height: 1.2;
	font-weight: 700;
	color: var(--jbm-home-text);
}

.jbm-contact-form__input,
.jbm-contact-form__textarea {
	appearance: none;
	-webkit-appearance: none;
	display: block;
	width: 100%;
	border: 0 !important;
	box-shadow: none !important;
	outline: none;
	border-radius: 0 !important;
	background: transparent;
	padding: 0;
	font: inherit;
	font-size: 13px;
	line-height: 1.35;
	color: var(--jbm-home-text);
	-webkit-text-fill-color: var(--jbm-home-text);
	resize: vertical;
}

.jbm-contact-form__textarea {
	height: calc(1.35em * 5);
	min-height: calc(1.35em * 5);
	max-height: calc(1.35em * 5);
	overflow-y: auto;
	resize: none;
}

.jbm-contact-form__input:focus,
.jbm-contact-form__textarea:focus {
	border: 0 !important;
	box-shadow: none !important;
	outline: none;
	-webkit-text-fill-color: var(--jbm-home-text);
}

.jbm-contact-form__input:-webkit-autofill,
.jbm-contact-form__input:-webkit-autofill:hover,
.jbm-contact-form__input:-webkit-autofill:focus,
.jbm-contact-form__textarea:-webkit-autofill,
.jbm-contact-form__textarea:-webkit-autofill:hover,
.jbm-contact-form__textarea:-webkit-autofill:focus {
	-webkit-text-fill-color: var(--jbm-home-text);
	transition: background-color 9999s ease-out 0s;
}

.jbm-contact-form__input::placeholder,
.jbm-contact-form__textarea::placeholder {
	color: #8b8b8b;
	opacity: 1;
}

.jbm-contact-form__input::-webkit-input-placeholder,
.jbm-contact-form__textarea::-webkit-input-placeholder {
	color: #8b8b8b;
	opacity: 1;
}

.jbm-contact-form__input:focus::placeholder,
.jbm-contact-form__textarea:focus::placeholder {
	color: transparent;
}

.jbm-contact-form__input:focus::-webkit-input-placeholder,
.jbm-contact-form__textarea:focus::-webkit-input-placeholder {
	color: transparent;
}

.jbm-contact-form__submit-row {
	padding: 16px 0 0;
	border-top: 1px solid var(--jbm-home-divider);
	margin-top: 36px;
}

.jbm-contact-form__submit {
	appearance: none;
	-webkit-appearance: none;
	border: 0;
	background: transparent;
	padding: 0;
	font: inherit;
	font-size: 13px;
	line-height: 1.2;
	font-weight: 700;
	color: var(--jbm-home-highlight);
	cursor: pointer;
	box-shadow: none;
	border-radius: 0;
	-webkit-tap-highlight-color: transparent;
}

.jbm-contact-form__submit:hover,
.jbm-contact-form__submit:active,
.jbm-contact-form__submit:focus-visible {
	background: transparent !important;
	border-color: transparent !important;
	box-shadow: none !important;
	color: var(--jbm-home-highlight);
	text-decoration: underline;
	outline: none;
}

@media (min-width: 901px) {
	.jbm-home--contact .jbm-contact {
		display: flex;
		flex-direction: column;
		flex: 1 1 auto;
	}

	.jbm-home--contact .jbm-contact-form {
		display: flex;
		flex-direction: column;
		flex: 1 1 auto;
	}

	.jbm-home--contact .jbm-contact-form__submit-row {
		margin-top: auto;
	}
}

.jbm-home__work:has(.jbm-work-score) {
	--jbm-work-score-width: clamp(170px, 30%, 240px);
	--jbm-work-score-gutter: 60px;
	padding-right: calc(var(--jbm-work-score-width) + var(--jbm-work-score-gutter));
}

.jbm-home__work-header {
	display: flex;
	flex-direction: column;
	gap: 4px;
	font-size: 14px;
}

.jbm-home__work-title {
	font-size: 18px;
	font-weight: 600;
	color: var(--jbm-home-text);
	text-decoration: none;
}

.jbm-home__work-date {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--jbm-home-muted);
}

.jbm-home__work-year {
	font-size: 12px;
	color: var(--jbm-home-muted);
}

.jbm-home__work-media {
	border-radius: 0;
	overflow: visible;
	background: transparent;
}

.jbm-home__work-meta {
	margin: 0;
	font-size: 13px;
	color: var(--jbm-home-text);
}

.jbm-home__work-meta-row {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
}

.jbm-home__work-meta-type {
	min-width: 0;
}

.jbm-home__work-meta-line {
	margin-top: 2px;
}

.jbm-home__work-meta-score-link {
	margin-left: auto;
	font-size: 12px;
	color: var(--jbm-home-muted);
	text-decoration: none;
	white-space: nowrap;
}

.jbm-home__work-meta-score-link:hover,
.jbm-home__work-meta-score-link:focus-visible {
	color: var(--jbm-home-text);
	text-decoration: underline;
}

.jbm-home__divider {
	border: none;
	border-top: 1px solid var(--jbm-home-divider);
	margin: 0;
}

.jbm-home__center-footer {
	margin-top: auto;
	padding-top: 40px;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 24px;
	font-size: 12px;
	line-height: 1.2;
	letter-spacing: 0.04em;
	color: var(--jbm-home-muted);
	text-transform: none;
	/* Safari/admin-bar viewport baseline nudge for center footer alignment */
	transform: translateY(var(--jbm-home-center-footer-nudge));
}

.jbm-home__center-footer-left {
	text-align: left;
}

.jbm-home__center-footer-right {
	text-align: right;
	margin-left: auto;
}

.jbm-home__artist {
	display: flex;
	flex-direction: column;
	gap: 8px;
	align-items: flex-end;
}

.jbm-home__artist--collaborator {
	gap: 8px;
}

.jbm-home--info .jbm-home__artist--portrait-only .jbm-home__collaborator-thumb {
	width: 182px;
	max-width: 182px;
}

.jbm-home--info .jbm-home__artist--portrait-only .jbm-home__collaborator-thumb img {
	width: 100%;
	max-width: 100%;
	height: auto;
	max-height: none;
}

.jbm-home--info .jbm-home__artist--portrait-only .jbm-home__artist-meta--bio {
	margin-top: 3px;
	text-align: right;
	align-items: flex-end;
}

.jbm-home--info .jbm-home__artist--portrait-only .jbm-home__artist-title {
	font-weight: 700;
	text-transform: none;
	color: var(--jbm-home-text);
}

.jbm-home--info .jbm-home__artist--portrait-only .jbm-home__artist-subtitle {
	font-weight: 400;
	color: var(--jbm-home-muted);
}

.jbm-home__collaborator-thumb {
	display: inline-block;
	max-width: var(--jbm-collab-thumb-width, 160px);
	text-decoration: none;
}

.jbm-home__collaborator-thumb img {
	display: block;
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: var(--jbm-collab-thumb-max-height, 140px);
}

.jbm-home__collaborator-thumb--placeholder {
	display: block;
	width: var(--jbm-collab-thumb-width, 120px);
	aspect-ratio: 1.7 / 1;
	background: #dedede;
}

.jbm-home__collaborator-meta {
	max-width: 180px;
}

.jbm-home__collaborator-title {
	display: inline-block;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.2;
	color: var(--jbm-home-text);
	text-decoration: none;
}

.jbm-home__collaborator-title:hover,
.jbm-home__collaborator-title:focus-visible {
	text-decoration: underline;
}

.jbm-home__collaborator-body {
	margin: 4px 0 0;
	font-size: 12px;
	line-height: 1.3;
	color: var(--jbm-home-muted);
}

.jbm-home__artist-meta {
	display: flex;
	flex-direction: column;
	gap: 1px;
	text-align: right;
}

.jbm-home__artist-title {
	font-weight: 700;
	text-transform: lowercase;
}

.jbm-home__artist-subtitle {
	font-size: 12px;
	color: var(--jbm-home-muted);
}

.jbm-home__event {
	text-align: right;
	font-size: 12px;
	color: var(--jbm-home-muted);
	max-width: 170px;
}

.jbm-home__event-heading {
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--jbm-home-soft);
}

.jbm-home__event-meta {
	margin-top: 4px;
}

.jbm-home__ephemera-rail {
	flex: 1 1 auto;
	width: 100%;
	max-width: 170px;
	min-height: 0;
	display: grid;
	grid-template-rows: auto minmax(0, 1fr);
	overflow: hidden;
	opacity: 0.15;
	transition: opacity 700ms ease;
}

.jbm-home__ephemera-rail:hover,
.jbm-home__ephemera-rail:focus-within {
	opacity: 0.92;
}

.jbm-home__ephemera-rail--left {
	justify-self: start;
	text-align: left;
	margin-top: 30px;
}

.jbm-home__ephemera-rail--right {
	justify-self: end;
	text-align: right;
	margin-top: 50px;
}

.jbm-home__ephemera-rail-header {
	position: relative;
	z-index: 1;
	filter: blur(2.2px);
	transition: filter 700ms ease;
}

.jbm-home__ephemera-rail .jbm-home__event-heading {
	margin: 0 0 4px;
	color: var(--jbm-home-muted);
}

.jbm-home__ephemera-rail--right .jbm-home__event-heading,
.jbm-home__ephemera-rail--right .jbm-home__event-title,
.jbm-home__ephemera-rail--right .jbm-home__event-date,
.jbm-home__ephemera-rail--right .jbm-home__event-body {
	padding-right: 4px;
}

.jbm-home__ephemera-rail-divider {
	border-top: 1px solid var(--jbm-home-divider);
}

.jbm-home__ephemera-rail--right .jbm-home__ephemera-rail-divider {
	margin-right: 4px;
}

.jbm-home__ephemera-list {
	min-height: 0;
	overflow-y: auto;
	padding-top: 10px;
	padding-bottom: 132px;
	display: grid;
	gap: 28px;
	filter: blur(2.2px);
	transition: filter 700ms ease;
	-webkit-overflow-scrolling: touch;
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.jbm-home__ephemera-rail:hover .jbm-home__ephemera-rail-header,
.jbm-home__ephemera-rail:focus-within .jbm-home__ephemera-rail-header,
.jbm-home__ephemera-rail:hover .jbm-home__ephemera-list,
.jbm-home__ephemera-rail:focus-within .jbm-home__ephemera-list {
	filter: blur(0);
}

.jbm-home__ephemera-list--right {
	padding-bottom: 104px;
	gap: 18px;
}

.jbm-home__ephemera-list::-webkit-scrollbar {
	width: 0;
	height: 0;
	display: none;
}

.jbm-home__ephemera-list .jbm-home__event {
	max-width: none;
	margin: 0;
}

.jbm-home__ephemera-list .jbm-home__event--left,
.jbm-home__ephemera-list .jbm-home__event--right {
	align-self: start;
	justify-self: stretch;
}

.jbm-home__event.is-loading .jbm-home__event-meta {
	display: none;
}

.jbm-home__event-title {
	font-weight: 600;
	font-style: italic;
	color: var(--jbm-home-muted);
}

.jbm-home__event-title-link {
	color: inherit;
	text-decoration: none;
}

.jbm-home__event-title-link:hover,
.jbm-home__event-title-link:focus-visible {
	text-decoration: underline;
}

.jbm-home__event-date {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-top: 2px;
	color: var(--jbm-home-muted);
}

.jbm-home__event-body {
	margin: 6px 0 0;
	line-height: 1.42;
	white-space: normal;
	word-break: break-word;
}

.jbm-home__event-org-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 2px;
}

.jbm-home__event-org-item {
	margin: 0;
	padding: 0;
}

.jbm-home__event-org-item::before {
	content: "- ";
}

.jbm-home__event-org-link {
	color: var(--jbm-home-highlight);
	text-decoration: none;
	font-weight: 500;
}

.jbm-home__event-org-link:hover,
.jbm-home__event-org-link:focus-visible {
	text-decoration: underline;
}

.jbm-home__event-body a {
	color: var(--jbm-home-highlight);
	text-decoration: none;
	font-weight: 500;
}

.jbm-home__event-body a:hover,
.jbm-home__event-body a:focus-visible {
	text-decoration: underline;
}

.jbm-home__event--left {
	text-align: left;
	justify-self: start;
	margin-top: 24px;
}

.jbm-home__event--right {
	align-self: end;
	margin-bottom: 0;
	justify-self: end;
	text-align: right;
}

.jbm-home__contact {
	margin-top: auto;
	align-self: end;
	margin-bottom: var(--jbm-home-bottom-anchor-offset);
	text-align: right;
	font-size: 13px;
}

.jbm-home__col--right .jbm-home__contact {
	justify-self: start;
	align-self: end;
	text-align: left;
}

.jbm-home__col--right .jbm-home__artist,
.jbm-home__col--right .jbm-home__artist--collaborator,
.jbm-home__col--right .jbm-home__artist--portrait-only {
	grid-row: 1;
}

.jbm-home__contact a {
	color: var(--jbm-home-text);
	text-decoration: none;
}

.jbm-home .jbm-work-excerpts {
	display: grid;
	gap: 16px;
}

.jbm-home .jbm-work-excerpt {
	padding: 0;
}

.jbm-home .jbm-work-excerpt__title {
	margin: 0 0 6px;
	font-size: 12px;
	letter-spacing: 0.08em;
	color: var(--jbm-home-muted);
}

.jbm-home .jbm-work-excerpt audio,
.jbm-home .jbm-work-excerpt iframe,
.jbm-home .jbm-work-excerpt video {
	max-width: 100%;
	width: 100%;
}

.jbm-home .jbm-work-excerpt audio {
	display: block;
	background: transparent;
	border: 0;
	border-radius: 0;
	padding: 0;
	margin: 0;
}

.jbm-home .jbm-work-excerpt audio::-webkit-media-controls-enclosure,
.jbm-home .jbm-work-excerpt audio::-webkit-media-controls-panel {
	background: transparent;
}

.jbm-home .jbm-audio-wave {
	--jbm-wave-bar: rgba(0, 0, 0, 0.2);
	--jbm-wave-progress: rgba(0, 0, 0, 0.72);
	--jbm-wave-text: rgba(0, 0, 0, 0.62);
}

.jbm-home .jbm-audio-wave__ui {
	display: grid;
	grid-template-columns: 34px minmax(0, 1fr) auto;
	align-items: center;
	gap: 10px;
	min-height: 56px;
	padding: 2px 0;
}

.jbm-home .jbm-audio-wave.is-enhanced .jbm-audio-wave__ui {
	display: grid;
}

.jbm-home .jbm-audio-wave__play {
	appearance: none;
	border: 0;
	width: 34px;
	height: 34px;
	padding: 0;
	border-radius: 999px;
	display: grid;
	place-items: center;
	background: #111;
	color: #fff;
	cursor: pointer;
}

.jbm-home .jbm-audio-wave__play-icon {
	display: block;
	width: 0;
	height: 0;
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
	border-left: 9px solid currentColor;
	margin-left: 2px;
}

.jbm-home .jbm-audio-wave.is-playing .jbm-audio-wave__play-icon {
	width: 10px;
	height: 10px;
	border: 0;
	margin-left: 0;
	background:
		linear-gradient(90deg, currentColor 0 3px, transparent 3px 7px, currentColor 7px 10px);
}

.jbm-home .jbm-audio-wave__waveform {
	min-height: 34px;
}

.jbm-home .jbm-audio-wave__waveform wave {
	border-radius: 0;
}

.jbm-home .jbm-audio-wave__times {
	font-size: 11px;
	color: var(--jbm-wave-text);
	letter-spacing: 0.03em;
	white-space: nowrap;
}

.jbm-home .jbm-audio-wave__bookmarks {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 6px;
}

.jbm-home .jbm-audio-wave__bookmark {
	appearance: none;
	border: 0;
	background: transparent;
	padding: 0;
	font: inherit;
	font-size: 11px;
	color: var(--jbm-home-muted);
	text-decoration: underline;
	text-underline-offset: 2px;
	cursor: pointer;
}

.jbm-home .jbm-audio-wave__bookmark:hover,
.jbm-home .jbm-audio-wave__bookmark:focus-visible {
	color: var(--jbm-home-text);
}

.jbm-home .jbm-audio-wave.is-enhanced .jbm-audio-wave__native {
	display: none;
}

.jbm-home .jbm-work-score {
	display: block;
}

.jbm-home__work:has(.jbm-work-score) .jbm-work-score {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: var(--jbm-work-score-width);
}

.jbm-home .jbm-work-score__thumb {
	display: block;
	width: min(100%, 320px);
	text-decoration: none;
}

.jbm-home__work:has(.jbm-work-score) .jbm-work-score__thumb {
	width: 100%;
	height: 100%;
}

.jbm-home .jbm-work-score__well {
	position: relative;
	display: block;
	width: calc(100% - 5px);
	aspect-ratio: 1 / 1;
	margin: 0 auto 5px;
	background: #f3f3f3;
	overflow: hidden;
	box-shadow:
		inset 0 0 0 1px rgba(0, 0, 0, 0.06),
		inset 0 18px 30px rgba(0, 0, 0, 0.06),
		inset 0 -16px 26px rgba(0, 0, 0, 0.09);
}

.jbm-home .jbm-work-score__well::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05)),
		radial-gradient(120% 100% at 50% 50%, transparent 58%, rgba(0, 0, 0, 0.10) 100%);
}

.jbm-home .jbm-work-score__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.jbm-home__work:has(.jbm-work-score) .jbm-work-score__well {
	width: calc(100% - 5px);
	height: calc(100% - 5px);
	margin: 0 auto 5px;
	aspect-ratio: auto;
}

.jbm-home .jbm-work-score__paper {
	position: absolute;
	inset: 10% 10% 18%;
	background: #fff;
	display: grid;
	align-content: start;
	gap: 7%;
	padding: 12% 10%;
}

.jbm-home .jbm-work-score__line {
	display: block;
	height: 2px;
	background: #d8d8d8;
}

.jbm-home .jbm-work-score__line:nth-child(4) {
	width: 82%;
}

.jbm-home .jbm-work-score__line:nth-child(5) {
	width: 64%;
}

@media (max-width: 980px) {
	body.home,
	body.jbm-shell-page {
		overflow: hidden !important;
		height: 100%;
		background: #fff;
	}

	.jbm-home {
		--jbm-home-column-top-offset: 0px;
		--jbm-home-mobile-gutter: 20px;
		--jbm-home-mobile-dock-height: calc(84px + env(safe-area-inset-bottom, 0px));
		--jbm-home-mobile-bottom-reserve: 84px;
		--jbm-home-mobile-section-gap: 58px;
		--jbm-home-mobile-item-gap: 40px;
		position: relative;
		width: 100%;
		min-height: 100vh;
		height: 100vh;
		overflow: hidden;
		display: flex;
		flex-direction: column;
	}

	@supports (min-height: 100dvh) {
		.jbm-home {
			min-height: 100dvh;
			height: 100dvh;
		}
	}

	@supports (min-height: 100lvh) {
		.jbm-home {
			min-height: 100lvh;
			height: 100lvh;
		}
	}

	.jbm-home__guides {
		display: none;
	}

	.jbm-home__header {
		position: relative;
		z-index: calc(var(--jbm-home-dock-z) + 4);
		height: auto;
		padding: 12px var(--jbm-home-mobile-gutter) 0;
		border-bottom: 0;
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto;
		grid-template-rows: auto auto;
		gap: 12px 12px;
		align-items: end;
		background: var(--jbm-home-mobile-footer-surface);
	}

	.jbm-home__site {
		grid-column: 1;
		grid-row: 1;
		font-size: 13px;
	}

	.jbm-home__time {
		grid-column: 2;
		grid-row: 1;
		position: relative;
		z-index: 1;
		padding-left: 0;
		justify-self: end;
		text-align: right;
		font-size: 12px;
	}

	.jbm-home__nav {
		grid-column: 1 / -1;
		grid-row: 2;
		padding: 10px 0 12px;
		border-top: 1px solid var(--jbm-home-divider);
		border-bottom: 1px solid var(--jbm-home-divider);
		justify-content: flex-start;
		flex-wrap: wrap;
		gap: 6px 8px;
		font-size: 15px;
	}

	.jbm-home__grid {
		grid-template-columns: 1fr;
		gap: 0;
		flex: 1 1 auto;
		height: auto;
		min-height: 0;
		overflow-x: hidden;
		overflow-y: auto;
		margin: 0;
		padding: 10px var(--jbm-home-mobile-gutter) calc(var(--jbm-home-mobile-dock-height) + var(--jbm-home-mobile-bottom-reserve));
		-webkit-overflow-scrolling: touch;
		overscroll-behavior-y: contain;
	}

	.jbm-home__col {
		display: contents;
		height: auto;
		min-height: 0;
		padding: 0;
	}

	.jbm-home__col--center,
	.jbm-home__col--left,
	.jbm-home__col--right {
		padding: 0;
		height: auto;
		min-height: 0;
	}

	.jbm-home__col--center {
		overflow: visible;
		max-height: none;
		scroll-padding-bottom: 0;
	}

	.jbm-home__col--center > :not(.jbm-home__center-footer) {
		order: 10;
	}

	.jbm-home__col-top--right {
		order: 20;
		margin-top: var(--jbm-home-mobile-section-gap);
		align-items: flex-start;
		text-align: left;
	}

	.jbm-home__col-top--left {
		order: 30;
		margin-top: var(--jbm-home-mobile-section-gap);
	}

	.jbm-home__center-footer {
		order: 900;
		margin-top: calc(var(--jbm-home-mobile-section-gap) + 8px);
		margin-bottom: 28px;
		padding-top: 16px;
		border-top: 1px solid var(--jbm-home-divider);
		transform: none;
		flex-wrap: wrap;
		gap: 10px;
	}

	.jbm-home__center-footer-right {
		margin-left: 0;
	}

	.jbm-home__artist,
	.jbm-home__event,
	.jbm-home__contact {
		text-align: left;
		align-items: flex-start;
	}

	.jbm-home__artist,
	.jbm-home__artist--collaborator,
	.jbm-home__artist--portrait-only {
		align-items: flex-start;
		text-align: left;
	}

	.jbm-home__artist-meta,
	.jbm-home__collaborator-meta {
		text-align: left;
		max-width: none;
	}

	.jbm-home__col-top--right .jbm-home__cd-kicker {
		text-align: left;
		align-self: flex-start;
	}

	.jbm-home__placeholder--portrait {
		align-self: flex-start;
	}

	.jbm-home__hero,
	.jbm-info,
	.jbm-contact,
	.jbm-home__work,
	.jbm-home__page-title,
	.jbm-home__event--left,
	.jbm-home__event--right,
	.jbm-home__col-top {
		width: 100%;
		max-width: none;
	}

	.jbm-home__hero {
		position: relative;
		top: auto;
		z-index: 1;
		margin: 0;
		padding: 22px 0 18px;
		background: var(--jbm-home-mobile-footer-surface);
	}

	.jbm-home__work {
		gap: 28px;
	}

	.jbm-home__work + .jbm-home__divider,
	.jbm-home__divider + .jbm-home__work {
		margin-top: 22px;
	}

	.jbm-home__work-meta {
		margin-top: -6px;
	}

	.jbm-home:not(.jbm-home--works):not(.jbm-home--info):not(.jbm-home--contact) .jbm-home__event--left {
		order: 40;
		margin-top: var(--jbm-home-mobile-section-gap);
	}

	.jbm-home:not(.jbm-home--works):not(.jbm-home--info):not(.jbm-home--contact) .jbm-home__event--right {
		order: 41;
		margin-top: var(--jbm-home-mobile-item-gap);
	}

	.jbm-home:not(.jbm-home--works):not(.jbm-home--info):not(.jbm-home--contact) .jbm-home__event--right .jbm-home__event-heading {
		display: none;
	}

	.jbm-home__ephemera-rail,
	.jbm-home__ephemera-list {
		display: contents;
	}

	.jbm-home__ephemera-rail {
		max-width: none;
		overflow: visible;
		opacity: 1;
		transition: none;
	}

	.jbm-home__ephemera-rail-header {
		order: 39;
		margin-top: var(--jbm-home-mobile-section-gap);
	}

	.jbm-home__ephemera-rail--right .jbm-home__ephemera-rail-header {
		display: none;
	}

	.jbm-home__ephemera-rail--right .jbm-home__event-heading,
	.jbm-home__ephemera-rail--right .jbm-home__event-title,
	.jbm-home__ephemera-rail--right .jbm-home__event-date,
	.jbm-home__ephemera-rail--right .jbm-home__event-body {
		padding-right: 0;
	}

	.jbm-home__ephemera-rail--right .jbm-home__ephemera-rail-divider {
		margin-right: 0;
	}

	.jbm-home__ephemera-list .jbm-home__event,
	.jbm-home__ephemera-list .jbm-home__event--left,
	.jbm-home__ephemera-list .jbm-home__event--right {
		align-self: auto;
		justify-self: auto;
		text-align: left;
		margin-top: 0;
		max-width: none;
	}

	.jbm-home__ephemera-list--left > .jbm-home__event:nth-child(1) {
		order: 40;
	}

	.jbm-home__ephemera-list--left > .jbm-home__event:nth-child(2) {
		order: 41;
	}

	.jbm-home__ephemera-list--left > .jbm-home__event:nth-child(n+3) {
		display: none;
	}

	.jbm-home__ephemera-list--right > .jbm-home__event:nth-child(1) {
		order: 42;
	}

	.jbm-home__ephemera-list--right > .jbm-home__event:nth-child(n+2) {
		display: none;
	}

	.jbm-home__event + .jbm-home__event,
	.jbm-home__ephemera-list .jbm-home__event + .jbm-home__event {
		margin-top: var(--jbm-home-mobile-item-gap);
	}

	.jbm-home__socials {
		position: static;
		left: var(--jbm-home-mobile-gutter);
		right: var(--jbm-home-mobile-gutter);
		margin: 0;
		justify-content: flex-start;
	}

	.jbm-home__contact {
		position: static;
		left: 0;
		right: 0;
		margin: 0;
		padding: 10px var(--jbm-home-mobile-gutter) calc(8px + env(safe-area-inset-bottom, 0px));
		border-top: 0;
		border-bottom: 0;
		background: var(--jbm-home-mobile-footer-surface);
		font-size: 13px;
		text-align: left;
		pointer-events: none;
	}

	.jbm-home__contact a {
		pointer-events: auto;
	}

	.jbm-home::after,
	.jbm-home::before {
		display: none;
	}

	.jbm-home__mobile-dock {
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: var(--jbm-home-dock-z, 48);
		pointer-events: none;
	}

	.jbm-home__mobile-dock::after {
		content: "";
		position: absolute;
		left: 0;
		right: 0;
		bottom: 0;
		height: var(--jbm-home-mobile-dock-height, calc(92px + env(safe-area-inset-bottom, 0px)));
		background: var(--jbm-home-mobile-footer-surface, rgba(255, 255, 255, 1));
		pointer-events: none;
		z-index: -1;
	}

	.jbm-home__mobile-dock::before {
		content: "";
		position: absolute;
		left: 0;
		right: 0;
		bottom: var(--jbm-home-mobile-dock-height, calc(84px + env(safe-area-inset-bottom, 0px)));
		height: 28px;
		background: var(--jbm-home-mobile-dock-backdrop, linear-gradient(to top, rgba(255, 255, 255, 1) 55%, rgba(255, 255, 255, 0) 100%));
		pointer-events: none;
		z-index: -2;
	}

	.jbm-home__mobile-dock .jbm-home__socials {
		position: relative;
		left: auto;
		right: auto;
		margin: 0 var(--jbm-home-mobile-gutter, 20px) 8px;
		padding-top: 0;
		pointer-events: auto;
	}

	.jbm-home__mobile-dock .jbm-home__contact {
		position: relative;
		padding-left: var(--jbm-home-mobile-gutter, 20px);
		padding-right: var(--jbm-home-mobile-gutter, 20px);
		pointer-events: none;
	}

	.jbm-home__mobile-dock .jbm-home__contact::before,
	.jbm-home__mobile-dock .jbm-home__contact::after {
		content: "";
		position: absolute;
		left: var(--jbm-home-mobile-gutter, 20px);
		right: var(--jbm-home-mobile-gutter, 20px);
		height: 1px;
		background: var(--jbm-home-divider);
		pointer-events: none;
	}

	.jbm-home__mobile-dock .jbm-home__contact::before {
		top: 0;
	}

	.jbm-home__mobile-dock .jbm-home__contact::after {
		bottom: 0;
	}

	.jbm-home__mobile-dock .jbm-home__contact a {
		pointer-events: auto;
	}

	.jbm-home__work:has(.jbm-work-score) {
		padding-right: 0;
	}

	.jbm-home__work:has(.jbm-work-score) .jbm-work-score {
		position: static;
		width: auto;
	}

	.jbm-home__work:has(.jbm-work-score) .jbm-work-score__thumb,
	.jbm-home__work:has(.jbm-work-score) .jbm-work-score__well {
		height: auto;
		aspect-ratio: 1 / 1;
	}

	.jbm-info {
		padding-top: 0;
		max-width: none;
		grid-template-columns: 1fr;
	}

	.jbm-info__downloads {
		grid-column: 1;
		display: grid;
		grid-template-columns: 1fr;
		justify-content: stretch;
		max-width: 320px;
		gap: 10px;
		padding: 0 0 8px;
	}

	.jbm-info-news {
		margin-top: 40px;
	}

	.jbm-info-news__item {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.jbm-info-news__media {
		justify-content: flex-start;
	}

	.jbm-contact__intro {
		width: 100%;
	}

	.jbm-contact__email {
		margin-top: 28px;
	}

	.jbm-contact-form {
		margin-top: 24px;
	}

	.jbm-contact-form__submit-row {
		margin-top: 24px;
	}
}

@media (max-width: 640px) {
	.jbm-home__header {
		padding-left: 20px;
		padding-right: 20px;
	}

	.jbm-home__grid {
		padding-left: 20px;
		padding-right: 20px;
	}
}

@media (min-width: 981px) {
	.jbm-home,
	body.home {
		height: 100%;
	}

	body.home {
		overflow: hidden;
	}
}

body.jbm-shell-page .site-header,
body.jbm-shell-page .site-footer,
body.jbm-shell-page .page-header,
body.jbm-shell-page .hero-section,
body.jbm-shell-page .entry-header,
body.jbm-shell-page .entry-title,
body.jbm-shell-page .ct-header,
body.jbm-shell-page .ct-footer,
body.jbm-shell-page .ct-page-title,
body.jbm-shell-page .ct-header-spacer,
body.jbm-shell-page .ct-dynamic-hero-section {
	display: none !important;
}

body.jbm-shell-page .site-main {
	padding-top: 0 !important;
	margin-top: 0 !important;
}

body.jbm-shell-page .site-content,
body.jbm-shell-page .post,
body.jbm-shell-page .entry-content,
body.jbm-shell-page .wp-block-post-content,
body.jbm-shell-page .wp-block-shortcode,
body.jbm-shell-page .ct-container-full,
body.jbm-shell-page .ct-container {
	margin-top: 0 !important;
	margin-block-start: 0 !important;
	margin-block-end: 0 !important;
	padding-top: 0 !important;
	row-gap: 0 !important;
	gap: 0 !important;
}

body.jbm-shell-page .ct-container,
body.jbm-shell-page .entry-content,
body.jbm-shell-page article {
	max-width: none !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
	margin-top: 0 !important;
	padding-top: 0 !important;
}

body.jbm-shell-page .content-area,
body.jbm-shell-page .ct-content-area {
	margin-top: 0 !important;
	padding-top: 0 !important;
}

body.jbm-shell-page .entry-content > *:first-child {
	margin-top: 0 !important;
	padding-top: 0 !important;
}

body.jbm-shell-page .entry-content > * {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
	margin-block-start: 0 !important;
	margin-block-end: 0 !important;
	padding-top: 0 !important;
}

body.jbm-shell-page .entry-content > p:first-child,
body.jbm-shell-page .entry-content > .wp-block-shortcode:first-child,
body.jbm-shell-page .entry-content > .wp-block-group:first-child,
body.jbm-shell-page .entry-content > .wp-block-columns:first-child,
body.jbm-shell-page .entry-content > .wp-block-cover:first-child {
	margin-top: 0 !important;
	padding-top: 0 !important;
}

body.jbm-shell-page .entry-content > p:empty,
body.jbm-shell-page .entry-content > .wp-block-spacer:first-child {
	display: none !important;
}

body.jbm-shell-page .entry-content > p {
	margin: 0 !important;
	padding: 0 !important;
}

body.jbm-shell-page .jbm-home--works {
	width: 100%;
	max-width: none;
	margin: 0 !important;
	margin-block-start: 0 !important;
	padding-top: 0 !important;
	transform: none;
	position: relative;
	top: 0;
}

body.jbm-shell-page .jbm-home--info {
	width: 100%;
	max-width: none;
	margin: 0 !important;
	margin-block-start: 0 !important;
	padding-top: 0 !important;
	transform: none;
	position: relative;
	top: 0;
}

body.jbm-shell-page .jbm-home--contact {
	width: 100%;
	max-width: none;
	margin: 0 !important;
	margin-block-start: 0 !important;
	padding-top: 0 !important;
	transform: none;
	position: relative;
	top: 0;
}

@media (prefers-color-scheme: dark) {
	.jbm-home {
		--jbm-home-mobile-dock-backdrop: linear-gradient(to top, rgba(15, 19, 24, 1) 70%, rgba(15, 19, 24, 0));
		--jbm-home-mobile-footer-surface: rgba(15, 19, 24, 1);
	}

	body.home,
	body.jbm-shell-page {
		background: #0f1318;
	}

	body.jbm-shell-page .jbm-home {
		--jbm-home-text: #e8edf2;
		--jbm-home-muted: #a8b1bb;
		--jbm-home-light: #1a2027;
		--jbm-home-divider: #2a313a;
		--jbm-home-accent: #f2f5f8;
		--jbm-home-highlight: #57b8ff;
		--jbm-home-soft: #8f99a3;
		background: #0f1318;
		color: var(--jbm-home-text);
	}

	body.jbm-shell-page .jbm-home__hero {
		background: #0f1318;
	}

	body.jbm-shell-page .jbm-home__placeholder {
		color: #a8b1bb;
	}

	body.jbm-shell-page .jbm-home .jbm-audio-wave {
		--jbm-wave-bar: rgba(236, 242, 248, 0.28);
		--jbm-wave-progress: rgba(245, 249, 255, 0.88);
		--jbm-wave-text: rgba(222, 230, 238, 0.78);
	}

	body.jbm-shell-page .jbm-home .jbm-audio-wave__play {
		background: #edf2f7;
		color: #11151a;
	}

	body.jbm-shell-page .jbm-home .jbm-work-score__well {
		background: #202831;
		box-shadow:
			inset 0 0 0 1px rgba(255, 255, 255, 0.08),
			inset 0 18px 30px rgba(0, 0, 0, 0.22),
			inset 0 -16px 26px rgba(0, 0, 0, 0.28);
	}

	body.jbm-shell-page .jbm-home .jbm-work-score__well::after {
		background:
			linear-gradient(rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.02)),
			radial-gradient(120% 100% at 50% 50%, transparent 58%, rgba(0, 0, 0, 0.3) 100%);
	}

	body.jbm-shell-page .jbm-home .jbm-work-score__paper {
		background: #f7f9fb;
	}

	body.jbm-shell-page .jbm-home .jbm-work-score__line {
		background: #ced6de;
	}

}

body.jbm-shell-page.jbm-force-dark .jbm-home {
	--jbm-home-text: #e8edf2;
	--jbm-home-muted: #a8b1bb;
	--jbm-home-light: #1a2027;
	--jbm-home-divider: #2a313a;
	--jbm-home-accent: #f2f5f8;
	--jbm-home-highlight: #57b8ff;
	--jbm-home-soft: #8f99a3;
	--jbm-home-mobile-dock-backdrop: linear-gradient(to top, rgba(15, 19, 24, 1) 70%, rgba(15, 19, 24, 0));
	--jbm-home-mobile-footer-surface: rgba(15, 19, 24, 1);
	background: #0f1318;
	color: var(--jbm-home-text);
}

body.jbm-shell-page.jbm-force-dark .jbm-home__hero {
	background: #0f1318;
}

body.jbm-shell-page.jbm-force-dark .jbm-home__placeholder {
	color: #a8b1bb;
}

body.jbm-shell-page.jbm-force-dark .jbm-home .jbm-audio-wave {
	--jbm-wave-bar: rgba(236, 242, 248, 0.28);
	--jbm-wave-progress: rgba(245, 249, 255, 0.88);
	--jbm-wave-text: rgba(222, 230, 238, 0.78);
}

body.jbm-shell-page.jbm-force-dark .jbm-home .jbm-audio-wave__play {
	background: #edf2f7;
	color: #11151a;
}

body.jbm-shell-page.jbm-force-dark .jbm-home .jbm-work-score__well {
	background: #202831;
	box-shadow:
		inset 0 0 0 1px rgba(255, 255, 255, 0.08),
		inset 0 18px 30px rgba(0, 0, 0, 0.22),
		inset 0 -16px 26px rgba(0, 0, 0, 0.28);
}

body.jbm-shell-page.jbm-force-dark .jbm-home .jbm-work-score__well::after {
	background:
		linear-gradient(rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.02)),
		radial-gradient(120% 100% at 50% 50%, transparent 58%, rgba(0, 0, 0, 0.3) 100%);
}

body.jbm-shell-page.jbm-force-dark .jbm-home .jbm-work-score__paper {
	background: #f7f9fb;
}

body.jbm-shell-page.jbm-force-dark .jbm-home .jbm-work-score__line {
	background: #ced6de;
}

@media (min-width: 981px) {
	body.jbm-shell-page .jbm-home:not(.jbm-home--works):not(.jbm-home--info):not(.jbm-home--contact) .jbm-home__col--left,
	body.jbm-shell-page .jbm-home:not(.jbm-home--works):not(.jbm-home--info):not(.jbm-home--contact) .jbm-home__col--right {
		padding-bottom: calc(30px + 56px);
	}

	body.jbm-shell-page .jbm-home:not(.jbm-home--works):not(.jbm-home--info):not(.jbm-home--contact) .jbm-home__socials {
		position: fixed;
		left: calc(var(--jbm-home-dock-side) + env(safe-area-inset-left, 0px));
		bottom: calc(var(--jbm-home-dock-bottom) + var(--jbm-home-dock-baseline-nudge) + var(--jbm-home-dock-socials-nudge) + env(safe-area-inset-bottom, 0px));
		margin: 0;
		z-index: var(--jbm-home-dock-z);
	}

	body.jbm-shell-page .jbm-home:not(.jbm-home--works):not(.jbm-home--info):not(.jbm-home--contact) .jbm-home__contact {
		position: fixed;
		left: 0;
		right: 0;
		display: grid;
		grid-template-columns: minmax(180px, 1fr) minmax(420px, 2.4fr) minmax(200px, 1fr);
		padding: 0 var(--jbm-home-dock-side);
		bottom: calc(var(--jbm-home-dock-bottom) + var(--jbm-home-dock-baseline-nudge) + env(safe-area-inset-bottom, 0px));
		margin: 0;
		z-index: var(--jbm-home-dock-z);
		pointer-events: none;
		font-size: 13px;
	}

	body.jbm-shell-page .jbm-home:not(.jbm-home--works):not(.jbm-home--info):not(.jbm-home--contact) .jbm-home__col--right .jbm-home__contact {
		text-align: left;
		justify-self: auto;
		align-self: auto;
	}

	body.jbm-shell-page .jbm-home:not(.jbm-home--works):not(.jbm-home--info):not(.jbm-home--contact) .jbm-home__contact a {
		grid-column: 3;
		justify-self: start;
		margin-left: 32px;
		pointer-events: auto;
		white-space: nowrap;
	}

	body.jbm-shell-page .jbm-home--works .jbm-home__col--center,
	body.jbm-shell-page .jbm-home--info .jbm-home__col--center,
	body.jbm-shell-page .jbm-home--contact .jbm-home__col--center {
		padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
		scroll-padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
	}

body.jbm-shell-page .jbm-home--works .jbm-home__center-footer,
body.jbm-shell-page .jbm-home--info .jbm-home__center-footer,
body.jbm-shell-page .jbm-home--contact .jbm-home__center-footer {
	position: relative;
	z-index: calc(var(--jbm-home-dock-z) + 1);
}

	body.jbm-shell-page .jbm-home--works::before,
	body.jbm-shell-page .jbm-home--info::before,
	body.jbm-shell-page .jbm-home--contact::before {
		content: "";
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		height: var(--jbm-home-dock-fade-height);
		background: var(--jbm-home-dock-backdrop);
		pointer-events: none;
		z-index: calc(var(--jbm-home-dock-z) - 1);
	}

	body.jbm-shell-page .jbm-home--works .jbm-home__socials,
	body.jbm-shell-page .jbm-home--info .jbm-home__socials,
	body.jbm-shell-page .jbm-home--contact .jbm-home__socials {
		position: fixed;
		left: calc(var(--jbm-home-dock-side) + env(safe-area-inset-left, 0px));
		bottom: calc(var(--jbm-home-dock-bottom) + var(--jbm-home-dock-baseline-nudge) + var(--jbm-home-dock-socials-nudge) + env(safe-area-inset-bottom, 0px));
		margin: 0;
		z-index: var(--jbm-home-dock-z);
	}

	body.jbm-shell-page .jbm-home--works .jbm-home__col--right,
	body.jbm-shell-page .jbm-home--info .jbm-home__col--right,
	body.jbm-shell-page .jbm-home--contact .jbm-home__col--right {
		padding-bottom: calc(30px + 56px);
	}

	body.jbm-shell-page .jbm-home--works .jbm-home__event--right,
	body.jbm-shell-page .jbm-home--info .jbm-home__event--right,
	body.jbm-shell-page .jbm-home--contact .jbm-home__event--right {
		margin-bottom: calc(var(--jbm-home-dock-bottom) + 10px);
	}

	body.jbm-shell-page .jbm-home--works .jbm-home__contact,
	body.jbm-shell-page .jbm-home--info .jbm-home__contact,
	body.jbm-shell-page .jbm-home--contact .jbm-home__contact {
		position: fixed;
		left: 0;
		right: 0;
		display: grid;
		grid-template-columns: minmax(180px, 1fr) minmax(420px, 2.4fr) minmax(200px, 1fr);
		padding: 0 var(--jbm-home-dock-side);
		bottom: calc(var(--jbm-home-dock-bottom) + var(--jbm-home-dock-baseline-nudge) + env(safe-area-inset-bottom, 0px));
		margin: 0;
		z-index: var(--jbm-home-dock-z);
		pointer-events: none;
		font-size: 13px;
	}

	body.jbm-shell-page .jbm-home--works .jbm-home__col--right .jbm-home__contact,
	body.jbm-shell-page .jbm-home--info .jbm-home__col--right .jbm-home__contact,
	body.jbm-shell-page .jbm-home--contact .jbm-home__col--right .jbm-home__contact {
		text-align: left;
		justify-self: auto;
		align-self: auto;
	}

	body.jbm-shell-page .jbm-home--works .jbm-home__contact a,
	body.jbm-shell-page .jbm-home--info .jbm-home__contact a,
	body.jbm-shell-page .jbm-home--contact .jbm-home__contact a {
		grid-column: 3;
		justify-self: start;
		margin-left: 32px;
		pointer-events: auto;
		white-space: nowrap;
	}
}

@media (prefers-color-scheme: dark) and (min-width: 981px) {
	body.jbm-shell-page .jbm-home {
		--jbm-home-dock-backdrop: linear-gradient(to top, rgba(15, 19, 24, 0.985) 0%, rgba(15, 19, 24, 0.92) 42%, rgba(15, 19, 24, 0) 100%);
	}
}

@media (min-width: 981px) {
	body.jbm-shell-page.jbm-force-dark .jbm-home {
		--jbm-home-dock-backdrop: linear-gradient(to top, rgba(15, 19, 24, 0.985) 0%, rgba(15, 19, 24, 0.92) 42%, rgba(15, 19, 24, 0) 100%);
	}
}
