/* ==========================================================================
   Serein Strings — main stylesheet
   Palette: ivory & bone grounds, ink, violin-varnish accent, champagne on dark.
   Type: Bodoni Moda (display) + Jost (text). Both self-hosted.
   ========================================================================== */

/* Fonts ------------------------------------------------------------------- */
@font-face {
	font-family: "Bodoni Moda";
	font-style: normal;
	font-weight: 400 700;
	font-display: swap;
	src: url("../fonts/bodoni-moda.woff2") format("woff2");
}
@font-face {
	font-family: "Bodoni Moda";
	font-style: italic;
	font-weight: 400 700;
	font-display: swap;
	src: url("../fonts/bodoni-moda-italic.woff2") format("woff2");
}
@font-face {
	font-family: "Jost";
	font-style: normal;
	font-weight: 300 600;
	font-display: swap;
	src: url("../fonts/jost.woff2") format("woff2");
}

/* Tokens ------------------------------------------------------------------ */
:root {
	--serein-ivory: #f6f2eb;
	--serein-paper: #fbf9f5;
	--serein-bone: #ebe4d8;
	--serein-ink: #0f0e0d;
	--serein-ink-2: #1b1917;
	--serein-night: #0a0908;
	--serein-text: #2c2824;
	--serein-muted: #6a6158;
	--serein-varnish: #8f4f28;
	--serein-varnish-dark: #6f3b1c;
	--serein-champagne: #cdb189;
	--serein-mist: #b9b0a3;
	--serein-line: rgba(15, 14, 13, 0.14);
	--serein-line-light: rgba(246, 242, 235, 0.16);

	--serif: "Bodoni Moda", "Didot", "Bodoni 72", "Bodoni MT", Georgia, serif;
	--sans: "Jost", "Futura", "Avenir Next", "Helvetica Neue", Arial, sans-serif;

	--header-h: 76px;
	--gutter: clamp(1.25rem, 4vw, 3.5rem);
	--container: 1360px;
	--section-y: clamp(5rem, 10vw, 9.5rem);
	--ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

@media (min-width: 1100px) {
	:root {
		--header-h: 92px;
	}
}

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

html {
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--header-h) + 1rem);
}

body {
	margin: 0;
	background: var(--serein-ivory);
	color: var(--serein-text);
	font-family: var(--sans);
	font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
	font-weight: 300;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}

img,
svg,
video,
iframe {
	display: block;
	max-width: 100%;
}

img {
	height: auto;
}

figure {
	margin: 0;
}

a {
	color: inherit;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.2em;
	transition: color 0.3s var(--ease), opacity 0.3s var(--ease);
}

a:hover {
	color: var(--serein-varnish);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 0.6em;
	color: var(--serein-ink);
	font-family: var(--serif);
	font-optical-sizing: auto;
	font-weight: 400;
	line-height: 1.08;
	letter-spacing: -0.01em;
}

p {
	margin: 0 0 1.2em;
}

p:last-child {
	margin-bottom: 0;
}

em {
	font-style: italic;
}

strong {
	font-weight: 500;
}

::selection {
	background: var(--serein-ink);
	color: var(--serein-ivory);
}

