:root {
	--cream: #fff8e8;
	--cream-2: #f3ecda;
	--paper: rgba(255, 250, 239, 0.92);
	--paper-strong: rgba(255, 248, 232, 0.97);
	--ink: #1d2558;
	--ink-soft: #42538f;
	--electric: #2f46da;
	--sun: #efc45d;
	--teal: #1c8f8a;
	--rose: #ff7d64;
	--line: rgba(34, 49, 139, 0.18);
	--shadow: 0 24px 60px rgba(23, 31, 87, 0.18);
	--shadow-soft: 0 14px 32px rgba(23, 31, 87, 0.1);
	--radius-xl: 30px;
	--radius-lg: 22px;
	--radius-md: 16px;
	--max-width: 1180px;
}

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

html {
	scroll-behavior: smooth;
}

body.refresh-body {
	margin: 0;
	color: var(--ink);
	font-family: "Barlow Semi Condensed", "Trebuchet MS", sans-serif;
	line-height: 1.5;
	background:
		radial-gradient(circle at 15% 20%, rgba(255, 233, 165, 0.72), transparent 28%),
		radial-gradient(circle at 80% 10%, rgba(82, 192, 216, 0.18), transparent 24%),
		linear-gradient(180deg, #fff9e9 0%, #f7f0df 38%, #fffaf0 100%);
}

body.refresh-body::before {
	content: "";
	position: fixed;
	inset: 0;
	pointer-events: none;
	opacity: 0.28;
	background:
		linear-gradient(rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.18)),
		repeating-linear-gradient(
			180deg,
			rgba(31, 41, 109, 0.045) 0,
			rgba(31, 41, 109, 0.045) 1px,
			transparent 1px,
			transparent 6px
		);
}

body.refresh-body img,
body.refresh-body video {
	display: block;
	max-width: 100%;
	height: auto;
}

body.refresh-body a {
	color: inherit;
	text-decoration: none;
}

body.refresh-body p,
body.refresh-body li,
body.refresh-body td,
body.refresh-body select,
body.refresh-body input,
body.refresh-body button {
	font-size: 1.08rem;
}

.site-shell {
	position: relative;
	width: min(calc(100% - 32px), var(--max-width));
	margin: 0 auto;
	padding: 24px 0 56px;
}

.topbar,
.panel {
	background: var(--paper);
	border: 2px solid rgba(47, 70, 218, 0.18);
	box-shadow: var(--shadow-soft);
	backdrop-filter: blur(8px);
}

.topbar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px 24px;
	margin-bottom: 22px;
	padding: 14px 18px;
	border-radius: 999px;
}

.topbar__strap,
.kicker {
	margin: 0;
	font-family: "Orbitron", sans-serif;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--ink-soft);
}

.topbar__nav {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.topbar__nav a {
	padding: 10px 14px;
	border-radius: 999px;
	font-weight: 600;
	color: var(--ink);
	transition: transform 140ms ease, background-color 140ms ease, color 140ms ease;
}

.topbar__nav a:hover,
.topbar__nav a:focus-visible,
.button:hover,
.button:focus-visible,
.portal-card:hover,
.portal-card:focus-visible {
	transform: translateY(-2px);
}

.topbar__nav a:hover,
.topbar__nav a:focus-visible {
	background: rgba(239, 196, 93, 0.26);
	color: var(--electric);
}

h1,
h2,
h3,
h4 {
	margin: 0;
	font-family: "Orbitron", sans-serif;
	line-height: 1.08;
}

h1 {
	font-size: clamp(2.5rem, 5vw, 4.7rem);
	letter-spacing: -0.03em;
}

h2 {
	font-size: clamp(1.6rem, 3vw, 2.3rem);
}

h3 {
	font-size: 1.2rem;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 12px 22px;
	border-radius: 999px;
	font-weight: 700;
	box-shadow: 0 14px 24px rgba(34, 49, 139, 0.1);
	transition: transform 140ms ease, box-shadow 140ms ease, background-color 140ms ease;
}

.button:hover,
.button:focus-visible {
	box-shadow: 0 18px 28px rgba(34, 49, 139, 0.14);
}

.button--primary {
	background: linear-gradient(135deg, var(--electric), #4a6eff);
	color: #fff;
}

.button--secondary {
	background: rgba(255, 248, 232, 0.82);
	border: 1px solid rgba(47, 70, 218, 0.14);
}

.hero {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
	gap: 28px;
	align-items: center;
	padding: 18px 0 12px;
}

.hero__copy,
.hero__visual,
.feature-card,
.footer,
.product-hero,
.product-details,
.order-panel,
.checkout-panel {
	border-radius: var(--radius-xl);
}

.hero__copy {
	padding: 10px 4px 10px 0;
}

.hero__logo {
	width: min(100%, 520px);
	margin: 18px 0 24px;
	filter: drop-shadow(0 12px 28px rgba(47, 70, 218, 0.18));
}

.hero__lede,
.lead,
.feature-card p,
.portal-card p,
.panel p,
.panel li,
.panel td {
	font-size: 1.12rem;
}

.hero__lede {
	max-width: 35rem;
	margin: 18px 0 0;
	color: rgba(29, 37, 88, 0.84);
}

.hero__actions,
.feature-card__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 28px;
}

.panel {
	padding: 24px;
}

.panel--hero {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	background:
		linear-gradient(160deg, rgba(255, 255, 255, 0.86), rgba(255, 245, 218, 0.96)),
		url("../images/keyB-dark-1024x686.jpg") center/cover;
}

.hero-card {
	overflow: hidden;
	border-radius: var(--radius-lg);
	border: 1px solid rgba(47, 70, 218, 0.14);
	background: var(--paper-strong);
}

.hero-card--photo {
	grid-column: 1 / -1;
	padding: 18px;
	background:
		radial-gradient(circle at top right, rgba(239, 196, 93, 0.3), transparent 40%),
		linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 248, 232, 0.98));
}

