/**
 * Solo to Symphony — Modern Archive Theme
 * Typography: Georgia | Palette: gold, eucalypt green, grey, white
 */

:root {
	--sts-gold: #B8860B;
	--sts-gold-light: #D4AF37;
	--sts-green: #3D5A45;
	--sts-green-dark: #2F4636;
	--sts-grey: #6B6560;
	--sts-grey-light: #9A948C;
	--sts-light: #F8F6F1;
	--sts-light-alt: #EFEBE3;
	--sts-white: #FFFFFF;
	--sts-text: #2A2826;
	--sts-border: #E2DDD4;
	--sts-shadow: 0 4px 24px rgba(47, 70, 54, 0.08);
	--sts-shadow-lg: 0 12px 40px rgba(47, 70, 54, 0.12);
	--sts-radius: 12px;
	--sts-radius-sm: 8px;
	--sts-box-padding: clamp(1.75rem, 4vw, 2.5rem);
	--sts-box-padding-sm: 1.25rem;
	--sts-box-gap: 2rem;
	--sts-max-width: 720px;
	--sts-content-width: 960px;
	--sts-wide-width: 1140px;
	--sts-font: Georgia, "Times New Roman", Times, serif;
	--sts-font-sans: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
	--sts-transition: 0.2s ease;
}

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

html {
	font-size: 18px;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--sts-font);
	color: var(--sts-text);
	background: var(--sts-light);
	line-height: 1.75;
	-webkit-font-smoothing: antialiased;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--sts-green);
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
	transition: color var(--sts-transition);
}

a:hover,
a:focus {
	color: var(--sts-gold);
}

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

.screen-reader-text:focus {
	background: var(--sts-white);
	clip: auto !important;
	clip-path: none;
	color: var(--sts-text);
	display: block;
	font-size: 0.875rem;
	height: auto;
	left: 0.5rem;
	line-height: normal;
	padding: 0.75rem 1rem;
	text-decoration: none;
	top: 0.5rem;
	width: auto;
	z-index: 100000;
	box-shadow: var(--sts-shadow);
	border-radius: var(--sts-radius-sm);
}

/* Layout */
.site {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.site-main {
	flex: 1;
	width: min(100% - 2.5rem, var(--sts-content-width));
	margin: 0 auto;
	padding: 2.5rem 0 5rem;
}

.site-main--home {
	width: 100%;
	max-width: none;
	padding-top: 0;
}

.site-main--find,
.site-main--names,
.site-main--contact,
.site-main--person,
.site-main--search {
	width: min(100% - 2.5rem, var(--sts-wide-width));
}

/* Header */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--sts-border);
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

.site-header__inner {
	width: min(100% - 2.5rem, var(--sts-wide-width));
	margin: 0 auto;
	padding: 1rem 0;
}

.site-header__bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}

.site-branding {
	display: flex;
	align-items: center;
	gap: 1rem;
	min-width: 0;
}

.site-logo img {
	max-height: 52px;
	width: auto;
	border-radius: var(--sts-radius-sm);
}

.site-title {
	margin: 0;
	font-size: clamp(1.25rem, 2.5vw, 1.65rem);
	font-weight: normal;
	line-height: 1.15;
	letter-spacing: -0.01em;
}

.site-title a {
	color: var(--sts-green-dark);
	text-decoration: none;
}

.site-title a:hover {
	color: var(--sts-gold);
}

.site-tagline {
	margin: 0.15rem 0 0;
	font-size: 0.85rem;
	color: var(--sts-grey);
	font-style: italic;
	letter-spacing: 0.02em;
}

/* Navigation */
.main-navigation .menu {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	gap: 0.35rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.main-navigation .menu a {
	display: inline-block;
	padding: 0.55rem 1rem;
	font-family: var(--sts-font-sans);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--sts-grey);
	border-radius: 999px;
	transition: background var(--sts-transition), color var(--sts-transition);
}

.main-navigation .menu a:hover,
.main-navigation .menu a:focus {
	color: var(--sts-green-dark);
	background: var(--sts-light-alt);
}

.main-navigation .menu .current-menu-item > a,
.main-navigation .menu .current_page_item > a {
	color: var(--sts-white);
	background: var(--sts-green);
}

.menu-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	background: var(--sts-green);
	color: var(--sts-white);
	border: 0;
	padding: 0;
	cursor: pointer;
	border-radius: 999px;
	transition: background var(--sts-transition);
}

.menu-toggle:hover {
	background: var(--sts-green-dark);
}