:focus-visible {
	outline: 2px solid var(--serein-varnish);
	outline-offset: 3px;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link:focus {
	position: fixed !important;
	top: 1rem;
	left: 1rem;
	z-index: 1000;
	width: auto;
	height: auto;
	padding: 0.8rem 1.2rem;
	clip: auto;
	background: var(--serein-ink);
	color: var(--serein-ivory);
}

.site-main {
	display: block;
	padding-top: var(--header-h);
}

.site-main:focus {
	outline: none;
}

/* Layout ------------------------------------------------------------------ */
/* Grid children default to min-width: auto and can push a layout wider than the
   screen (e.g. a long email address); let every section's columns shrink. */
.hero__grid > *,
.about__grid > *,
.journey__intro > *,
.step > *,
.faq__grid > *,
.newsletter__inner > *,
.contact__grid > *,
.quote-band__inner > *,
.musician > *,
.services__grid > *,
.genres__grid > * {
	min-width: 0;
}

.container {
	width: 100%;
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: var(--gutter);
}

.container--narrow {
	max-width: calc(46rem + var(--gutter) * 2);
}

.section {
	position: relative;
	padding-block: var(--section-y);
}

.section--tight {
	padding-block: clamp(3rem, 6vw, 5rem);
}

.section--dark {
	background: var(--serein-ink);
	color: var(--serein-mist);
}

.section--dark h1,
.section--dark h2,
.section--dark h3 {
	color: var(--serein-ivory);
}

.section--bone {
	background: var(--serein-bone);
}

.lead {
	max-width: 40rem;
	font-size: clamp(1.05rem, 1rem + 0.35vw, 1.2rem);
	line-height: 1.75;
}

.eyebrow {
	display: flex;
	align-items: center;
	gap: 0.9rem;
	margin: 0 0 1.4rem;
	color: var(--serein-ink);
	font-family: var(--sans);
	font-size: 0.72rem;
	font-weight: 500;
	letter-spacing: 0.26em;
	text-transform: uppercase;
}

.eyebrow__rule {
	display: inline-block;
	width: 2.75rem;
	height: 1px;
	background: currentColor;
}

/* Buttons ----------------------------------------------------------------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.9rem;
	padding: 1.05rem 1.9rem;
	border: 1px solid var(--serein-ink);
	border-radius: 0;
	background: transparent;
	color: var(--serein-ink);
	font-family: var(--sans);
	font-size: 0.72rem;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: 0.22em;
	text-decoration: none;
	text-transform: uppercase;
	cursor: pointer;
	transition: background-color 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease);
}

.btn__arrow {
	width: 22px;
	height: 10px;
	flex: none;
	transition: transform 0.4s var(--ease);
}

.btn:hover .btn__arrow {
	transform: translateX(5px);
}

.btn--solid {
	background: var(--serein-ink);
	color: var(--serein-ivory);
}

.btn--solid:hover {
	border-color: var(--serein-varnish);
	background: var(--serein-varnish);
	color: var(--serein-ivory);
}

.btn--outline:hover {
	background: var(--serein-ink);
	color: var(--serein-ivory);
}

.btn--light {
	border-color: var(--serein-ivory);
	background: var(--serein-ivory);
	color: var(--serein-ink);
}

.btn--light:hover {
	border-color: var(--serein-champagne);
	background: var(--serein-champagne);
	color: var(--serein-ink);
}

.btn--text {
	position: relative;
	padding-inline: 0;
	border-color: transparent;
}

.btn--text::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0.7rem;
	left: 0;
	height: 1px;
	background: currentColor;
	transform-origin: left;
	transition: transform 0.5s var(--ease);
}

.btn--text:hover {
	color: var(--serein-varnish);
}

.btn--text:hover::after {
	transform: scaleX(0.35);
}

.btn--sm {
	padding: 0.8rem 1.3rem;
	font-size: 0.68rem;
}

.section--dark .btn--outline {
	border-color: var(--serein-ivory);
	color: var(--serein-ivory);
}

.section--dark .btn--outline:hover {
	background: var(--serein-ivory);
	color: var(--serein-ink);
}

/* Header ------------------------------------------------------------------ */
.site-header {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 100;
	height: var(--header-h);
	color: var(--serein-ink);
	transition: background-color 0.5s var(--ease), box-shadow 0.5s var(--ease), color 0.4s var(--ease), transform 0.5s var(--ease);
}

.admin-bar .site-header {
	top: 32px;
}

@media (max-width: 782px) {
	.admin-bar .site-header {
		top: 46px;
	}
}

.site-header.is-scrolled {
	background: rgba(246, 242, 235, 0.9);
	box-shadow: 0 1px 0 var(--serein-line);
	-webkit-backdrop-filter: blur(14px) saturate(1.2);
	backdrop-filter: blur(14px) saturate(1.2);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	height: 100%;
	max-width: calc(var(--container) + 10rem);
	margin-inline: auto;
	padding-inline: var(--gutter);
}

.wordmark {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	color: inherit;
	line-height: 1;
	text-decoration: none;
}

.wordmark:hover {
	color: inherit;
}

.wordmark__main {
	font-family: var(--serif);
	font-size: 1.45rem;
	font-weight: 500;
	letter-spacing: 0.34em;
	margin-right: -0.34em;
	text-transform: uppercase;
}

.wordmark__sub {
	margin-top: 0.4rem;
	font-family: var(--sans);
	font-size: 0.56rem;
	font-weight: 500;
	letter-spacing: 0.72em;
	margin-right: -0.72em;
	text-transform: uppercase;
}

.custom-logo {
	width: auto;
	max-height: calc(var(--header-h) - 34px);
}

.site-nav {
	display: none;
}

.site-nav__menu,
.site-nav .menu {
	display: flex;
	gap: clamp(1.2rem, 2.2vw, 2.4rem);
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-nav a {
	position: relative;
	display: inline-block;
	padding-block: 0.4rem;
	font-size: 0.7rem;
	font-weight: 500;
	letter-spacing: 0.22em;
	text-decoration: none;
	text-transform: uppercase;
}

.site-nav a::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 1px;
	background: currentColor;
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 0.5s var(--ease);
}

.site-nav a:hover {
	color: inherit;
}

.site-nav a:hover::after,
.site-nav .current-menu-item > a::after {
	transform: scaleX(1);
	transform-origin: left;
}

.site-header__actions {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.header-cta {
	display: none;
}

.menu-toggle {
	display: inline-flex;
	align-items: center;
	gap: 0.8rem;
	padding: 0.6rem 0;
	border: 0;
	background: none;
	color: inherit;
	font-family: var(--sans);
	font-size: 0.7rem;
	font-weight: 500;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	cursor: pointer;
}

.menu-toggle__lines {
	position: relative;
	display: block;
	width: 28px;
	height: 10px;
}

.menu-toggle__lines span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: currentColor;
	transition: transform 0.45s var(--ease), top 0.45s var(--ease);
}

.menu-toggle__lines span:first-child {
	top: 0;
}

.menu-toggle__lines span:last-child {
	top: 9px;
}

.menu-open .menu-toggle__lines span:first-child {
	top: 5px;
	transform: rotate(45deg);
}

.menu-open .menu-toggle__lines span:last-child {
	top: 5px;
	transform: rotate(-45deg);
}

.menu-open .site-header {
	background: transparent;
	box-shadow: none;
	color: var(--serein-ivory);
	-webkit-backdrop-filter: none;
	backdrop-filter: none;
}

.menu-open .header-cta {
	visibility: hidden;
}

.menu-open {
	overflow: hidden;
}

@media (min-width: 720px) {
	.header-cta {
		display: inline-flex;
	}
}

@media (min-width: 1180px) {
	.site-nav {
		display: block;
	}

	.menu-toggle {
		display: none;
	}
}

/* Mobile menu */
.mobile-menu {
	position: fixed;
	inset: 0;
	z-index: 90;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: calc(var(--header-h) + 2rem) var(--gutter) 2.5rem;
	overflow-y: auto;
	background: var(--serein-ink);
	color: var(--serein-ivory);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.45s var(--ease), visibility 0s linear 0.45s;
}

/* "display: flex" above would otherwise override the [hidden] attribute and
   leave an invisible full-screen layer that swallows every click on the page. */
.mobile-menu[hidden] {
	display: none;
}

.mobile-menu.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transition: opacity 0.45s var(--ease), visibility 0s;
}

.mobile-menu__list,
.mobile-menu .menu {
	margin: 0;
	padding: 0;
	list-style: none;
}

.mobile-menu__list a,
.mobile-menu .menu a {
	display: block;
	padding-block: 0.35rem;
	color: var(--serein-ivory);
	font-family: var(--serif);
	font-size: clamp(2rem, 8vw, 3.2rem);
	line-height: 1.15;
	text-decoration: none;
}

.mobile-menu__list li:nth-child(even) a,
.mobile-menu .menu li:nth-child(even) a {
	font-style: italic;
}

.mobile-menu__list a:hover,
.mobile-menu .menu a:hover {
	color: var(--serein-champagne);
}

.mobile-menu__foot {
	display: grid;
	gap: 0.3rem;
	margin-top: 2.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--serein-line-light);
	color: var(--serein-mist);
	font-size: 0.9rem;
}

.mobile-menu__foot a {
	color: var(--serein-ivory);
	text-decoration: none;
}