.hero-card--photo img {
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: calc(var(--radius-lg) - 6px);
	box-shadow: var(--shadow-soft);
}

.hero-card--quote,
.hero-card--stats {
	padding: 18px;
}

.hero-card--quote {
	background: linear-gradient(135deg, rgba(255, 125, 100, 0.9), rgba(255, 169, 109, 0.9));
	color: #fff;
	font-size: 1.15rem;
	font-weight: 600;
}

.hero-card--stats {
	display: grid;
	align-content: center;
	gap: 8px;
	background: linear-gradient(135deg, rgba(28, 143, 138, 0.14), rgba(47, 70, 218, 0.12));
}

.section {
	padding-top: 54px;
}

.content-stack {
	display: grid;
	gap: 28px;
}

.section-heading {
	display: grid;
	gap: 10px;
	margin-bottom: 24px;
}

.section-heading--compact {
	margin-bottom: 18px;
}

.portal-grid,
.feature-grid,
.news-grid,
.story-grid,
.info-grid,
.gallery-grid,
.offer-grid,
.spec-grid,
.cards-3 {
	display: grid;
	gap: 20px;
}

.portal-grid,
.feature-grid,
.news-grid,
.story-grid,
.info-grid,
.gallery-grid,
.spec-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cards-3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.offer-grid {
	grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
	align-items: start;
}

.portal-card,
.feature-card,
.news-card,
.story-card,
.info-card,
.spec-card,
.offer-card {
	display: block;
	height: 100%;
	position: relative;
	overflow: hidden;
	padding: 24px;
	border-radius: var(--radius-lg);
	background: linear-gradient(160deg, rgba(255, 250, 239, 0.98), rgba(243, 236, 218, 0.92));
	border: 1px solid rgba(47, 70, 218, 0.12);
	box-shadow: var(--shadow-soft);
}

.hero-card p {
	margin: 0;
}

.portal-card::before,
.feature-card::before,
.news-card::before,
.story-card::before,
.info-card::before,
.spec-card::before,
.offer-card::before {
	content: "";
	position: absolute;
	inset: 0 auto 0 0;
	width: 10px;
	background: linear-gradient(180deg, var(--sun), var(--electric));
}

.portal-card__eyebrow,
.status-pill {
	display: inline-block;
	margin-bottom: 10px;
	padding: 5px 10px;
	border-radius: 999px;
	background: rgba(47, 70, 218, 0.1);
	font-family: "Orbitron", sans-serif;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--ink-soft);
}

.media-frame {
	margin: 16px 0 18px;
	overflow: hidden;
	border-radius: 18px;
	box-shadow: var(--shadow-soft);
}

.media-frame img,
.media-frame video {
	width: 100%;
}

.media-frame--small {
	max-width: 360px;
}

.video-frame {
	margin: 18px 0;
	overflow: hidden;
	border-radius: var(--radius-lg);
	background: rgba(16, 23, 65, 0.08);
	box-shadow: var(--shadow);
}

.video-frame iframe {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	border: 0;
}

.journey-strip {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 16px;
}

.journey-strip img,
.gallery-grid img {
	aspect-ratio: 1 / 1.05;
	object-fit: cover;
	border-radius: 20px;
	box-shadow: var(--shadow-soft);
	border: 1px solid rgba(47, 70, 218, 0.14);
}

.disclosure {
	margin-top: 18px;
	border: 1px solid rgba(47, 70, 218, 0.16);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.54);
}

.disclosure summary {
	cursor: pointer;
	padding: 14px 16px;
	font-weight: 700;
	color: var(--ink);
}

.disclosure__body {
	padding: 0 16px 16px;
}

.table-wrap {
	overflow-x: auto;
}

.spec-table {
	width: 100%;
	border-collapse: collapse;
}