.menu-toggle__bars,
.menu-toggle__bars::before,
.menu-toggle__bars::after {
	display: block;
	width: 20px;
	height: 2px;
	background: currentColor;
	border-radius: 2px;
	transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle__bars {
	position: relative;
}

.menu-toggle__bars::before,
.menu-toggle__bars::after {
	content: "";
	position: absolute;
	left: 0;
}

.menu-toggle__bars::before {
	top: -6px;
}

.menu-toggle__bars::after {
	top: 6px;
}

.main-navigation.toggled .menu-toggle__bars {
	background: transparent;
}

.main-navigation.toggled .menu-toggle__bars::before {
	top: 0;
	transform: rotate(45deg);
}

.main-navigation.toggled .menu-toggle__bars::after {
	top: 0;
	transform: rotate(-45deg);
}

/* Home hero */
.home-hero {
	background: linear-gradient(135deg, var(--sts-green-dark) 0%, var(--sts-green) 50%, #4A6B52 100%);
	color: var(--sts-white);
	padding: clamp(3rem, 6vw, 4.5rem) 1.25rem clamp(3.5rem, 7vw, 5rem);
	position: relative;
	overflow: hidden;
}

.home-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 20% 80%, rgba(184, 134, 11, 0.15) 0%, transparent 50%),
		radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.06) 0%, transparent 40%);
	pointer-events: none;
}

.home-hero__grid {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(340px, 520px);
	gap: clamp(1.75rem, 4vw, 3rem);
	align-items: start;
	width: min(100%, var(--sts-wide-width));
	margin: 0 auto;
}

.home-hero__content {
	position: relative;
	width: min(100%, var(--sts-wide-width));
	margin: 0;
	text-align: left;
}

.home-hero--split .home-hero__content {
	text-align: left;
}

.home-hero__eyebrow {
	margin: 0 0 0.35rem;
	font-family: var(--sts-font-sans);
	font-size: clamp(1.35rem, 3vw, 1.85rem);
	font-weight: 700;
	letter-spacing: -0.01em;
	text-transform: none;
	color: var(--sts-white);
}

.home-hero__tagline {
	margin: 0 0 1.25rem;
	max-width: none;
	font-size: clamp(1rem, 2vw, 1.15rem);
	font-style: italic;
	opacity: 0.92;
	line-height: 1.45;
	color: rgba(255, 255, 255, 0.92);
}

.home-hero__body {
	font-size: 0.98rem;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.94);
}

.home-hero__body p {
	margin: 0 0 0.85rem;
}

.home-hero__body p:last-child {
	margin-bottom: 0;
}

.home-hero__body strong {
	color: var(--sts-gold-light);
	font-weight: 700;
}

.home-hero__body a {
	color: var(--sts-gold-light);
	text-decoration: underline;
	text-underline-offset: 0.15em;
}

.home-hero__body a:hover,
.home-hero__body a:focus {
	color: var(--sts-white);
}

.home-hero__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 0.75rem;
	margin-top: 1.5rem;
}

.home-hero__mosaic {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	grid-template-rows: repeat(4, minmax(0, 1fr));
	gap: 0.5rem;
	width: 100%;
	min-height: 0;
	height: auto;
	max-height: none;
	align-self: start;
}

.home-hero__mosaic-item {
	position: relative;
	overflow: hidden;
	min-height: 0;
	border-radius: 12px;
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
	border: 2px solid rgba(255, 255, 255, 0.22);
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.home-hero__mosaic-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: sepia(0.1) contrast(1.05);
	transition: transform 0.5s ease, filter 0.5s ease;
}

.home-hero__mosaic-item--harmonica {
	grid-column: 1;
	grid-row: 1;
}

.home-hero__mosaic-item--harmonica img {
	object-position: center 18%;
}

.home-hero__mosaic-item--orchestra {
	grid-column: 2;
	grid-row: 1;
}

.home-hero__mosaic-item--orchestra img {
	object-position: center 30%;
}

.home-hero__mosaic-item--clarinet {
	grid-column: 3;
	grid-row: 1;
}

.home-hero__mosaic-item--clarinet img {
	object-position: center top;
}

.home-hero__mosaic-item--family {
	grid-column: 1;
	grid-row: 2 / span 2;
}

.home-hero__mosaic-item--family img {
	object-position: center top;
}

.home-hero__mosaic-item--danceband {
	grid-column: 2;
	grid-row: 2;
}

.home-hero__mosaic-item--danceband img {
	object-position: center 40%;
}

.home-hero__mosaic-item--sax {
	grid-column: 3;
	grid-row: 2;
}

.home-hero__mosaic-item--sax img {
	object-position: center 35%;
}

.home-hero__mosaic-item--copland {
	grid-column: 2;
	grid-row: 3;
}

.home-hero__mosaic-item--copland img {
	object-position: center 30%;
}

.home-hero__mosaic-item--broadcaster {
	grid-column: 3;
	grid-row: 3;
}

.home-hero__mosaic-item--broadcaster img {
	object-position: center top;
}

.home-hero__mosaic-item--flyer {
	grid-column: 1;
	grid-row: 4;
}

.home-hero__mosaic-item--flyer img {
	object-position: center center;
}