/* Section heading --------------------------------------------------------- */
.s-heading {
	margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.s-heading--center {
	text-align: center;
}

.s-heading--center .s-heading__eyebrow {
	justify-content: center;
}

.s-heading--center .s-heading__title {
	margin-inline: auto;
}

.s-heading__eyebrow {
	display: flex;
	align-items: baseline;
	gap: 1rem;
	margin: 0 0 1.5rem;
}

.s-heading__num {
	color: var(--serein-varnish);
	font-family: var(--serif);
	font-size: 1.05rem;
	font-style: italic;
}

.s-heading__num::after {
	content: "";
	display: inline-block;
	width: 2.75rem;
	height: 1px;
	margin-left: 1rem;
	vertical-align: middle;
	background: currentColor;
	opacity: 0.6;
}

.s-heading__label {
	color: var(--serein-ink);
	font-size: 0.72rem;
	font-weight: 500;
	letter-spacing: 0.26em;
	text-transform: uppercase;
}

.s-heading__title {
	max-width: 17ch;
	margin: 0;
	font-size: clamp(2.3rem, 1.4rem + 3.6vw, 4.6rem);
	line-height: 1.02;
	letter-spacing: -0.02em;
}

.s-heading__title em {
	color: var(--serein-varnish);
}

.section--dark .s-heading__num {
	color: var(--serein-champagne);
}

.section--dark .s-heading__label {
	color: var(--serein-ivory);
}

.section--dark .s-heading__title em {
	color: var(--serein-champagne);
}

/* Hero -------------------------------------------------------------------- */
.hero {
	position: relative;
	padding-top: clamp(1.5rem, 4vw, 3rem);
	overflow: hidden;
}

.hero__grid {
	display: grid;
	gap: 2.5rem;
}

.hero__eyebrow {
	margin-bottom: 1.8rem;
}

.hero__title {
	margin: 0 0 2rem;
	color: var(--serein-ink);
	font-size: clamp(3.6rem, 1rem + 12.5vw, 10.5rem);
	font-weight: 400;
	line-height: 0.86;
	letter-spacing: -0.035em;
}

.hero__word {
	display: block;
	padding: 0 0.12em 0.1em 0;
	margin-bottom: -0.1em;
	/* Clip vertically for the slide-up reveal; never cut a word off sideways. */
	overflow-x: visible;
	overflow-y: clip;
}

.hero__word > span {
	display: inline-block;
}

.hero__word--2 {
	padding-left: 0.9em;
	color: var(--serein-varnish);
	font-style: italic;
	letter-spacing: -0.02em;
}

.hero__motto {
	max-width: 26ch;
	margin-bottom: 1.1rem;
	color: var(--serein-ink);
	font-family: var(--serif);
	font-size: clamp(1.3rem, 1.1rem + 0.9vw, 1.85rem);
	font-style: italic;
	line-height: 1.25;
}

.hero__text {
	max-width: 34rem;
	color: var(--serein-muted);
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1rem 2rem;
	margin-top: 2.25rem;
}

.hero__media {
	position: relative;
}

.hero__frame {
	position: relative;
	aspect-ratio: 4 / 5;
}

.hero__frame::before {
	content: "";
	position: absolute;
	inset: 0;
	border: 1px solid var(--serein-varnish);
	transform: translate(14px, 14px);
	pointer-events: none;
}

.hero__img {
	position: relative;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 30%;
}

.hero__caption {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	margin-top: 1.9rem;
	color: var(--serein-muted);
	font-size: 0.66rem;
	font-weight: 500;
	letter-spacing: 0.24em;
	text-transform: uppercase;
}

@media (min-width: 960px) {
	.hero {
		padding-top: clamp(2rem, 4vw, 4rem);
	}

	.hero__grid {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		align-items: end;
		gap: 0 clamp(2rem, 4vw, 5rem);
	}

	.hero__copy {
		padding-bottom: clamp(1rem, 3vw, 3rem);
	}

	/* Scale to the half-width column so "String" always fits. */
	.hero__title {
		font-size: clamp(4.5rem, 11vw, 10.5rem);
	}

	/* "Quartet" crosses onto the photograph; the blend reads as ink on ivory
	   and as ivory on the photo. #fffff8 − ivory ≈ ink. */
	.hero__word--3 {
		position: relative;
		z-index: 2;
		width: max-content;
		padding-left: 1.55em;
		color: #fffff8;
		mix-blend-mode: difference;
	}
}

/* Ticker */
.ticker,
.marquee {
	position: relative;
	display: flex;
	overflow: hidden;
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
	mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.ticker {
	margin-top: clamp(3.5rem, 7vw, 6rem);
	padding-block: 1.25rem;
	border-top: 1px solid var(--serein-line);
	border-bottom: 1px solid var(--serein-line);
}

.ticker__track,
.marquee__track {
	display: flex;
	flex: none;
	align-items: center;
	white-space: nowrap;
	animation: serein-marquee 48s linear infinite;
}

.ticker__item {
	display: inline-flex;
	align-items: center;
	color: var(--serein-ink);
	font-family: var(--serif);
	font-size: clamp(1.15rem, 1rem + 0.7vw, 1.6rem);
	font-style: italic;
}

.ticker__item::after {
	content: "";
	width: 6px;
	height: 6px;
	margin-inline: 2.2rem;
	background: var(--serein-varnish);
	transform: rotate(45deg);
}

@keyframes serein-marquee {
	to {
		transform: translateX(-50%);
	}
}

/* Statement --------------------------------------------------------------- */
.statement {
	padding-block: clamp(5rem, 11vw, 10rem);
	text-align: center;
}

.statement__mark {
	width: 46px;
	height: 46px;
	margin: 0 auto 2.2rem;
	color: var(--serein-varnish);
}

.statement__text {
	max-width: 22ch;
	margin: 0 auto;
	color: var(--serein-ink);
	font-family: var(--serif);
	font-size: clamp(2rem, 1.2rem + 3.4vw, 4.3rem);
	line-height: 1.1;
	letter-spacing: -0.02em;
}

/* About ------------------------------------------------------------------- */
.about {
	padding-top: 0;
}

.about__grid {
	display: grid;
	gap: 5rem;
}

.about__media {
	position: relative;
	max-width: 36rem;
	margin-bottom: 3rem;
}

.about__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.about__img--main {
	aspect-ratio: 4 / 5;
	width: 82%;
}

.about__img--sub {
	position: absolute;
	right: 0;
	bottom: -3rem;
	width: 44%;
	aspect-ratio: 4 / 5;
	border: 10px solid var(--serein-ivory);
}

.about__badge {
	position: absolute;
	top: -2.5rem;
	right: 6%;
	width: clamp(110px, 12vw, 150px);
	height: auto;
	border-radius: 50%;
	background: var(--serein-ivory);
	color: var(--serein-ink);
	animation: serein-spin 36s linear infinite;
}

.about__badge text {
	fill: currentColor;
	font-family: var(--sans);
	font-size: 12.5px;
	font-weight: 500;
	letter-spacing: 3.6px;
	text-transform: uppercase;
}

.about__badge .about__badge-mark {
	fill: var(--serein-varnish);
	font-family: var(--serif);
	font-size: 44px;
	font-style: italic;
	letter-spacing: 0;
	text-transform: none;
}

@keyframes serein-spin {
	to {
		transform: rotate(360deg);
	}
}

.about__credential {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
	max-width: 36rem;
	margin-top: 1.8rem;
	color: var(--serein-ink);
	font-family: var(--serif);
	font-size: 1.2rem;
	font-style: italic;
	line-height: 1.45;
}

.about__credential::before {
	content: "";
	flex: none;
	width: 2rem;
	height: 1px;
	margin-top: 0.8em;
	background: var(--serein-varnish);
}

.pillars {
	display: grid;
	gap: 2rem;
	margin-block: 3rem;
}

.pillar {
	padding-top: 1.5rem;
	border-top: 1px solid var(--serein-ink);
}

.pillar__title {
	margin-bottom: 0.7rem;
	font-size: 1.45rem;
	line-height: 1.2;
}

.pillar p {
	color: var(--serein-muted);
	font-size: 0.97rem;
}

@media (min-width: 700px) {
	.pillars {
		grid-template-columns: 1fr 1fr;
		gap: 2.5rem;
	}
}

@media (min-width: 960px) {
	.about__grid {
		grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
		align-items: start;
		gap: clamp(3rem, 7vw, 8rem);
	}

	.about__media {
		position: sticky;
		top: calc(var(--header-h) + 3rem);
		margin-bottom: 0;
	}

	.about__copy {
		padding-top: 4rem;
	}
}

/* Quote band -------------------------------------------------------------- */
.quote-band {
	position: relative;
	display: flex;
	align-items: flex-end;
	min-height: min(100vh, 58rem);
	padding-block: clamp(6rem, 12vw, 10rem) clamp(4rem, 8vw, 7rem);
	overflow: hidden;
	background: var(--serein-ink);
	color: var(--serein-ivory);
}

.quote-band__media {
	position: absolute;
	inset: -8% 0;
}

.quote-band__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 40%;
}

.quote-band::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(10, 9, 8, 0.15) 0%, rgba(10, 9, 8, 0.25) 40%, rgba(10, 9, 8, 0.85) 100%);
}