.spec-table th,
.spec-table td {
	padding: 12px 14px;
	text-align: left;
	vertical-align: top;
	border: 1px solid rgba(47, 70, 218, 0.18);
	background: rgba(255, 255, 255, 0.88);
}

.spec-table th {
	font-family: "Orbitron", sans-serif;
	font-size: 0.9rem;
	color: var(--ink-soft);
}

.inline-list,
.feature-list,
.micro-list {
	margin: 16px 0 0;
	padding-left: 20px;
}

.microcopy {
	margin-top: 14px;
	color: rgba(29, 37, 88, 0.78);
	font-size: 0.98rem;
}

.product-layout {
	display: grid;
	gap: 28px;
}

.product-hero {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	gap: 24px;
	align-items: center;
	background:
		radial-gradient(circle at top right, rgba(239, 196, 93, 0.24), transparent 34%),
		linear-gradient(160deg, rgba(255, 255, 255, 0.93), rgba(243, 236, 218, 0.95));
}

.product-hero__media img,
.feature-card__image {
	width: 100%;
	border-radius: calc(var(--radius-xl) - 6px);
	box-shadow: var(--shadow);
}

.product-price,
.order-panel__price {
	font-family: "Orbitron", sans-serif;
	font-size: 1.28rem;
	color: var(--electric);
}

.product-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
	gap: 24px;
	align-items: start;
}

.product-main,
.product-sidebar,
.card-stack {
	display: grid;
	gap: 22px;
}

.product-sidebar {
	position: sticky;
	top: 18px;
}

.product-details {
	display: grid;
	grid-template-columns: minmax(180px, 0.55fr) minmax(0, 1fr);
	gap: 20px;
	align-items: center;
}

.order-panel,
.checkout-panel {
	display: grid;
	gap: 14px;
	background:
		radial-gradient(circle at top right, rgba(239, 196, 93, 0.2), transparent 40%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 238, 220, 0.96));
}

.order-panel__notes {
	display: grid;
	gap: 10px;
	padding-top: 6px;
	border-top: 1px solid var(--line);
}

.paypal-form {
	display: grid;
	gap: 14px;
	margin-top: 12px;
}

.paypal-form table {
	width: 100%;
}

.paypal-form td {
	padding: 0;
}

.paypal-form select {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid rgba(47, 70, 218, 0.26);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.88);
	color: var(--ink);
	font-family: inherit;
}

.paypal-form input[type="image"] {
	max-width: 210px;
	height: auto;
}

.notice-panel {
	display: grid;
	gap: 10px;
}