.home-hero__mosaic-item--score {
	grid-column: 2 / span 2;
	grid-row: 4;
}

.home-hero__mosaic-item--score img {
	object-position: center top;
}

.home-hero__mosaic-item:hover {
	transform: translateY(-3px);
	box-shadow: 0 14px 36px rgba(0, 0, 0, 0.38);
	z-index: 1;
}

.home-hero__mosaic-item:hover img {
	transform: scale(1.05);
	filter: sepia(0) contrast(1.08);
}

.home-hero--split .home-hero__actions {
	justify-content: flex-start;
}

/* Buttons */
.button,
.sts-search-form .search-submit,
.sts-find-form__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--sts-green);
	color: var(--sts-white);
	border: 0;
	padding: 0.75rem 1.5rem;
	font-family: var(--sts-font-sans);
	font-size: 0.9rem;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	border-radius: 999px;
	transition: background var(--sts-transition), transform var(--sts-transition), box-shadow var(--sts-transition);
	box-shadow: 0 2px 8px rgba(47, 70, 54, 0.2);
}

.button:hover,
.sts-search-form .search-submit:hover,
.sts-find-form__submit:hover {
	background: var(--sts-gold);
	color: var(--sts-white);
	transform: translateY(-1px);
	box-shadow: 0 4px 16px rgba(184, 134, 11, 0.3);
}

.button--primary {
	background: var(--sts-gold);
	box-shadow: 0 2px 12px rgba(184, 134, 11, 0.35);
}

.button--primary:hover {
	background: var(--sts-gold-light);
}

.button--ghost {
	background: transparent;
	color: var(--sts-white);
	border: 2px solid rgba(255, 255, 255, 0.5);
	box-shadow: none;
}

.button--ghost:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: var(--sts-white);
	color: var(--sts-white);
}

/* Home intro zig-zag */
.home-intro {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: clamp(2.5rem, 6vw, 4rem) 1.25rem;
	position: relative;
	z-index: 1;
	background: var(--sts-light);
}

.home-intro__inner {
	width: min(100%, var(--sts-wide-width));
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: clamp(3rem, 6vw, 4.5rem);
}

.home-intro__row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	align-items: center;
	gap: clamp(2rem, 5vw, 3.5rem);
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 0.45s ease, transform 0.45s ease;
}

.home-intro__row.is-visible,
.no-js .home-intro__row {
	opacity: 1;
	transform: none;
}

.home-intro__row--reverse .home-intro__media {
	order: 2;
}

.home-intro__row--reverse .home-intro__content {
	order: 1;
}

.home-intro__media {
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: var(--sts-radius-sm);
	background: var(--sts-white);
	padding: 0.5rem;
}

.home-intro__media img {
	display: block;
	width: 100%;
	height: auto;
}

.home-intro__content {
	padding: 0;
	font-size: 1rem;
}

.home-intro__title {
	margin: 0 0 0.65rem;
	font-family: var(--sts-font-sans);
	font-size: clamp(1.25rem, 2.4vw, 1.65rem);
	font-weight: 700;
	line-height: 1.3;
	color: var(--sts-text);
}

.home-intro__content p {
	margin: 0 0 0.85rem;
	color: var(--sts-grey);
	line-height: 1.65;
}

.home-intro__content p:last-child {
	margin-bottom: 0;
}

.home-intro__content p strong {
	color: var(--sts-green-dark);
	font-weight: 600;
}

.home-widgets-area {
	width: min(100% - 2.5rem, var(--sts-wide-width));
	margin: 0 auto;
	padding: 2rem 0;
}


/* Home archive gallery */
.home-archive {
	background: var(--sts-white);
	padding: clamp(3rem, 6vw, 4.5rem) 1.25rem;
	border-top: 1px solid var(--sts-border);
	border-bottom: 1px solid var(--sts-border);
}

.home-archive__inner {
	width: min(100%, var(--sts-wide-width));
	margin: 0 auto;
}

.home-archive__header {
	text-align: center;
	max-width: 38rem;
	margin: 0 auto 2rem;
}

.home-archive__eyebrow {
	margin: 0 0 0.5rem;
	font-family: var(--sts-font-sans);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--sts-gold);
}

.home-archive__title {
	margin: 0 0 0.75rem;
	font-size: clamp(1.75rem, 4vw, 2.35rem);
	font-weight: normal;
	color: var(--sts-green-dark);
	line-height: 1.2;
}

.home-archive__intro {
	margin: 0;
	color: var(--sts-grey);
	font-size: 1.02rem;
}

.home-archive__filters {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.5rem;
	margin-bottom: 2rem;
}

.home-archive__filter {
	background: var(--sts-white);
	border: 1px solid var(--sts-border);
	color: var(--sts-grey);
	padding: 0.45rem 1rem;
	font-family: var(--sts-font-sans);
	font-size: 0.82rem;
	font-weight: 600;
	border-radius: 999px;
	cursor: pointer;
	transition: background var(--sts-transition), color var(--sts-transition), border-color var(--sts-transition), box-shadow var(--sts-transition);
}