.quote-band__inner {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 2rem;
}

.quote-band__quote {
	margin: 0;
}

.quote-band__quote p {
	max-width: 18ch;
	color: var(--serein-ivory);
	font-family: var(--serif);
	font-size: clamp(2.2rem, 1.2rem + 4vw, 5rem);
	font-style: italic;
	line-height: 1.04;
	letter-spacing: -0.02em;
}

.quote-band__text {
	max-width: 36rem;
	color: rgba(246, 242, 235, 0.86);
}

@media (min-width: 960px) {
	.quote-band__inner {
		grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
		align-items: end;
		gap: 5rem;
	}
}

/* Services ---------------------------------------------------------------- */
.services__head {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: 2rem;
	margin-bottom: clamp(3rem, 6vw, 5rem);
}

.services__head .s-heading {
	margin-bottom: 0;
}

.services__grid {
	display: grid;
	gap: 4rem 2rem;
}

.service__inner {
	display: block;
	color: inherit;
	text-decoration: none;
}

.service__inner:hover {
	color: inherit;
}

.service__media {
	aspect-ratio: 4 / 5;
	margin-bottom: 1.6rem;
	overflow: hidden;
	background: var(--serein-ink-2);
}

.service__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 1.4s var(--ease);
}

.service:hover .service__media img {
	transform: scale(1.045);
}

.service__body {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0.3rem 1.2rem;
}

.service__num {
	grid-row: span 2;
	padding-top: 0.35rem;
	color: var(--serein-champagne);
	font-family: var(--serif);
	font-size: 1rem;
	font-style: italic;
}

.service__title {
	margin: 0 0 0.4rem;
	font-size: clamp(1.5rem, 1.2rem + 1vw, 2.1rem);
}

.service__text {
	max-width: 30rem;
	margin: 0;
	font-size: 0.97rem;
}

@media (min-width: 800px) {
	.services__grid {
		grid-template-columns: repeat(12, minmax(0, 1fr));
		gap: 5rem 2.5rem;
	}

	.service:nth-child(5n + 1) {
		grid-column: span 7;
	}

	.service:nth-child(5n + 1) .service__media,
	.service:nth-child(5n + 2) .service__media {
		aspect-ratio: 3 / 2;
	}

	.service:nth-child(5n + 2) {
		grid-column: span 5;
		margin-top: 9rem;
	}

	.service:nth-child(5n + 3) {
		grid-column: span 6;
	}

	.service:nth-child(5n + 3) .service__media {
		aspect-ratio: 16 / 10;
	}

	.service:nth-child(5n + 4) {
		grid-column: span 3;
		margin-top: 5rem;
	}

	.service:nth-child(5n + 5) {
		grid-column: span 3;
		margin-top: 10rem;
	}

	.service:nth-child(5n + 4) .service__media,
	.service:nth-child(5n + 5) .service__media {
		aspect-ratio: 3 / 4;
	}

	.service:nth-child(5n + 4) .service__title,
	.service:nth-child(5n + 5) .service__title {
		font-size: 1.5rem;
	}
}

/* Film -------------------------------------------------------------------- */
.film {
	position: relative;
	display: flex;
	align-items: flex-end;
	/* Always edge to edge: the height follows the width (4:5 on phones, 16:9 on
	   larger screens) but never exceeds the screen, and the video crops to fill.
	   (aspect-ratio + max-height would shrink the width on wide screens.) */
	width: 100%;
	height: min(125vw, 100vh);
	height: min(125vw, 100svh);
	overflow: hidden;
	background: var(--serein-night);
	color: var(--serein-ivory);
}

/* Break out of any boxed parent (e.g. an Elementor container) to span the page.
   --serein-page-w is the page width without the scrollbar (set in main.js). */
.film--stretch {
	width: var(--serein-page-w, 100vw);
	max-width: none;
	margin-inline: calc(50% - var(--serein-page-w, 100vw) / 2);
}

.film__media,
.film__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.site-main .film__video {
	max-width: none;
	height: 100%;
	object-fit: cover;
}

.film::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(10, 9, 8, 0) 25%, rgba(10, 9, 8, 0.82) 100%);
	pointer-events: none;
}

.film__inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1.5rem 2rem;
	padding-block: clamp(2rem, 6vw, 4.5rem);
}

.film__copy {
	min-width: 0;
	max-width: 44rem;
	text-shadow: 0 1px 18px rgba(10, 9, 8, 0.45);
}

.film__eyebrow {
	color: var(--serein-champagne);
}

.film__title {
	margin: 0;
	color: var(--serein-ivory);
	font-size: clamp(2rem, 1.2rem + 3.6vw, 4.6rem);
	line-height: 1.02;
	letter-spacing: -0.02em;
}

.film__title em {
	color: var(--serein-champagne);
}

.film__toggle {
	display: inline-flex;
	align-items: center;
	gap: 0.8rem;
	padding: 0.7rem 1.1rem 0.7rem 0.7rem;
	border: 1px solid rgba(246, 242, 235, 0.45);
	border-radius: 999px;
	background: rgba(10, 9, 8, 0.35);
	color: var(--serein-ivory);
	font-family: var(--sans);
	font-size: 0.68rem;
	font-weight: 500;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	cursor: pointer;
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);
	transition: background-color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.film__toggle:hover {
	border-color: var(--serein-ivory);
	background: rgba(10, 9, 8, 0.6);
}