.feature-columns {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.page-main,
.stack {
	display: grid;
	gap: 24px;
}

.page-hero {
	display: grid;
	gap: 24px;
	align-items: center;
	background:
		radial-gradient(circle at top right, rgba(239, 196, 93, 0.24), transparent 34%),
		linear-gradient(160deg, rgba(255, 255, 255, 0.93), rgba(243, 236, 218, 0.95));
}

.page-hero__media img {
	width: 100%;
	border-radius: calc(var(--radius-xl) - 6px);
	box-shadow: var(--shadow);
}

.media-hero {
	grid-template-columns: minmax(0, 1fr) minmax(190px, 300px);
}

.media-hero .page-hero__media {
	justify-self: end;
	max-width: 300px;
}

.omnipedia-hero {
	grid-template-columns: minmax(0, 1fr) minmax(280px, 0.86fr);
}

.omnipedia-hero--compact {
	display: block;
	padding: 22px 24px;
}

.omnipedia-hero--compact h1 {
	max-width: 18ch;
	font-size: clamp(2rem, 4vw, 3rem);
	letter-spacing: 0;
}

.omnipedia-hero--compact .lead {
	max-width: 58rem;
	margin-bottom: 0;
}

.media-hero.omnipedia-hero--compact {
	display: grid;
	align-items: center;
}

.media-hero.omnipedia-hero--compact h1 {
	max-width: 22ch;
}

.qchord-hero.omnipedia-hero--compact {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(220px, 360px);
	align-items: center;
}

.qchord-hero .page-hero__media {
	justify-self: end;
	max-width: 360px;
}

.omnipedia-story {
	display: grid;
	gap: 18px;
}

.omnipedia-story h2 {
	margin-top: 14px;
}

.omnipedia-story h2:first-child {
	margin-top: 0;
}

.omnipedia-layout {
	display: grid;
	grid-template-columns: 230px minmax(0, 1fr);
	gap: 22px;
	align-items: start;
}

.strumplate-panel {
	position: sticky;
	top: 18px;
	padding: 18px;
	border-radius: var(--radius-lg);
	background:
		linear-gradient(160deg, rgba(255, 250, 239, 0.98), rgba(243, 236, 218, 0.92));
	border: 1px solid rgba(47, 70, 218, 0.16);
	box-shadow: var(--shadow-soft);
}

.strumplate-panel h2 {
	margin-bottom: 14px;
	font-size: 1rem;
}

.strumplate-list {
	display: grid;
	gap: 7px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.strumplate-list a {
	display: block;
	padding: 8px 10px;
	border-radius: 7px;
	background:
		linear-gradient(90deg, rgba(239, 196, 93, 0.88), rgba(26, 111, 79, 0.88)),
		url("../images/cream-chord-button.jpg") center/cover;
	color: #fff;
	font-weight: 800;
	line-height: 1.1;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.38);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
	transition: transform 140ms ease, filter 140ms ease;
}

.strumplate-list a:hover,
.strumplate-list a:focus-visible {
	transform: translateX(3px);
	filter: saturate(1.12);
}

.strumplate-list a[aria-current="page"] {
	background:
		linear-gradient(90deg, rgba(47, 70, 218, 0.95), rgba(28, 143, 138, 0.92)),
		url("../images/cream-chord-button.jpg") center/cover;
}

.strumplate-note {
	margin-top: 18px;
	font-size: 0.94rem;
}

.strumplate-note img {
	float: right;
	width: 82px;
	margin: 0 0 8px 10px;
	border-radius: 6px;
	box-shadow: var(--shadow-soft);
}

.omnipedia-article {
	overflow: auto;
	background:
		linear-gradient(180deg, rgba(255, 253, 230, 0.96), rgba(255, 250, 239, 0.98));
}

.omnipedia-article p {
	margin: 0 0 15px;
	font-size: 1rem;
	line-height: 1.45;
}

.omnipedia-article img {
	max-width: 100%;
	height: auto;
}

.omnipedia-article a {
	color: var(--electric);
	font-weight: 800;
	text-decoration: underline;
	text-decoration-thickness: 2px;
	text-underline-offset: 4px;
}

.omnipedia-article a:hover,
.omnipedia-article a:focus-visible {
	color: var(--teal);
}

.omnipedia-article ul,
.omnipedia-article ol {
	margin: 0 0 18px;
	padding-left: 24px;
}

.omnipedia-article li {
	margin-bottom: 6px;
}

.omnipedia-article h3,
.omnipedia-article h4,
.omnipedia-article h5,
.omnipedia-article h6 {
	margin: 18px 0 10px;
	color: var(--ink);
}

.omnipedia-article table {
	width: 100%;
	margin: 14px 0 18px;
	border-collapse: collapse;
}

.accessory-image-row,
.gallery-image-row {
	clear: both;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 18px;
	align-items: start;
	margin: 18px 0 22px;
}

.accessory-image-row img,
.gallery-image-row img {
	width: 100%;
	border-radius: 8px;
	box-shadow: var(--shadow-soft);
}

.omnipedia-article td,
.omnipedia-article th {
	padding: 8px 10px;
	vertical-align: top;
	border: 1px solid rgba(47, 70, 218, 0.14);
	background: rgba(255, 255, 255, 0.6);
}

.omnipedia-article .headingCopy {
	padding: 12px 14px;
	border: 2px solid var(--electric);
	border-radius: 8px;
	background: rgba(255, 255, 204, 0.84);
}

.article-heading {
	clear: both;
	margin: 12px 0 16px;
	padding: 4px 12px;
	border: 2px solid var(--electric);
	border-radius: 8px;
	background: rgba(255, 255, 204, 0.84);
	color: var(--ink);
	font-size: 1.28rem;
}

.article-subheading {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	margin: 10px 0 12px;
	padding: 8px 14px;
	border: 2px solid var(--electric);
	border-radius: 8px;
	background: rgba(255, 255, 204, 0.84);
	font-family: "Orbitron", sans-serif;
	font-weight: 700;
	color: var(--ink);
}

.article-subheading img {
	float: none !important;
	width: 82px !important;
	margin: 0 !important;
	box-shadow: none;
}

.service-article {
	overflow-wrap: anywhere;
}

.service-article img[style*="float"] {
	margin-bottom: 12px;
	border-radius: 8px;
	box-shadow: var(--shadow-soft);
}

.service-article .article-subheading img {
	border-radius: 0;
	box-shadow: none;
}

.service-article select {
	max-width: 100%;
}

.service-article img[src*="pixel.gif"] {
	display: none;
}

.service-card-grid {
	clear: both;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	margin: 20px 0 8px;
}

.service-card {
	display: block;
	min-height: 100%;
	padding: 16px;
	border: 1px solid rgba(47, 70, 218, 0.14);
	border-radius: var(--radius-md);
	background: linear-gradient(160deg, rgba(255, 250, 239, 0.98), rgba(243, 236, 218, 0.9));
	box-shadow: var(--shadow-soft);
	text-decoration: none !important;
	transition: transform 140ms ease, box-shadow 140ms ease;
}

.service-card:hover,
.service-card:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 18px 32px rgba(23, 31, 87, 0.14);
}

.service-card span {
	display: block;
	margin-bottom: 4px;
	font-family: "Orbitron", sans-serif;
	font-size: 0.72rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--ink-soft);
}