.home-archive__filter:hover,
.home-archive__filter:focus {
	border-color: var(--sts-gold-light);
	color: var(--sts-green-dark);
}

.home-archive__filter.is-active {
	background: var(--sts-green);
	border-color: var(--sts-green);
	color: var(--sts-white);
	box-shadow: 0 2px 10px rgba(47, 70, 54, 0.25);
}

.home-archive__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.5rem;
	background: var(--sts-white);
}

@media (max-width: 1024px) {
	.home-archive__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 560px) {
	.home-archive__grid {
		grid-template-columns: 1fr;
	}
}

.archive-card {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.45s ease, transform 0.45s ease;
}

.archive-card.is-visible,
.no-js .archive-card {
	opacity: 1;
	transform: none;
}

.archive-card__trigger {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	padding: 0;
	border: 0;
	background: var(--sts-white);
	cursor: pointer;
	text-align: left;
	font: inherit;
	color: inherit;
	border-radius: var(--sts-radius);
	overflow: hidden;
	border: 1px solid var(--sts-border);
	box-shadow: var(--sts-shadow);
	transition: transform var(--sts-transition), box-shadow var(--sts-transition);
}

.archive-card__trigger:hover,
.archive-card__trigger:focus {
	transform: translateY(-4px);
	box-shadow: var(--sts-shadow-lg);
	outline: none;
}

.archive-card__media {
	position: relative;
	display: block;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	background: var(--sts-green-dark);
}

.archive-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.45s ease, filter 0.45s ease;
	filter: sepia(0.12) contrast(1.03);
}

.archive-card__trigger:hover .archive-card__media img,
.archive-card__trigger:focus .archive-card__media img {
	transform: scale(1.05);
	filter: sepia(0) contrast(1.06);
}

.archive-card__overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(to top, rgba(47, 70, 54, 0.75) 0%, transparent 55%);
	opacity: 0;
	transition: opacity var(--sts-transition);
}

.archive-card__trigger:hover .archive-card__overlay,
.archive-card__trigger:focus .archive-card__overlay {
	opacity: 1;
}

.archive-card__zoom {
	background: var(--sts-gold);
	color: var(--sts-white);
	font-family: var(--sts-font-sans);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 0.45rem 0.85rem;
	border-radius: 999px;
}

.archive-card__body {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	padding: 0.9rem 1rem 1.1rem;
	background: var(--sts-white);
	border: 1px solid var(--sts-border);
	border-top: 0;
}

.archive-card__year {
	font-family: var(--sts-font-sans);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--sts-gold);
}

.archive-card__name {
	font-size: 1.05rem;
	color: var(--sts-green-dark);
	line-height: 1.3;
}

.archive-card__people {
	font-size: 0.85rem;
	color: var(--sts-grey);
}

.archive-card__people a {
	text-decoration: none;
	font-weight: 600;
}

/* Lightbox */
body.sts-lightbox-open {
	overflow: hidden;
}

.sts-lightbox[hidden] {
	display: none !important;
}

.sts-lightbox {
	position: fixed;
	inset: 0;
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
}

.sts-lightbox__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(26, 24, 22, 0.88);
	backdrop-filter: blur(4px);
}

.sts-lightbox__dialog {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
	width: min(100%, 960px);
	max-height: min(90vh, 720px);
	background: var(--sts-white);
	border-radius: var(--sts-radius);
	overflow: hidden;
	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
	animation: sts-lightbox-in 0.25s ease;
}

@keyframes sts-lightbox-in {
	from {
		opacity: 0;
		transform: scale(0.96) translateY(8px);
	}
	to {
		opacity: 1;
		transform: none;
	}
}

.sts-lightbox__figure {
	margin: 0;
	display: contents;
}

.sts-lightbox__image {
	width: 100%;
	height: 100%;
	max-height: min(90vh, 720px);
	object-fit: contain;
	background: #1a1816;
}

.sts-lightbox__caption {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 0.5rem;
	padding: clamp(1.25rem, 3vw, 2rem);
	overflow-y: auto;
}

.sts-lightbox__year {
	margin: 0;
	font-family: var(--sts-font-sans);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--sts-gold);
}

.sts-lightbox__title {
	margin: 0;
	font-size: clamp(1.35rem, 3vw, 1.75rem);
	font-weight: normal;
	color: var(--sts-green-dark);
	line-height: 1.25;
}

.sts-lightbox__description {
	margin: 0;
	color: var(--sts-grey);
	font-size: 0.98rem;
	line-height: 1.6;
}

.sts-lightbox__credit {
	margin: 0.55rem 0 0;
	font-family: var(--sts-font-sans);
	font-size: 0.82rem;
	font-style: italic;
	color: var(--sts-grey-light);
}