/* Pause icon (two bars); becomes a play triangle when paused. */
.film__toggle-icon {
	position: relative;
	display: block;
	width: 26px;
	height: 26px;
	border: 1px solid currentColor;
	border-radius: 50%;
}

.film__toggle-icon::before,
.film__toggle-icon::after {
	content: "";
	position: absolute;
	top: 8px;
	width: 2px;
	height: 8px;
	background: currentColor;
}

.film__toggle-icon::before {
	left: 9px;
}

.film__toggle-icon::after {
	left: 13px;
}

.film__toggle[aria-pressed="true"] .film__toggle-icon::before {
	top: 7px;
	left: 10px;
	width: 0;
	height: 0;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	border-left: 8px solid currentColor;
	background: none;
}

.film__toggle[aria-pressed="true"] .film__toggle-icon::after {
	display: none;
}

@media (min-width: 768px) {
	.film {
		height: min(56.25vw, 100vh);
		height: min(56.25vw, 100svh);
	}

	.film::after {
		background: linear-gradient(180deg, rgba(10, 9, 8, 0) 45%, rgba(10, 9, 8, 0.72) 100%);
	}
}

/* Journey ----------------------------------------------------------------- */
.journey__intro {
	display: grid;
	gap: 1rem 5rem;
	margin-bottom: clamp(4rem, 8vw, 7rem);
}

.journey__lead {
	color: var(--serein-ink);
	font-family: var(--serif);
	font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2.2rem);
	font-style: italic;
	line-height: 1.25;
}

.journey__intro-copy p:not(.journey__lead) {
	color: var(--serein-muted);
}

@media (min-width: 960px) {
	.journey__intro {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		align-items: start;
	}

	.journey__intro-copy {
		padding-top: 3.2rem;
	}

	.journey__intro .s-heading {
		margin-bottom: 0;
	}
}

.steps {
	display: grid;
	gap: clamp(5rem, 10vw, 9rem);
	margin: 0;
	padding: 0;
	list-style: none;
}

.step {
	display: grid;
	gap: 2.5rem;
	align-items: center;
}

.step__media img {
	width: 100%;
}

.step__body {
	position: relative;
}

.step__numeral {
	display: block;
	margin-bottom: 1.5rem;
	color: transparent;
	font-family: var(--serif);
	font-size: clamp(5.5rem, 3rem + 9vw, 11rem);
	line-height: 0.8;
	letter-spacing: 0.02em;
	-webkit-text-stroke: 1px var(--serein-varnish);
}

.step__label {
	margin-bottom: 0.8rem;
	color: var(--serein-varnish);
	font-size: 0.72rem;
	font-weight: 500;
	letter-spacing: 0.26em;
	text-transform: uppercase;
}

.step__title {
	font-size: clamp(1.9rem, 1.4rem + 1.8vw, 3rem);
	max-width: 18ch;
}

.step__text {
	max-width: 36rem;
	color: var(--serein-muted);
}

@media (min-width: 900px) {
	.step {
		grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
		gap: clamp(3rem, 7vw, 8rem);
	}

	.step:nth-child(even) .step__media {
		order: 2;
	}

	.step:nth-child(even) {
		grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
	}
}

/* Brochure CTA */
.brochure {
	position: relative;
	display: grid;
	gap: 2rem;
	margin-top: clamp(5rem, 10vw, 9rem);
	padding: clamp(2.5rem, 6vw, 5rem);
	overflow: hidden;
	background: var(--serein-ink);
	color: var(--serein-mist);
}

.brochure::after {
	content: "S";
	position: absolute;
	right: -0.05em;
	bottom: -0.32em;
	color: rgba(205, 177, 137, 0.12);
	font-family: var(--serif);
	font-size: clamp(14rem, 30vw, 26rem);
	font-style: italic;
	line-height: 1;
	pointer-events: none;
}

.brochure .eyebrow {
	color: var(--serein-champagne);
}

.brochure__title {
	color: var(--serein-ivory);
	font-size: clamp(2rem, 1.4rem + 2.2vw, 3.4rem);
}

.brochure__copy p:last-child {
	max-width: 30rem;
}

.brochure__action {
	position: relative;
	z-index: 1;
}

.brochure .btn--solid {
	border-color: var(--serein-ivory);
	background: var(--serein-ivory);
	color: var(--serein-ink);
}

.brochure .btn--solid:hover {
	border-color: var(--serein-champagne);
	background: var(--serein-champagne);
}

@media (min-width: 900px) {
	.brochure {
		grid-template-columns: minmax(0, 1fr) auto;
		align-items: end;
	}
}

/* Genres ------------------------------------------------------------------ */
.genres__grid {
	display: grid;
	gap: 4rem 2.5rem;
}

.genre {
	text-align: center;
}

.genre__media {
	aspect-ratio: 3 / 4;
	max-width: 26rem;
	margin: 0 auto 2rem;
	overflow: hidden;
	border-radius: 999px 999px 0 0;
}

.genre__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 1.4s var(--ease);
}

.genre:hover .genre__media img {
	transform: scale(1.05);
}

.genre__title {
	font-size: clamp(1.7rem, 1.3rem + 1.2vw, 2.4rem);
	font-style: italic;
}

.genre__text {
	max-width: 24rem;
	margin-inline: auto;
	color: var(--serein-muted);
	font-size: 0.97rem;
}

@media (min-width: 800px) {
	.genres__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.genre:nth-child(3n + 2) {
		margin-top: 5rem;
	}
}

.marquee {
	margin-top: clamp(5rem, 9vw, 8rem);
}

.marquee__track {
	animation-duration: 70s;
}

.marquee__item {
	display: inline-flex;
	align-items: center;
	color: var(--serein-ink);
	font-family: var(--serif);
	font-size: clamp(2.6rem, 1.5rem + 4.5vw, 6rem);
	line-height: 1.15;
}

.marquee__item:nth-child(even) {
	font-style: italic;
	color: var(--serein-varnish);
}

.marquee__item::after {
	content: "·";
	margin-inline: 0.45em;
	color: var(--serein-ink);
	font-style: normal;
}