.service-card strong {
	display: block;
	margin-bottom: 4px;
	color: var(--ink);
}

.service-downloads a {
	display: grid;
	gap: 10px;
	align-content: start;
	padding: 12px;
	border: 1px solid rgba(47, 70, 218, 0.14);
	border-radius: var(--radius-md);
	background: rgba(255, 255, 255, 0.66);
	text-align: center;
	text-decoration: none !important;
}

.service-downloads a img {
	margin: 0 auto;
}

.manual-grid {
	margin-top: 22px;
}

.manual-card {
	display: flex;
	flex-direction: column;
}

.manual-card .media-frame {
	background: rgba(255, 255, 255, 0.72);
}

.manual-card .media-frame img {
	aspect-ratio: 0.72 / 1;
	object-fit: contain;
	padding: 10px;
}

.brochure-card .media-frame img {
	aspect-ratio: 1.35 / 1;
}

.manual-card__actions {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: auto;
}

.manual-card__link,
.manual-card__pending {
	display: inline-flex;
	align-self: flex-start;
	padding: 8px 12px;
	border-radius: 999px;
	font-weight: 800;
}

.manual-card__link {
	background: rgba(47, 70, 218, 0.1);
}

.manual-card__share {
	display: inline-grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border: 0;
	border-radius: 50%;
	background: linear-gradient(135deg, rgba(47, 70, 218, 0.14), rgba(28, 143, 138, 0.16));
	color: var(--electric);
	cursor: pointer;
	box-shadow: var(--shadow-soft);
	transition: transform 140ms ease, background-color 140ms ease, color 140ms ease;
}

.manual-card__share:hover,
.manual-card__share:focus-visible {
	transform: translateY(-2px);
	color: var(--teal);
}

.manual-card__share svg {
	width: 21px;
	height: 21px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.manual-card__share--copied {
	background: linear-gradient(135deg, rgba(28, 143, 138, 0.22), rgba(239, 196, 93, 0.26));
	color: var(--teal);
}

.manual-card__pending {
	margin-top: auto;
	background: rgba(239, 196, 93, 0.2);
	color: var(--ink-soft);
}

.download-options {
	display: grid;
	gap: 10px;
	margin-top: auto;
}

.download-option {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	padding: 8px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.58);
	box-shadow: inset 0 0 0 1px rgba(47, 70, 218, 0.08);
}

.download-option__label {
	min-width: 42px;
	font-family: "Orbitron", sans-serif;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	color: var(--ink-soft);
	text-transform: uppercase;
}

.artist-jump-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	margin-top: 18px;
}

.artist-jump-grid a {
	padding: 10px 12px;
	border-radius: 999px;
	background: rgba(47, 70, 218, 0.1);
	font-size: 0.88rem;
}

.artist-list {
	display: grid;
	gap: 22px;
}

.artist-card {
	padding: 22px;
	overflow: hidden;
	border: 1px solid rgba(47, 70, 218, 0.16);
	border-radius: var(--radius-lg);
	background:
		radial-gradient(circle at top right, rgba(239, 196, 93, 0.18), transparent 34%),
		linear-gradient(160deg, rgba(255, 250, 239, 0.98), rgba(243, 236, 218, 0.9));
	box-shadow: var(--shadow-soft);
}

.artist-card__header {
	margin-bottom: 16px;
}

.artist-card__header h2 {
	margin: 0;
	font-size: clamp(1.35rem, 2.6vw, 2rem);
}

.artist-card__media {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin: 0 0 16px;
}

.artist-card__media--single,
.artist-card__media--inline {
	grid-template-columns: minmax(0, 280px);
}

.artist-card__media--inline {
	margin-top: 6px;
}

.artist-card__media img {
	width: 100%;
	aspect-ratio: 1 / 0.82;
	object-fit: cover;
	border-radius: 18px;
	box-shadow: var(--shadow-soft);
}

.artist-card__media--inline img {
	aspect-ratio: 1;
	object-fit: contain;
	background: rgba(255, 255, 255, 0.62);
}

.artist-card p {
	margin: 0 0 14px;
	line-height: 1.5;
}

.artist-card__links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 18px 0 0;
	padding: 0;
	list-style: none;
}

.artist-card__links a {
	display: inline-flex;
	padding: 8px 12px;
	border-radius: 999px;
	background: rgba(47, 70, 218, 0.1);
	font-weight: 800;
}

.festival-hero.omnipedia-hero--compact {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(240px, 420px);
	align-items: center;
}

.festival-hero .page-hero__media {
	justify-self: end;
}

.festival-hero .page-hero__media img {
	object-fit: contain;
	background: rgba(255, 255, 255, 0.74);
}

.festival-schedule {
	display: grid;
	gap: 10px;
	margin-top: 18px;
}