.sts-lightbox__credit:empty,
.sts-lightbox__credit[hidden] {
	display: none;
}

.sts-lightbox__people {
	margin: 0.5rem 0 0;
	font-size: 0.9rem;
}

.sts-lightbox__people:empty,
.sts-lightbox__people[hidden] {
	display: none;
}

.sts-lightbox__close,
.sts-lightbox__nav {
	position: absolute;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.95);
	color: var(--sts-green-dark);
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
	box-shadow: var(--sts-shadow);
	transition: background var(--sts-transition), color var(--sts-transition);
}

.sts-lightbox__close:hover,
.sts-lightbox__nav:hover,
.sts-lightbox__close:focus,
.sts-lightbox__nav:focus {
	background: var(--sts-gold);
	color: var(--sts-white);
}

.sts-lightbox__close {
	top: 0.75rem;
	right: 0.75rem;
}

.sts-lightbox__nav {
	top: 50%;
	transform: translateY(-50%);
}

.sts-lightbox__nav--prev {
	left: 0.75rem;
}

.sts-lightbox__nav--next {
	right: 0.75rem;
}

/* Page cards */
.site-main:not(.site-main--home) > article,
.site-main:not(.site-main--home) > section {
	background: var(--sts-white);
	border-radius: var(--sts-radius);
	padding: var(--sts-box-padding);
	box-shadow: var(--sts-shadow);
	border: 1px solid var(--sts-border);
}

/* Typography */
.entry-header {
	margin-bottom: 2rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid var(--sts-border);
}

.entry-title,
.page-title {
	margin: 0 0 0.35rem;
	font-size: clamp(1.85rem, 4vw, 2.5rem);
	font-weight: normal;
	color: var(--sts-green-dark);
	line-height: 1.2;
	letter-spacing: -0.02em;
}

.entry-subtitle {
	margin: 0;
	color: var(--sts-grey);
	font-style: italic;
	font-size: 1.05rem;
}

.find-intro {
	font-size: 1.05rem;
	color: var(--sts-grey);
	margin-bottom: 0.5rem;
}

.entry-content > *:first-child {
	margin-top: 0;
}

.entry-content h2 {
	color: var(--sts-green-dark);
	font-size: 1.35rem;
	font-weight: normal;
	margin-top: 2rem;
}

.entry-thumbnail {
	margin-bottom: 1.5rem;
	border-radius: var(--sts-radius);
	overflow: hidden;
	box-shadow: var(--sts-shadow);
}

.entry-thumbnail img {
	border: 0;
	width: 100%;
}

/* Forms */
.sts-search-form {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	margin: 1rem 0;
}

.sts-search-form .search-field,
.sts-find-form__input,
.sts-find-form__select {
	flex: 1 1 220px;
	padding: 0.75rem 1rem;
	font-family: var(--sts-font);
	font-size: 1rem;
	border: 1px solid var(--sts-border);
	border-radius: var(--sts-radius-sm);
	background: var(--sts-white);
	transition: border-color var(--sts-transition), box-shadow var(--sts-transition);
}

.sts-search-form .search-field:focus,
.sts-find-form__input:focus,
.sts-find-form__select:focus {
	outline: none;
	border-color: var(--sts-green);
	box-shadow: 0 0 0 3px rgba(61, 90, 69, 0.12);
}

.find-section-title {
	font-size: 0.8rem;
	font-family: var(--sts-font-sans);
	font-weight: 700;
	color: var(--sts-gold);
	text-transform: uppercase;
	letter-spacing: 0.12em;
	margin: 0 0 1rem;
}

.find-hint {
	color: var(--sts-grey-light);
	font-size: 0.9rem;
	margin-top: 0.5rem;
}

/* Find page */
.sts-find-form {
	background: var(--sts-light);
	border-radius: var(--sts-radius);
	padding: var(--sts-box-padding);
	border: 1px solid var(--sts-border);
	margin: var(--sts-box-gap) 0;
}

.sts-find-form__section {
	margin-bottom: 1.75rem;
	padding-bottom: 1.75rem;
	border-bottom: 1px solid var(--sts-border);
}

.sts-find-form__section:last-of-type {
	border-bottom: 0;
	padding-bottom: 0;
	margin-bottom: 1rem;
}

.sts-find-form__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1rem 1.25rem;
}

.sts-find-form__label {
	display: block;
	margin-bottom: 0.4rem;
	font-family: var(--sts-font-sans);
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--sts-grey);
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.sts-find-form__input,
.sts-find-form__select {
	width: 100%;
}

.sts-find-form__input--wide {
	margin-bottom: 0.25rem;
}

.sts-find-form__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1rem;
	padding-top: 0.5rem;
}

.sts-find-form__reset {
	font-family: var(--sts-font-sans);
	font-size: 0.9rem;
	font-weight: 500;
}