/* Media ------------------------------------------------------------------- */
.media__head {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: 2rem;
	margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.media__head .s-heading {
	margin-bottom: 0;
}

.media__videos {
	display: grid;
	gap: 2rem;
	margin-bottom: 2rem;
}

.media__video iframe {
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
}

@media (min-width: 800px) {
	.media__videos {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

/* Grid, not CSS columns: multi-column layout plus the reveal transform can
   misplace items in some browsers, and columns read top-to-bottom. */
.gallery {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 1rem;
}

.gallery__item {
	position: relative;
	display: block;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	background: var(--serein-bone);
	cursor: zoom-in;
}

.gallery__item--wide {
	aspect-ratio: 3 / 2;
}

.site-main .gallery__item img {
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
	transition: transform 1.4s var(--ease);
}

.gallery__item:hover img {
	transform: scale(1.04);
}

.gallery__item::after {
	content: "";
	position: absolute;
	inset: 0;
	border: 1px solid rgba(246, 242, 235, 0);
	transition: border-color 0.5s var(--ease), inset 0.5s var(--ease);
}

.gallery__item:hover::after {
	inset: 12px;
	border-color: rgba(246, 242, 235, 0.8);
}

/* Tablet: 2 columns; landscape spans the row, portraits pair up as tall tiles. */
@media (min-width: 600px) {
	.gallery {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-auto-rows: clamp(11rem, 30vw, 17rem);
		grid-auto-flow: dense;
		gap: 1.25rem;
	}

	.gallery__item,
	.gallery__item--wide {
		aspect-ratio: auto;
		grid-row: span 2;
	}

	.gallery__item--wide {
		grid-column: span 2;
	}
}

/* Desktop: 4 columns; landscape = 2 wide × 1 tall, portrait = 1 wide × 2 tall. */
@media (min-width: 1000px) {
	.gallery {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		grid-auto-rows: clamp(12rem, 17vw, 16.5rem);
		gap: 1.5rem;
	}

	.gallery__item--wide {
		grid-row: span 1;
	}
}

/* Lightbox */
.lightbox {
	width: 100vw;
	max-width: none;
	height: 100vh;
	max-height: none;
	margin: 0;
	padding: 0;
	border: 0;
	background: rgba(10, 9, 8, 0.96);
	color: var(--serein-ivory);
}

.lightbox::backdrop {
	background: rgba(10, 9, 8, 0.9);
}

.lightbox__stage {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	padding: 4.5rem 1rem;
}

.lightbox__img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.lightbox__btn {
	position: absolute;
	display: grid;
	place-items: center;
	width: 3.2rem;
	height: 3.2rem;
	border: 1px solid var(--serein-line-light);
	border-radius: 50%;
	background: transparent;
	color: var(--serein-ivory);
	font-family: var(--serif);
	font-size: 1.4rem;
	cursor: pointer;
	transition: background-color 0.3s var(--ease), color 0.3s var(--ease);
}

.lightbox__btn:hover {
	background: var(--serein-ivory);
	color: var(--serein-ink);
}

.lightbox__close {
	top: 1rem;
	right: 1rem;
}

.lightbox__prev,
.lightbox__next {
	top: 50%;
	transform: translateY(-50%);
}

.lightbox__prev {
	left: 1rem;
}

.lightbox__next {
	right: 1rem;
}

.lightbox__count {
	position: absolute;
	bottom: 1.4rem;
	left: 50%;
	transform: translateX(-50%);
	font-size: 0.7rem;
	letter-spacing: 0.26em;
}

/* FAQ --------------------------------------------------------------------- */
.faq__grid {
	display: grid;
	gap: 1rem 6rem;
}

.faq__more {
	color: var(--serein-muted);
}

.faq__more a {
	color: var(--serein-ink);
	font-weight: 500;
}

.faq__list {
	border-bottom: 1px solid var(--serein-line);
}

.faq__item {
	border-top: 1px solid var(--serein-line);
}

.faq__q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	padding-block: 1.6rem;
	color: var(--serein-ink);
	font-family: var(--serif);
	font-size: clamp(1.2rem, 1.05rem + 0.6vw, 1.55rem);
	line-height: 1.3;
	list-style: none;
	cursor: pointer;
}

.faq__q::-webkit-details-marker {
	display: none;
}

.faq__q:hover {
	color: var(--serein-varnish);
}

.faq__icon {
	position: relative;
	flex: none;
	width: 16px;
	height: 16px;
}

.faq__icon::before,
.faq__icon::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 1px;
	background: currentColor;
	transition: transform 0.45s var(--ease);
}

.faq__icon::after {
	transform: rotate(90deg);
}

.faq__item[open] .faq__icon::after {
	transform: rotate(0deg);
}

.faq__a {
	max-width: 44rem;
	padding-bottom: 1.8rem;
	color: var(--serein-muted);
}

@media (min-width: 960px) {
	.faq__grid {
		grid-template-columns: minmax(0, 4fr) minmax(0, 7fr);
		align-items: start;
	}

	.faq__aside {
		position: sticky;
		top: calc(var(--header-h) + 3rem);
	}
}

/* Newsletter -------------------------------------------------------------- */
.newsletter {
	padding-block: clamp(4rem, 8vw, 6.5rem);
	background: var(--serein-varnish);
	color: rgba(246, 242, 235, 0.86);
}

.newsletter__inner {
	display: grid;
	gap: 2.5rem;
	align-items: center;
}

.newsletter__title {
	max-width: 20ch;
	color: var(--serein-ivory);
	font-size: clamp(1.8rem, 1.3rem + 1.8vw, 2.9rem);
}

.newsletter-form {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.newsletter-form input[type="email"] {
	flex: 1 1 16rem;
	min-width: 0;
	padding: 1rem 0;
	border: 0;
	border-bottom: 1px solid rgba(246, 242, 235, 0.6);
	border-radius: 0;
	background: transparent;
	color: var(--serein-ivory);
	font: inherit;
	font-size: 1.05rem;
}

.newsletter-form input::placeholder {
	color: rgba(246, 242, 235, 0.7);
}

.newsletter-form input:focus {
	border-bottom-color: var(--serein-ivory);
	outline: none;
}

.newsletter .form-notice {
	color: var(--serein-ivory);
}

@media (min-width: 900px) {
	.newsletter__inner {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		gap: 5rem;
	}
}

/* Contact ----------------------------------------------------------------- */
.contact__grid {
	display: grid;
	gap: 4rem;
}

.contact__details {
	margin: 3rem 0 0;
}

.contact__details > div {
	display: grid;
	grid-template-columns: minmax(0, 8rem) minmax(0, 1fr);
	gap: 1rem;
	padding-block: 1.1rem;
	border-top: 1px solid var(--serein-line-light);
}

.contact__details dt {
	color: var(--serein-champagne);
	font-size: 0.7rem;
	font-weight: 500;
	letter-spacing: 0.24em;
	line-height: 2.2;
	text-transform: uppercase;
}

.contact__details dd {
	min-width: 0;
	overflow-wrap: anywhere;
	display: flex;
	flex-wrap: wrap;
	gap: 0.2rem 1.2rem;
	margin: 0;
	color: var(--serein-ivory);
	font-family: var(--serif);
	font-size: 1.2rem;
}

.contact__details a {
	color: var(--serein-ivory);
	text-decoration: none;
}

.contact__details a:hover {
	color: var(--serein-champagne);
}

@media (min-width: 960px) {
	.contact__grid {
		grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
		gap: clamp(3rem, 7vw, 8rem);
	}

	.contact__form {
		padding-top: 3.5rem;
	}
}

/* Forms */
.enquiry-form {
	display: grid;
	gap: 0.5rem 2rem;
}

@media (min-width: 640px) {
	.enquiry-form {
		grid-template-columns: 1fr 1fr;
	}

	.field--full {
		grid-column: 1 / -1;
	}
}

.field {
	position: relative;
	padding-top: 1.1rem;
}

.field input,
.field select,
.field textarea {
	width: 100%;
	padding: 0.9rem 0 0.7rem;
	border: 0;
	border-bottom: 1px solid rgba(246, 242, 235, 0.3);
	border-radius: 0;
	background: transparent;
	color: var(--serein-ivory);
	font: inherit;
	font-size: 1.05rem;
	color-scheme: dark;
	transition: border-color 0.3s var(--ease);
	-webkit-appearance: none;
	appearance: none;
}

.field select {
	background-image: linear-gradient(45deg, transparent 50%, currentColor 50%), linear-gradient(135deg, currentColor 50%, transparent 50%);
	background-position: calc(100% - 10px) 55%, calc(100% - 5px) 55%;
	background-size: 5px 5px;
	background-repeat: no-repeat;
}

.field select option {
	background: var(--serein-ink);
	color: var(--serein-ivory);
}

.field textarea {
	min-height: 7rem;
	resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
	border-bottom-color: var(--serein-champagne);
	outline: none;
}

.field label {
	position: absolute;
	top: 1.95rem;
	left: 0;
	color: var(--serein-mist);
	font-size: 1rem;
	pointer-events: none;
	transform-origin: left top;
	transition: transform 0.35s var(--ease), color 0.35s var(--ease);
}

.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label,
.field input[type="date"] + label,
.field label.is-static {
	color: var(--serein-champagne);
	transform: translateY(-1.55rem) scale(0.72);
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

.field--submit {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1.5rem;
	padding-top: 2rem;
}

.form-privacy {
	margin: 0;
	color: var(--serein-mist);
	font-size: 0.82rem;
}

.form-notice {
	margin-bottom: 2rem;
	padding: 1.1rem 1.4rem;
	border-left: 2px solid var(--serein-champagne);
	background: rgba(246, 242, 235, 0.06);
	color: var(--serein-ivory);
}

.form-notice--error {
	border-left-color: #d98a6a;
}

.hp {
	position: absolute !important;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

/* Third-party form plugins inside the dark contact panel. */
.contact__form input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]),
.contact__form textarea,
.contact__form select {
	color: var(--serein-ivory);
}

/* Musicians --------------------------------------------------------------- */
.musicians__intro {
	max-width: 58rem;
	margin-bottom: clamp(4rem, 8vw, 7rem);
}

.musicians__title {
	margin-bottom: 1.8rem;
	font-size: clamp(3rem, 1.5rem + 6.5vw, 8rem);
	line-height: 0.92;
	letter-spacing: -0.035em;
}

.musicians__content {
	margin-top: 2rem;
}

.musicians__list {
	display: grid;
	gap: clamp(5rem, 9vw, 8rem);
}

.musician {
	display: grid;
	gap: 2rem;
	align-items: center;
}

.musician__media {
	position: relative;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	background: var(--serein-bone);
}

.musician__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: opacity 0.9s var(--ease), transform 1.4s var(--ease);
}

.musician__img--alt {
	opacity: 0;
}

.musician:hover .musician__img--alt,
.musician__media:focus-within .musician__img--alt {
	opacity: 1;
}

.musician:hover .musician__img {
	transform: scale(1.03);
}

.musician__instrument {
	display: flex;
	align-items: baseline;
	gap: 1rem;
	margin-bottom: 1rem;
	color: var(--serein-ink);
	font-size: 0.72rem;
	font-weight: 500;
	letter-spacing: 0.26em;
	text-transform: uppercase;
}

.musician__index {
	color: var(--serein-varnish);
	font-family: var(--serif);
	font-size: 1rem;
	font-style: italic;
	letter-spacing: 0;
}

.musician__name {
	margin-bottom: 0.8rem;
	font-size: clamp(2.2rem, 1.5rem + 2.6vw, 4rem);
	letter-spacing: -0.02em;
}

.musician__education {
	color: var(--serein-varnish);
	font-family: var(--serif);
	font-size: 1.15rem;
	font-style: italic;
}

.musician__bio {
	max-width: 36rem;
	margin-top: 1.5rem;
	color: var(--serein-muted);
}

@media (min-width: 900px) {
	.musician {
		grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
		gap: clamp(3rem, 7vw, 8rem);
	}

	.musician:nth-child(even) {
		grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
	}

	.musician:nth-child(even) .musician__media {
		order: 2;
	}
}

/* Portrait grid variant */
.musicians--grid .musicians__list {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 3rem 1.5rem;
}

.musicians--grid .musician,
.musicians--grid .musician:nth-child(even) {
	grid-template-columns: 1fr;
	gap: 1.2rem;
	align-items: start;
}

.musicians--grid .musician:nth-child(even) .musician__media {
	order: 0;
}

.musicians--grid .musician__name {
	font-size: clamp(1.4rem, 1.2rem + 0.8vw, 1.9rem);
}

@media (min-width: 900px) {
	.musicians--grid .musicians__list {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 2rem;
	}

	.musicians--grid .musician:nth-child(even) {
		margin-top: 4rem;
	}
}

/* Pages, posts ------------------------------------------------------------ */
.page-hero {
	padding-block: clamp(4rem, 9vw, 8rem) clamp(2.5rem, 5vw, 4rem);
}

.page-hero--center {
	min-height: calc(80vh - var(--header-h));
	display: flex;
	align-items: center;
	text-align: center;
}

.page-hero--center .eyebrow {
	justify-content: center;
}

.page-hero--center .lead {
	margin-inline: auto;
}

.page-hero__title {
	max-width: 18ch;
	margin-bottom: 1.2rem;
	font-size: clamp(2.6rem, 1.5rem + 5vw, 6.2rem);
	line-height: 0.98;
	letter-spacing: -0.03em;
}

.page-hero--center .page-hero__title {
	margin-inline: auto;
}

.page-hero__title em {
	color: var(--serein-varnish);
}

.page-hero__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
	margin-top: 2.5rem;
}