.festival-schedule__row {
	display: grid;
	grid-template-columns: 84px 84px 84px minmax(0, 1fr) auto;
	gap: 12px;
	align-items: center;
	padding: 12px 14px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.62);
	box-shadow: inset 0 0 0 1px rgba(47, 70, 218, 0.08);
}

.festival-schedule__row--head {
	background: rgba(47, 70, 218, 0.12);
	font-family: "Orbitron", sans-serif;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ink-soft);
}

.festival-schedule__time {
	font-family: "Orbitron", sans-serif;
	font-weight: 800;
	color: var(--electric);
}

.festival-poster {
	max-width: 560px;
	margin-inline: auto;
	background: rgba(255, 255, 255, 0.72);
}

.festival-poster img {
	max-height: 760px;
	object-fit: contain;
	background: rgba(255, 255, 255, 0.72);
}

.contact-methods {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	clear: both;
	margin-top: 20px;
}

.contact-method {
	display: grid;
	gap: 5px;
	padding: 14px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.58);
	box-shadow:
		inset 4px 0 0 rgba(47, 70, 218, 0.75),
		var(--shadow-soft);
}

.contact-method span {
	font-family: "Orbitron", sans-serif;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	color: var(--ink-soft);
	text-transform: uppercase;
}

.contact-method strong {
	font-size: 1rem;
	overflow-wrap: anywhere;
}

.oh27-showcase {
	display: grid;
	gap: 18px;
}

.oh27-slider {
	display: grid;
	gap: 14px;
}

.oh27-slider__viewport {
	overflow: hidden;
	border-radius: var(--radius-lg);
	background:
		radial-gradient(circle at top right, rgba(239, 196, 93, 0.16), transparent 36%),
		rgba(255, 255, 255, 0.74);
	box-shadow: var(--shadow-soft);
}

.oh27-slide {
	margin: 0;
	padding: 14px;
}

.oh27-slide[hidden] {
	display: none;
}

.oh27-slide img {
	width: 100%;
	height: auto;
	object-fit: contain;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.78);
	box-shadow: inset 0 0 0 1px rgba(47, 70, 218, 0.08);
}

.oh27-slide figcaption {
	margin-top: 12px;
	color: rgba(29, 37, 88, 0.78);
	font-weight: 700;
}

.oh27-slider__controls,
.oh27-slider__dots {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	justify-content: center;
}

.oh27-slider__button,
.oh27-slider__dot {
	border: 0;
	font: inherit;
	cursor: pointer;
}

.oh27-slider__button {
	padding: 10px 14px;
	border-radius: 999px;
	background: linear-gradient(135deg, rgba(47, 70, 218, 0.95), rgba(28, 143, 138, 0.9));
	color: #fff;
	font-weight: 800;
	box-shadow: var(--shadow-soft);
}

.oh27-slider__counter {
	min-width: 82px;
	font-family: "Orbitron", sans-serif;
	font-size: 0.78rem;
	font-weight: 800;
	text-align: center;
	color: var(--ink-soft);
}

.oh27-slider__dot {
	padding: 7px 10px;
	border-radius: 999px;
	background: rgba(47, 70, 218, 0.1);
	color: var(--ink);
	font-size: 0.84rem;
	font-weight: 800;
}

.oh27-slider__dot[aria-current="true"] {
	background: linear-gradient(135deg, rgba(47, 70, 218, 0.95), rgba(28, 143, 138, 0.9));
	color: #fff;
}

.oh27-menu-panel {
	align-items: start;
}

.oh27-menu-panel .media-frame {
	margin: 0;
}

.catalog-section {
	display: grid;
	gap: 18px;
	padding: 22px;
	border: 1px solid rgba(47, 70, 218, 0.16);
	border-radius: var(--radius-xl);
	background:
		radial-gradient(circle at top right, rgba(239, 196, 93, 0.16), transparent 34%),
		linear-gradient(160deg, rgba(255, 250, 239, 0.96), rgba(243, 236, 218, 0.9));
	box-shadow: var(--shadow-soft);
}

.catalog-section .product-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.catalog-section .product-grid--compact {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 16px;
	border: 1px solid rgba(47, 70, 218, 0.14);
	border-radius: var(--radius-lg);
	background: rgba(255, 255, 255, 0.58);
	box-shadow: var(--shadow-soft);
}

.product-card img {
	width: 100%;
	aspect-ratio: 1.15 / 1;
	object-fit: contain;
	padding: 10px;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.68);
}

.product-card__eyebrow {
	font-family: "Orbitron", sans-serif;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	color: var(--electric);
	text-transform: uppercase;
}

.product-card h3 {
	margin: 0;
	font-size: 1.18rem;
}

.product-card p {
	margin: 0;
}

.track-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 5px 14px;
	margin: 0;
	padding-left: 18px;
	font-size: 0.92rem;
}