.sts-find-results-wrap {
	min-height: 1rem;
	transition: opacity 0.2s ease;
}

.sts-find-results-wrap.is-loading,
.sts-find-form.is-loading {
	opacity: 0.5;
	pointer-events: none;
}

.sts-find-results {
	margin-top: 0.5rem;
}

.sts-find-results--empty {
	padding: var(--sts-box-padding-sm);
	background: var(--sts-light);
	border-radius: var(--sts-radius-sm);
	border: 1px dashed var(--sts-border);
	text-align: center;
}

.sts-find-results__list .search-results__item {
	background: var(--sts-light);
	border: 1px solid var(--sts-border);
	border-radius: var(--sts-radius-sm);
	padding: var(--sts-box-padding-sm);
	margin-bottom: 0.75rem;
	transition: box-shadow var(--sts-transition), border-color var(--sts-transition);
}

.sts-find-results__list .search-results__item:hover {
	box-shadow: var(--sts-shadow);
	border-color: var(--sts-gold-light);
}

.sts-find-results__list .search-results__item:last-child {
	margin-bottom: 0;
}

.sts-find-results__pagination ul {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.sts-find-results__pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.25rem;
	height: 2.25rem;
	padding: 0 0.5rem;
	border: 1px solid var(--sts-border);
	border-radius: var(--sts-radius-sm);
	text-decoration: none;
	font-family: var(--sts-font-sans);
	font-size: 0.9rem;
	transition: all var(--sts-transition);
}

.sts-find-results__pagination .page-numbers:hover {
	border-color: var(--sts-green);
	color: var(--sts-green);
}

.sts-find-results__pagination .current {
	background: var(--sts-green);
	color: var(--sts-white);
	border-color: var(--sts-green);
}

/* A-Z Names */
.az-jump {
	margin: var(--sts-box-gap) 0;
	padding: var(--sts-box-padding-sm);
	background: var(--sts-light);
	border-radius: var(--sts-radius-sm);
	border: 1px solid var(--sts-border);
	position: sticky;
	top: 4.5rem;
	z-index: 10;
}

.az-jump__hint {
	margin: 0 0 0.75rem;
	font-family: var(--sts-font-sans);
	font-size: 0.85rem;
	color: var(--sts-grey);
}

.az-jump__list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.az-jump__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2rem;
	height: 2rem;
	padding: 0 0.5rem;
	font-family: var(--sts-font-sans);
	font-weight: 600;
	font-size: 0.85rem;
	text-decoration: none;
	color: var(--sts-green);
	background: var(--sts-white);
	border: 1px solid var(--sts-border);
	border-radius: var(--sts-radius-sm);
	transition: all var(--sts-transition);
	cursor: pointer;
}

.az-jump__link:hover,
.az-jump__link.is-active {
	background: var(--sts-green);
	color: var(--sts-white);
	border-color: var(--sts-green);
}

.az-jump__link.is-disabled {
	opacity: 0.35;
	cursor: not-allowed;
	background: var(--sts-light-alt);
	color: var(--sts-grey-light);
	border-color: var(--sts-border);
}

.az-section {
	margin-bottom: 2.5rem;
	scroll-margin-top: 7rem;
}

.az-section[hidden] {
	display: none;
}

.az-section__letter {
	font-size: 2.25rem;
	color: var(--sts-gold);
	margin: 0 0 0.75rem;
	font-weight: normal;
	line-height: 1;
}

.az-section__names {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 0.35rem 1.5rem;
}

.az-section__names a {
	text-decoration: none;
	padding: 0.35rem 0;
	display: block;
	border-bottom: 1px solid transparent;
	transition: border-color var(--sts-transition), color var(--sts-transition);
}

.az-section__names a:hover {
	border-bottom-color: var(--sts-gold-light);
}

.az-empty {
	padding: var(--sts-box-padding-sm);
	background: var(--sts-light);
	border-radius: var(--sts-radius-sm);
	text-align: center;
}

.az-format-hint {
	margin: 0 0 1.25rem;
	padding: 0.85rem 1rem;
	background: var(--sts-light);
	border-left: 3px solid var(--sts-gold);
	font-size: 0.95rem;
	color: var(--sts-grey);
}

/* Person record */
.site-main--person > .person-record {
	background: transparent;
	box-shadow: none;
	border: 0;
	padding: 0;
}

.person-record__layout {
	background: var(--sts-white);
	border-radius: var(--sts-radius);
	padding: var(--sts-box-padding);
	box-shadow: var(--sts-shadow);
	border: 1px solid var(--sts-border);
	margin-bottom: var(--sts-box-gap);
}

.person-record__type {
	margin: 0 0 0.35rem;
	font-family: var(--sts-font-sans);
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: var(--sts-gold);
}

.person-record__header {
	border-bottom: 1px solid var(--sts-border);
	padding-bottom: 1.25rem;
	margin-bottom: 1.5rem;
}