.page-feature img {
	width: 100%;
	max-height: 80vh;
	object-fit: cover;
}

.page-feature--portrait {
	max-width: 42rem;
}

.entry-content > * {
	margin-block: 0 1.4em;
}

.entry-content h2 {
	margin-top: 2em;
	font-size: clamp(1.8rem, 1.4rem + 1.5vw, 2.6rem);
}

.entry-content h3 {
	margin-top: 1.6em;
	font-size: 1.6rem;
}

.entry-content a {
	color: var(--serein-varnish);
}

.entry-content blockquote {
	margin-inline: 0;
	padding-left: 1.5rem;
	border-left: 1px solid var(--serein-varnish);
	color: var(--serein-ink);
	font-family: var(--serif);
	font-size: 1.4rem;
	font-style: italic;
}

.entry-content .alignwide {
	margin-inline: calc(50% - min(45vw, 40rem));
	max-width: none;
}

.entry-content .alignfull {
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
}

.post-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 18rem), 1fr));
	gap: 3rem 2rem;
}

.post-card__link {
	display: block;
	text-decoration: none;
}

.post-card__media {
	aspect-ratio: 4 / 5;
	margin-bottom: 1.2rem;
	overflow: hidden;
}

.post-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.post-card__meta {
	margin-bottom: 0.5rem;
	color: var(--serein-muted);
	font-size: 0.72rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

.post-card__title {
	font-size: 1.7rem;
}

.post-card__excerpt {
	color: var(--serein-muted);
}

.nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 4rem;
}