.product-card__purchase {
	display: grid;
	gap: 10px;
	margin-top: auto;
	padding-top: 12px;
	border-top: 1px solid rgba(47, 70, 218, 0.12);
}

.product-card__price {
	display: inline-flex;
	align-self: flex-start;
	padding: 7px 11px;
	border-radius: 999px;
	background: rgba(239, 196, 93, 0.22);
	font-weight: 800;
	color: var(--ink);
}

.product-card__price--muted {
	background: rgba(47, 70, 218, 0.1);
	color: var(--ink-soft);
}

.product-card__button:disabled {
	cursor: not-allowed;
	opacity: 0.62;
}

.service-article--parts form {
	display: inline-block;
	max-width: 100%;
	margin: 10px 0 16px;
	padding: 12px;
	border: 1px solid rgba(47, 70, 218, 0.12);
	border-radius: var(--radius-md);
	background: rgba(255, 255, 255, 0.7);
}

.service-article--parts form table {
	margin: 0 0 10px;
}

.service-article--parts input[type="image"] {
	display: block;
	width: auto;
	max-width: 180px;
	height: auto;
}

.service-article--parts img[src*="line.jpg"] {
	margin: 14px 0;
	border-radius: 0;
	box-shadow: none;
	opacity: 0.46;
}

.area51-post {
	margin-top: 24px;
	padding: 22px;
	border: 1px solid rgba(47, 70, 218, 0.16);
	border-radius: var(--radius-lg);
	background:
		radial-gradient(circle at top right, rgba(47, 70, 218, 0.1), transparent 32%),
		linear-gradient(160deg, rgba(255, 250, 239, 0.98), rgba(243, 236, 218, 0.9));
	box-shadow: var(--shadow-soft);
}

.area51-contents {
	margin: 22px 0 8px;
	padding: 16px 18px;
	border: 1px solid rgba(47, 70, 218, 0.16);
	border-radius: var(--radius-md);
	background: rgba(255, 255, 255, 0.66);
	box-shadow: var(--shadow-soft);
}

.area51-contents h2 {
	margin-bottom: 10px;
	font-size: 1rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ink-soft);
}

.area51-contents ul {
	margin-bottom: 0;
}

.area51-contents li:last-child {
	margin-bottom: 0;
}

.area51-post__tag {
	display: inline-flex;
	margin: 0 0 12px;
	padding: 6px 10px;
	border-radius: 999px;
	background: rgba(47, 70, 218, 0.12);
	font-family: "Orbitron", sans-serif;
	font-size: 0.72rem !important;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ink-soft);
}

.area51-post h2 {
	margin-bottom: 14px;
	font-size: clamp(1.35rem, 3vw, 2rem);
}

.area51-post__lede {
	font-size: 1.12rem !important;
	font-weight: 700;
	color: var(--ink);
}

.area51-fix {
	margin: 22px 0;
	padding: 16px 18px;
	border-left: 6px solid var(--electric);
	border-radius: var(--radius-md);
	background: rgba(47, 70, 218, 0.08);
}

.area51-fix h3 {
	margin-top: 0;
}

.area51-figure {
	margin: 24px 0 0;
}

.area51-figure img {
	width: 100%;
	border-radius: 10px;
	box-shadow: var(--shadow-soft);
}

.area51-figure figcaption {
	margin-top: 10px;
	color: var(--ink-soft);
	font-size: 0.96rem;
}

.article-image {
	max-width: 100%;
	margin-bottom: 12px;
	border-radius: 8px;
	box-shadow: var(--shadow-soft);
}

.article-image--right {
	float: right;
	margin-left: 18px;
}

.article-image--left {
	float: left;
	margin-right: 18px;
}

.article-image--hero {
	width: min(45%, 360px);
}

.article-image--small {
	width: min(24%, 180px);
}

.article-image--medium {
	width: min(32%, 250px);
}

.article-image--wide {
	width: min(42%, 340px);
}

.article-image--no-shadow {
	box-shadow: none;
}

.omnifact-panel {
	margin: 8px 0;
	padding: 18px 20px;
	border-left: 6px solid var(--electric);
	border-radius: var(--radius-md);
	background: linear-gradient(135deg, rgba(47, 70, 218, 0.1), rgba(28, 143, 138, 0.1));
	box-shadow: inset 0 0 0 1px rgba(47, 70, 218, 0.08);
}

.model-route {
	display: grid;
	gap: 14px;
}

.model-route__item {
	display: grid;
	grid-template-columns: 112px minmax(0, 1fr) auto;
	gap: 18px;
	align-items: center;
	padding: 18px 20px;
	border-radius: var(--radius-lg);
	background: linear-gradient(160deg, rgba(255, 250, 239, 0.98), rgba(243, 236, 218, 0.92));
	border: 1px solid rgba(47, 70, 218, 0.12);
	box-shadow: var(--shadow-soft);
	transition: transform 140ms ease, box-shadow 140ms ease;
}