.people-dates,
.record-date {
	color: var(--sts-grey);
	font-style: italic;
	margin: 0.35rem 0 0;
	font-size: 1.05rem;
}

.person-record__photo {
	float: right;
	max-width: min(280px, 40%);
	margin: 0 0 1.5rem 1.75rem;
	border-radius: var(--sts-radius);
	overflow: hidden;
	box-shadow: var(--sts-shadow);
}

.person-record__connections {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 1rem;
}

.person-record__meta-group {
	background: var(--sts-white);
	border-radius: var(--sts-radius-sm);
	padding: var(--sts-box-padding-sm);
	border: 1px solid var(--sts-border);
}

.person-record__meta-label {
	font-family: var(--sts-font-sans);
	font-size: 0.72rem;
	font-weight: 700;
	color: var(--sts-gold);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin: 0 0 0.75rem;
}

.person-record__terms {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.person-record__terms a {
	display: block;
	padding: 0.55rem 0.85rem;
	background: var(--sts-light);
	border: 1px solid var(--sts-border);
	border-radius: var(--sts-radius-sm);
	text-decoration: none;
	font-family: var(--sts-font-sans);
	font-size: 0.85rem;
	line-height: 1.4;
	transition: all var(--sts-transition);
}

.person-record__terms a:hover {
	background: var(--sts-green);
	color: var(--sts-white);
	border-color: var(--sts-green);
}

/* Short single-word taxonomy tags (e.g. Instrument, Year) can sit side by side. */
.person-record__meta-group--tags .person-record__terms {
	flex-direction: row;
	flex-wrap: wrap;
}

.person-record__meta-group--tags .person-record__terms a {
	display: inline-block;
	border-radius: 999px;
	padding: 0.35rem 0.85rem;
}

/* Search results */
.search-results {
	list-style: none;
	margin: 0;
	padding: 0;
}

.search-results__item {
	padding: 1.25rem 0;
	border-bottom: 1px solid var(--sts-border);
}

.search-results__item:last-child {
	border-bottom: 0;
}

.search-results__type {
	display: inline-block;
	font-family: var(--sts-font-sans);
	font-size: 0.68rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--sts-gold);
	background: rgba(184, 134, 11, 0.1);
	padding: 0.2rem 0.55rem;
	border-radius: 999px;
	margin-bottom: 0.4rem;
}

.search-results__item > a {
	font-size: 1.15rem;
	font-weight: normal;
	text-decoration: none;
	color: var(--sts-green-dark);
}

.search-results__item > a:hover {
	color: var(--sts-gold);
}

.search-results__excerpt {
	margin: 0.4rem 0 0;
	color: var(--sts-grey);
	font-size: 0.95rem;
	line-height: 1.6;
}

/* Contact */
.contact-details {
	margin-top: var(--sts-box-gap);
	padding: var(--sts-box-padding);
	background: linear-gradient(135deg, var(--sts-light) 0%, var(--sts-white) 100%);
	border-radius: var(--sts-radius-sm);
	border: 1px solid var(--sts-border);
}

.contact-details__item {
	margin: 0 0 1rem;
	font-size: 1.05rem;
}

.contact-details__item:last-child {
	margin-bottom: 0;
}

.contact-details__item strong {
	font-family: var(--sts-font-sans);
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--sts-grey);
	display: block;
	margin-bottom: 0.2rem;
}

/* Sidebar & widgets */
.sidebar {
	width: min(100% - 2.5rem, var(--sts-content-width));
	margin: 0 auto 3rem;
}

.widget {
	margin-bottom: var(--sts-box-gap);
	background: var(--sts-white);
	padding: var(--sts-box-padding-sm);
	border-radius: var(--sts-radius-sm);
	border: 1px solid var(--sts-border);
}

.widget-title {
	font-size: 1rem;
	font-family: var(--sts-font-sans);
	color: var(--sts-green-dark);
	font-weight: 600;
	margin: 0 0 0.75rem;
}

/* Footer */
.site-footer {
	background: var(--sts-green-dark);
	color: rgba(255, 255, 255, 0.72);
	margin-top: auto;
	border-top: 3px solid var(--sts-gold);
}