.search-form {
	display: flex;
	gap: 1rem;
	max-width: 32rem;
	margin-top: 2rem;
}

.search-form input {
	flex: 1;
	padding: 0.8rem 0;
	border: 0;
	border-bottom: 1px solid var(--serein-ink);
	background: transparent;
	font: inherit;
}

/* Full-width / Elementor pages -------------------------------------------- */
/* Elementor's ".elementor img { height: auto }" would un-crop cover images. */
.site-main .hero__img,
.site-main .about__img img,
.site-main .quote-band__media img,
.site-main .service__media img,
.site-main .genre__media img,
.site-main .musician__img,
.site-main .post-card__media img {
	height: 100%;
	max-width: none;
	width: 100%;
	border-radius: 0;
}

.full-width-content,
.elementor-page-wrap {
	width: 100%;
}

/* Serein sections always fill their Elementor container and may shrink below
   their content's natural width (flex items default to min-width: auto). */
.elementor-widget[class*="elementor-widget-serein-"] {
	width: 100%;
	min-width: 0;
}

/* Let a stretched film overflow its widget/container box. */
.elementor-widget-serein-film,
.elementor-widget-serein-film > .elementor-widget-container {
	overflow: visible;
}

/* Elementor's own Button widget in the Serein style. Kept at low specificity so
   Site Settings → Buttons and per-widget Style settings still override it. */
body .elementor-button {
	padding: 1.05rem 1.9rem;
	border: 1px solid var(--serein-ink);
	border-radius: 0;
	background-color: var(--serein-ink);
	color: var(--serein-ivory);
	font-family: var(--sans);
	font-size: 0.72rem;
	font-weight: 500;
	letter-spacing: 0.22em;
	line-height: 1.2;
	text-transform: uppercase;
	transition: background-color 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease);
}

body .elementor-button:hover,
body .elementor-button:focus {
	border-color: var(--serein-varnish);
	background-color: var(--serein-varnish);
	color: var(--serein-ivory);
}

.elementor-editor-active [data-reveal],
.elementor-editor-preview [data-reveal] {
	opacity: 1 !important;
	transform: none !important;
}

/* Footer ------------------------------------------------------------------ */
.site-footer {
	padding-top: clamp(4rem, 8vw, 7rem);
	overflow: hidden;
	background: var(--serein-night);
	color: var(--serein-mist);
	font-size: 0.95rem;
}

.site-footer a {
	color: var(--serein-ivory);
	text-decoration: none;
}

.site-footer a:hover {
	color: var(--serein-champagne);
}

.site-footer .btn--light,
.site-footer .btn--light:hover {
	color: var(--serein-ink);
}

.site-footer__top {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	padding-bottom: clamp(3rem, 6vw, 4.5rem);
	border-bottom: 1px solid var(--serein-line-light);
}

.site-footer__motto {
	max-width: 22ch;
	margin: 0;
	color: var(--serein-ivory);
	font-family: var(--serif);
	font-size: clamp(1.8rem, 1.3rem + 2vw, 3rem);
	font-style: italic;
	line-height: 1.1;
}

.site-footer__grid {
	display: grid;
	gap: 2.5rem;
	padding-block: 3.5rem;
}

.site-footer__about p {
	max-width: 24rem;
	margin-top: 1.5rem;
}

.site-footer .wordmark {
	align-items: flex-start;
	color: var(--serein-ivory);
}

.site-footer__heading {
	margin-bottom: 1.2rem;
	color: var(--serein-champagne);
	font-family: var(--sans);
	font-size: 0.7rem;
	font-weight: 500;
	letter-spacing: 0.26em;
	text-transform: uppercase;
}

.site-footer__menu,
.site-footer__list,
.site-footer .menu {
	display: grid;
	gap: 0.5rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

@media (min-width: 700px) {
	.site-footer__grid {
		grid-template-columns: 1.6fr 1fr 1fr;
	}

	.site-footer__grid:has(> :nth-child(4)) {
		grid-template-columns: 1.6fr 1fr 1fr 1fr;
	}
}

.site-footer__giant {
	margin: 0 0 1rem;
	color: rgba(246, 242, 235, 0.07);
	font-family: var(--serif);
	font-size: clamp(3.6rem, 13.5vw, 14rem);
	font-style: italic;
	line-height: 1;
	letter-spacing: -0.03em;
	text-align: center;
	white-space: nowrap;
}

.site-footer__bottom {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 0.5rem 2rem;
	padding-block: 1.6rem;
	border-top: 1px solid var(--serein-line-light);
	font-size: 0.78rem;
	letter-spacing: 0.06em;
}

.site-footer__bottom p {
	margin: 0;
}

/* Motion ------------------------------------------------------------------ */
.js [data-reveal] {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 1.1s var(--ease), transform 1.1s var(--ease);
}

.js [data-reveal].is-visible {
	opacity: 1;
	transform: none;
}

.js .hero__word > span {
	transform: translateY(105%);
	transition: transform 1.2s var(--ease);
}

.js .hero__word--2 > span {
	transition-delay: 0.12s;
}

.js .hero__word--3 > span {
	transition-delay: 0.24s;
}

.js .is-loaded .hero__word > span {
	transform: none;
}

.js .hero__img {
	clip-path: inset(100% 0 0 0);
	transition: clip-path 1.6s var(--ease) 0.15s;
}

.js .is-loaded .hero__img {
	clip-path: inset(0 0 0 0);
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.001ms !important;
	}

	.js [data-reveal],
	.js .hero__word > span {
		opacity: 1;
		transform: none;
	}

	.js .hero__img {
		clip-path: none;
	}
}

/* Print */
@media print {
	.site-header,
	.mobile-menu,
	.ticker,
	.marquee,
	.newsletter,
	.enquiry-form {
		display: none !important;
	}

	.site-main {
		padding-top: 0;
	}

	.js [data-reveal] {
		opacity: 1;
		transform: none;
	}
}