.model-route__item:hover,
.model-route__item:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 18px 34px rgba(23, 31, 87, 0.14);
}

.model-route__year {
	font-family: "Orbitron", sans-serif;
	font-size: 0.9rem;
	font-weight: 800;
	color: var(--electric);
}

.model-route__copy {
	display: grid;
	gap: 4px;
}

.model-route__copy h3,
.model-route__copy p {
	margin: 0;
}

.model-route__cue {
	font-family: "Orbitron", sans-serif;
	font-size: 0.74rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--ink-soft);
}

.model-route--compact .model-route__item {
	grid-template-columns: 86px minmax(0, 1fr) auto;
	padding: 14px 18px;
}

.eyebrow-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 16px;
}

.eyebrow-links a {
	display: inline-flex;
	padding: 8px 12px;
	border-radius: 999px;
	background: rgba(47, 70, 218, 0.1);
	font-weight: 700;
}

.home-stack {
	display: grid;
	gap: 36px;
}

.home-stack > .section {
	padding-top: 0;
}

.home-hero {
	padding-top: 0;
	padding-bottom: 0;
}

.home-hero__logo {
	display: block;
	width: min(100%, 640px);
	margin: 0 auto;
	filter: drop-shadow(0 12px 28px rgba(47, 70, 218, 0.16));
}

.home-welcome__bishop {
	margin-bottom: 10px;
}

.home-welcome__actions {
	clear: both;
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 20px;
}

.home-archive-panel .info-grid {
	margin-top: 20px;
}

.footer {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 18px 24px;
	margin-top: 56px;
	background:
		linear-gradient(135deg, rgba(34, 49, 139, 0.92), rgba(28, 143, 138, 0.84));
	color: #fff;
}

.footer p {
	margin: 12px 0 0;
	max-width: 46ch;
	color: rgba(255, 255, 255, 0.88);
}

.footer__links {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
}

.footer__links a {
	padding: 10px 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
}

@media (max-width: 980px) {
	.site-shell {
		width: min(calc(100% - 24px), var(--max-width));
	}

	.hero,
	.product-hero,
	.product-grid,
	.product-details,
	.offer-grid,
	.feature-columns,
	.omnipedia-hero,
	.omnipedia-layout {
		grid-template-columns: 1fr;
	}

	.strumplate-panel {
		position: static;
	}

	.portal-grid,
	.feature-grid,
	.news-grid,
	.story-grid,
	.info-grid,
	.gallery-grid,
	.spec-grid,
	.cards-3,
	.artist-jump-grid,
	.contact-methods,
	.journey-strip {
		grid-template-columns: 1fr 1fr;
	}

	.page-hero {
		grid-template-columns: 1fr;
	}

	.media-hero .page-hero__media {
		justify-self: start;
		max-width: 280px;
	}

	.festival-hero.omnipedia-hero--compact {
		grid-template-columns: 1fr;
	}

	.festival-hero .page-hero__media {
		justify-self: start;
		max-width: 360px;
	}

	.qchord-hero .page-hero__media {
		justify-self: start;
		max-width: 320px;
	}

	.product-sidebar {
		position: static;
	}
}

@media (max-width: 700px) {
	.site-shell {
		width: min(calc(100% - 18px), var(--max-width));
		padding-top: 18px;
	}

	.topbar {
		border-radius: 28px;
		padding: 16px;
	}

	.topbar__nav {
		width: 100%;
	}

	.topbar__nav a {
		flex: 1 1 calc(50% - 10px);
		text-align: center;
	}

	.hero__actions,
	.feature-card__actions {
		flex-direction: column;
	}

	.button {
		width: 100%;
	}

	.panel,
	.product-hero,
	.footer {
		padding: 18px;
	}

	.panel--hero {
		grid-template-columns: 1fr;
	}

	.portal-grid,
	.feature-grid,
	.news-grid,
	.story-grid,
	.info-grid,
	.gallery-grid,
	.spec-grid,
	.cards-3,
	.artist-jump-grid,
	.artist-card__media,
	.contact-methods,
	.track-list,
	.journey-strip,
	.service-card-grid {
		grid-template-columns: 1fr;
	}

	h1 {
		font-size: clamp(2.2rem, 12vw, 3.1rem);
	}

	.model-route__item {
		grid-template-columns: 1fr;
	}

	.model-route--compact .model-route__item {
		grid-template-columns: 1fr;
	}

	.model-route__cue {
		justify-self: start;
	}

	.festival-schedule__row,
	.festival-schedule__row--head {
		grid-template-columns: 1fr;
	}

	.article-image--right,
	.article-image--left,
	.omnipedia-article img[style*="float"] {
		float: none;
		width: 100%;
		margin: 0 0 16px;
	}

	.omnipedia-article table,
	.omnipedia-article tbody,
	.omnipedia-article tr,
	.omnipedia-article td,
	.omnipedia-article th {
		display: block;
		width: 100%;
	}
}