.footer-widgets {
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-widgets__inner {
	width: min(100% - 2.5rem, var(--sts-wide-width));
	margin: 0 auto;
	padding: 1.25rem 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 1.25rem;
}

.footer-widget .widget-title {
	color: var(--sts-gold-light);
	font-size: 0.82rem;
	margin-bottom: 0.5rem;
}

.footer-widget {
	font-size: 0.82rem;
	line-height: 1.5;
}

.site-footer__bar {
	padding: 0;
}

.site-footer__inner {
	width: min(100% - 2.5rem, var(--sts-wide-width));
	margin: 0 auto;
	padding: 1.05rem 0;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
	align-items: center;
	gap: 1rem 2rem;
}

.site-footer__brand {
	min-width: 0;
}

.site-footer__name {
	display: block;
	font-family: var(--sts-font-sans);
	font-size: 0.9rem;
	font-weight: 600;
	line-height: 1.25;
	color: var(--sts-white);
	text-decoration: none;
	transition: color var(--sts-transition);
}

.site-footer__name:hover,
.site-footer__name:focus {
	color: var(--sts-gold-light);
}

.site-footer__tagline {
	display: block;
	margin-top: 0.12rem;
	font-size: 0.72rem;
	font-style: italic;
	opacity: 0.62;
	line-height: 1.35;
}

.site-footer__nav {
	justify-self: center;
}

.site-footer__credit {
	margin: 0;
	justify-self: end;
	text-align: right;
	font-family: var(--sts-font-sans);
	font-size: 0.72rem;
	line-height: 1.35;
	opacity: 0.55;
}

.footer-menu {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-menu li {
	display: flex;
	align-items: center;
}

.footer-menu li + li::before {
	content: "·";
	margin: 0 0.6rem;
	opacity: 0.45;
	font-weight: 700;
	pointer-events: none;
}

.footer-menu a {
	font-family: var(--sts-font-sans);
	font-size: 0.76rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
	color: rgba(255, 255, 255, 0.78);
	transition: color var(--sts-transition);
	padding: 0.15rem 0;
}

.footer-menu a:hover,
.footer-menu a:focus {
	color: var(--sts-gold-light);
}


/* Responsive */
@media (max-width: 768px) {
	html {
		font-size: 16px;
	}

	.site-header__bar {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		gap: 1rem;
		position: relative;
	}

	.site-branding {
		justify-content: flex-start;
		text-align: left;
	}

	.main-navigation {
		width: auto;
		flex-shrink: 0;
	}

	.menu-toggle {
		display: inline-flex;
	}

	.main-navigation .menu {
		display: none;
		flex-direction: column;
		width: 100%;
		gap: 0.25rem;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		margin-top: 0.75rem;
		padding: 0.75rem;
		background: var(--sts-white);
		border-radius: var(--sts-radius-sm);
		box-shadow: 0 16px 32px rgba(0, 0, 0, 0.16);
		z-index: 50;
	}

	.main-navigation.toggled .menu {
		display: flex;
	}

	.main-navigation .menu a {
		width: 100%;
		text-align: center;
		border-radius: var(--sts-radius-sm);
	}

	.person-record__photo {
		float: none;
		max-width: 100%;
		margin: 0 0 1.5rem;
	}

	.home-hero__grid {
		grid-template-columns: 1fr;
	}

	.home-hero__content,
	.home-hero--split .home-hero__content {
		text-align: left;
	}

	.home-hero__actions,
	.home-hero--split .home-hero__actions {
		justify-content: flex-start;
	}

	.home-hero__mosaic {
		max-width: 100%;
		min-height: 0;
		height: 420px !important;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		grid-template-rows: repeat(4, minmax(0, 1fr));
		margin: 1rem 0 0;
		order: 0;
	}


	.home-intro__row,
	.home-intro__row--reverse {
		grid-template-columns: 1fr;
		gap: 1.25rem;
	}

	.home-intro__row--reverse .home-intro__media,
	.home-intro__row--reverse .home-intro__content {
		order: unset;
	}

	.site-footer__inner {
		grid-template-columns: 1fr;
		text-align: center;
		padding: 1.15rem 0;
		gap: 0.75rem;
	}

	.site-footer__nav {
		justify-self: center;
	}

	.site-footer__credit {
		justify-self: center;
		text-align: center;
	}

	.home-archive__grid {
		grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
		gap: 0.85rem;
	}

	.sts-lightbox__dialog {
		grid-template-columns: 1fr;
		max-height: 92vh;
		overflow-y: auto;
	}

	.sts-lightbox__image {
		max-height: 50vh;
	}

	.sts-lightbox__nav--prev {
		left: 0.35rem;
	}

	.sts-lightbox__nav--next {
		right: 0.35rem;
	}

	.home-hero__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.home-hero__actions .button {
		width: 100%;
	}

	.sts-find-form__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.sts-find-form__submit {
		width: 100%;
	}

	.sts-search-form {
		flex-direction: column;
	}

	.sts-search-form .search-submit {
		width: 100%;
	}
}

@media (min-width: 900px) {
	body.has-sidebar .site-main {
		display: grid;
		grid-template-columns: minmax(0, 1fr) 280px;
		gap: 2rem;
		width: min(100% - 2.5rem, var(--sts-wide-width));
		align-items: start;
	}

	body.has-sidebar .sidebar {
		width: auto;
		margin: 0;
	}
}

@media (min-width: 769px) {
	.site-main--home + .site-footer,
	.site-main--home {
		padding-bottom: 0;
	}
}
