/* ==========================================================================
   THE FUNÄS FESTIVAL — Design tokens
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&display=swap');

:root {
	/* Palette — warm nordic, inspired by fjäll höstfärg */
	--color-offwhite: #F7F5F0;
	--color-sand: #EAE3D6;
	--color-granite: #1C1D1B;
	--color-forest: #2B3B31;
	--color-blue-grey: #3A4650;
	--color-brass: #B08D57;
	--color-brass-light: #C9A876;
	--color-ink: #17181A;
	--color-white: #FFFFFF;

	/* Type */
	--font-serif: 'Playfair Display', Georgia, serif;
	--font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

	--container: 1280px;
	--gutter: clamp(24px, 5vw, 80px);

	--ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   Reset & base
   ========================================================================== */

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

html {
	scroll-behavior: smooth;
	scroll-padding-top: 0;
}

@media (max-width: 900px) {
	html {
		scroll-padding-top: 60px;
	}
}

body {
	margin: 0;
	font-family: var(--font-sans);
	font-weight: 300;
	color: var(--color-granite);
	background: var(--color-offwhite);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

body.wp-singular:not(.home):not(.page-withhero) main {
	padding-top: 200px;
	padding-bottom: 100px;
}

@media (max-width: 1400px) {
	body.wp-singular:not(.home):not(.page-withhero) main {
		padding-top: 180px;
		padding-bottom: 80px;
	}
}

@media (max-width: 1100px) {
	body.wp-singular:not(.home):not(.page-withhero) main {
		padding-top: 160px;
		padding-bottom: 70px;
	}
}

@media (max-width: 800px) {
	body.wp-singular:not(.home):not(.page-withhero) main {
		padding-top: 140px;
		padding-bottom: 50px;
	}
}

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

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { margin: 0; font-weight: 300; line-height: 1.1; }

h1 em,
h2 em,
h3 em,
h4 em { display: block; }

.serif { font-family: var(--font-serif); }

em { font-style: italic; font-family: inherit; }

p { margin: 0 0 1em; }

.unselectable {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
	cursor: default;
}

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

.eyebrow {
	font-size: 0.72rem;
	letter-spacing: 0.35em;
	text-transform: uppercase;
	color: var(--color-brass);
	font-weight: 500;
	margin: 0 0 1em;
}

.eyebrow.gold {
	color: #B5923A;
}

/* ==========================================================================
   Reveal-on-scroll (progressive enhancement — visible by default)
   ========================================================================== */

.reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
	.reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 16px 36px;
	font-size: 0.82rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	font-weight: 500;
	border: 1px solid transparent;
	border-radius: 2px;
	cursor: pointer;
	transition: all 0.4s var(--ease);
	white-space: nowrap;
}
.btn--gold { background: var(--color-brass); color: var(--color-white); }
.btn--gold:hover { background: var(--color-brass-light); }
.btn--gold-outline { border-color: var(--color-brass); color: var(--color-brass); background: transparent; }
.btn--gold-outline:hover { background: var(--color-brass); color: var(--color-white); }
.btn--outline { border-color: rgba(255,255,255,0.6); color: var(--color-white); background: transparent; }
.btn--outline:hover { background: rgba(255,255,255,0.12); border-color: var(--color-white); }
.btn--outline-dark { border-color: var(--color-granite); color: var(--color-granite); background: transparent; }
.btn--outline-dark:hover { background: var(--color-granite); color: var(--color-white); }
.btn--disabled { border-color: #999; color: #999; opacity: 0.6; cursor: default; }

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 100;
	padding: 28px 0;
	transition: background 0.5s var(--ease), padding 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.site-header--solid {
	background: var(--color-granite);
}
.site-header.is-scrolled {
	background: rgba(23, 24, 26, 0.92);
	backdrop-filter: blur(10px);
	padding: 16px 0;
	box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}
.site-header__inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 var(--gutter);
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.site-header__logo { display: block; height: 55px; }
.site-header__logo img { height: 55px; width: auto; }
.site-header__logo .logo-color { display: none; }
.site-header__nav { display: flex; }
.site-header__menu {
	list-style: none;
	display: flex;
	align-items: center;
	gap: 32px;
	margin: 0; padding: 0;
}
.site-header__menu a {
	color: var(--color-white);
	font-size: 0.74rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-weight: 500;
	position: relative;
}
.site-header__menu a::after {
	content: '';
	position: absolute;
	left: 0; bottom: 0;
	width: 0; height: 1px;
	background: var(--color-brass-light);
	transition: width 0.35s var(--ease);
}
.site-header__menu a:hover::after { width: 100%; }
.site-header__menu-cta a {
	border: 1px solid rgba(201, 168, 118, 0.85);
	color: var(--color-brass-light) !important;
	padding: 11px 22px;
	border-radius: 2px;
	transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
}
.site-header__menu-cta a:hover {
	background: var(--color-brass-light);
	border-color: var(--color-brass-light);
	color: #fff !important;
}
.site-header__menu-cta a::after { display: none; }
.site-header__burger {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
}
.site-header__burger span {
	width: 26px; height: 1px;
	background: var(--color-white);
	display: block;
}
.mobile-nav {
	position: fixed;
	inset: 0;
	z-index: 99;
	display: block;
	padding: 120px var(--gutter) 40px;
	background: var(--color-ink);
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
	transform: translateY(-100%);
	transition:
		transform 0.5s var(--ease),
		opacity 0.3s ease,
		visibility 0s linear 0.5s;
}

.mobile-nav.is-open {
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
	transition-delay: 0s;
}
.mobile-nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 28px; }
.mobile-nav a { color: var(--color-white); font-size: 1.6rem; font-family: var(--font-serif); }

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
	position: relative;
	height: 100vh;
	min-height: 640px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	color: var(--color-white);
	text-align: center;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__video, .hero__poster {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	object-fit: cover;
}
.hero__poster { z-index: 1; transition: opacity 0.8s ease; }
.hero__video { z-index: 2; opacity: 0; transition: opacity 1s ease; }
.hero__video.is-ready { opacity: 1; }
.hero__overlay {
	position: absolute; inset: 0;
	z-index: 3;
	background: linear-gradient(180deg, rgba(10,10,9,0.55) 0%, rgba(10,10,9,0.35) 45%, rgba(10,10,9,0.6) 100%);
}
.hero__content {
	position: relative;
	z-index: 4;
	max-width: 760px;
	margin: 0 auto;
	padding: 0 var(--gutter);
	width: 100%;
}
.hero__eyebrow {
	font-size: 0.72rem;
	letter-spacing: .4em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.75);
	margin-bottom: 28px;
}
.hero__heading {
	font-family: var(--font-serif);
	font-size: clamp(2.8rem, 6.4vw, 6rem);
	font-weight: 400;
	line-height: 1;
	margin: 0 auto 28px;
	max-width: 14ch;
}
.hero__subtext {
	max-width: 50ch;
	margin-left: auto;
	margin-right: auto;
	font-size: 1.05rem;
	font-weight: 300;
	margin-bottom: 40px;
	color: rgba(255,255,255,0.88);
}
.hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.hero__ctas .btn { padding: 15px 30px; font-size: 0.76rem; }

.hero__sound-toggle {
	position: absolute;
	z-index: 5;
	right: var(--gutter);
	bottom: 32px;
	display: flex;
	align-items: center;
	gap: 12px;
	background: transparent;
	border: none;
	color: rgba(255,255,255,0.8);
	padding: 0;
	cursor: pointer;
	font-family: var(--font-sans);
	font-size: 0.68rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}
.hero__sound-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,0.45);
	transition: border-color 0.3s ease, background 0.3s ease;
	order: 2;
}
.hero__sound-label { order: 1; }
.hero__sound-toggle:hover .hero__sound-icon {
	border-color: rgba(255,255,255,0.85);
	background: rgba(255,255,255,0.08);
}
.hero__sound-icon svg { display: block; }
.hero__sound-toggle .icon-unmuted { display: none; }
.hero__sound-toggle.is-muted .icon-muted { display: block; }
.hero__sound-toggle:not(.is-muted) .icon-muted { display: none; }
.hero__sound-toggle:not(.is-muted) .icon-unmuted { display: block; }

.hero__scroll-cue {
	display: none;
}
.hero__scroll-cue span {
	display: block;
	width: 1px; height: 50px;
	background: rgba(255,255,255,0.5);
	animation: scrollcue 2s var(--ease) infinite;
}
@keyframes scrollcue {
	0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
	40% { transform: scaleY(1); transform-origin: top; opacity: 1; }
	60% { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
	100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ==========================================================================
   Section shell helpers
   ========================================================================== */

section { position: relative; }

/* ==========================================================================
   Intro / Om oss
   ========================================================================== */

.intro {
	background: var(--color-offwhite);
	padding: clamp(80px, 12vw, 160px) 0;
}
.intro__inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 var(--gutter);
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: clamp(40px, 6vw, 100px);
	align-items: center;
}
.intro__image { border-radius: 2px; position: relative; }
.intro__image img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }
.intro__image_box { background:#2c2c2c; position: absolute; z-index: 2; bottom:-1.5rem; right:-1.5rem; padding: 2rem; }
.intro__image_box_line { position: absolute; width: 100%; left: 1.5rem; bottom: 1.5rem; z-index: 1; height: 1px; border-top: 1px solid #b5923a; }
.intro__image_box_title { color: #b5923a; font-size: 2.25rem; line-height: 2.5rem; padding-bottom:5px; font-weight:300; }
.intro__image_box_subtitle { color:#ffffff; text-transform: uppercase; font-size: .75rem; letter-spacing: .2em; font-weight:300; }
.intro__text h2 { font-weight: 300; font-size: clamp(2.2rem, 4vw, 3.75rem); margin-bottom: 28px; }
.intro__text h2 em { color: #3A4A5C; }

.intro__body p { font-size: 1.05rem; color: #4a4a47; max-width: 52ch; }
.intro__stats {
	display: flex;
	justify-content: space-between;
	padding: 30px 12%;
	text-align: center;
}
.intro__stat_eyebrow {
	border-top: 1px solid #e3d7ba;
	color: #e3d7ba;
	position: relative;
	margin-top: 45px;
}
.intro__stat_eyebrow div {
	position: absolute;
	top: -13px;
	left: 0;
	width: 100%;
	text-align: center;
}
.intro__stat_eyebrow div span {
	display: inline-block;
	background: #f7f5f0;
	font-weight: 300;
	font-size: 0.72rem;
	padding: 0 20px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--color-brass);
}
.stat { display: flex; flex-direction: column; }
.stat__number { font-size: 2.4rem; color: var(--color-brass); line-height: 1; margin-bottom: 6px; }
.stat__label { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: #6a6a66; }

/* ==========================================================================
   Parallax / bg-image sections (quote-banner, big-banner, tickets-cta)
   ========================================================================== */

.parallax-section {
	position: relative;
	background-image: var(--bg-image);
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	color: var(--color-white);
}
@media (max-width: 900px) {
	.parallax-section { background-attachment: scroll; }
}

.quote-banner {
	min-height: 60vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 100px var(--gutter);
}
.quote-banner__overlay { position: absolute; inset: 0; background: rgba(20,20,18,0.55); }
.quote-banner__text { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; }
.quote-banner__text p { font-size: clamp(1.6rem, 3.4vw, 2.6rem); font-weight: 400; line-height: 1.35; margin-bottom: 24px; }
.quote-banner__text cite {
	font-style: normal;
	font-size: 0.72rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--color-brass-light);
}

/* ==========================================================================
   Artists
   ========================================================================== */

.artists { background: var(--color-offwhite); padding: clamp(80px, 12vw, 100px) 0; }
.artists.participating { padding: 0 0 30px 0; border-bottom: 1px solid #ccc; margin-bottom: 50px; }

.artists__header {
	max-width: var(--container);
	margin: 0 auto 60px;
	padding: 0 var(--gutter);
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 40px;
	flex-wrap: wrap;
}

.artists.participating .artists__header {
	padding: 0;
	margin: 0 auto 40px;
}

.artists__header h2 { font-weight:300; font-size: clamp(2.2rem, 4vw, 3.75rem); }
.artists__header h2 em { color: #3A4A5C; }
.artists__intro { max-width: 39ch; color: #5a5a56; font-size: 0.98rem; }
.artists__content {
	max-width: var(--container);
	margin: 0 auto 50px auto;
	padding: 0 var(--gutter);
}

.artists.participating .artists__header h2 {
	font-size: clamp(1.2rem, 2vw, 1.75rem);
}

.artists__grid {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 var(--gutter);
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: clamp(20px, 3vw, 36px);
}

.artists.participating .artists__grid {
	padding: 0;
}

.artists--archive__inner {
	max-width: var(--container);
	margin: 0 auto;
}
.artists--archive .artists__grid { padding-top: 0; }
.artist-card { display: block; }
.artist-card__image {
	aspect-ratio: 4/5;
	overflow: hidden;
	margin-bottom: 20px;
	border-radius: 20px;
}
.artist-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); border-radius: 20px; }
@media (max-width: 500px) {
	.artist-card__image,
	.artist-card__image img { border-radius: 10px; }
}
.artist-card:hover .artist-card__image img { transform: scale(1.06); }
.artist-card__name { font-size: 1.3rem; margin-bottom: 2px; }
.artist-card__role { font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--color-brass); }
.artists__cta { text-align: center; margin-top: 60px; }

.artists.participating .artist-card__name { font-size: 1rem; }
.artists.participating .artist-card__role { font-size: 0.68rem; }

/* ==========================================================================
   Experience
   ========================================================================== */

.experience { background: var(--color-sand); padding: clamp(80px, 12vw, 160px) 0; }
.experience__header {
	max-width: var(--container);
	margin: 0 auto 80px;
	padding: 0 var(--gutter);
	text-align: center;
}
.experience__header h2 { font-weight:300; font-size: clamp(2.2rem, 4vw, 3.75rem); }
.experience__header h2 em { color: #3A4A5C; }
.experience__block {
	max-width: var(--container);
	margin: 0 auto 100px;
	padding: 0 var(--gutter);
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: clamp(30px, 6vw, 80px);
	align-items: center;
}
.experience__block:last-child { margin-bottom: 0; }
.experience__block--reverse { grid-template-columns: 0.9fr 1.1fr; }
.experience__block--reverse .experience__text { order: -1; }
.experience__image { overflow: hidden; border-radius: 2px; }
.experience__image img { width: 100%; aspect-ratio: 7/4; object-fit: cover; }
.experience__text hr { border:0; border-top: 1px solid #b5923a; height:1px; width: 3rem; margin: 0; margin-bottom: 2rem; }
.experience__text h3 { font-size: clamp(1.6rem, 2.6vw, 2.2rem); margin-bottom: 18px; }
.experience__text p { color: #4a4a47; max-width: 42ch; }

@media (max-width: 900px) {
	.experience__block {
		grid-template-columns: 1fr;
	}
	.experience__image {
		order: 1;
	}
	.experience__text {
		order: 2;
	}
	.experience__block--reverse .experience__text { order: 2; }
}

@media (max-width: 900px) {
	.experience__block {
		margin-bottom: 50px;
	}
}

@media (max-width: 500px) {
	.experience__block {
		margin-bottom: 20px;
	}
}

/* ==========================================================================
   Big banner (gallery + quote)
   ========================================================================== */

.big-banner {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 120px var(--gutter) 80px;
}
.big-banner.dark-gray-bg {
	background-color: #2c2c2c;
	color: #ffffff;
}
.big-banner__overlay { position: absolute; inset: 0; background: rgba(10,10,8,0.5); }
.big-banner__heading {
	position: relative; z-index: 1;
	font-size: clamp(2.6rem, 6vw, 4.6rem);
	margin-bottom: 60px;
}
.big-banner__eyebrow.eyebrow { color: #ffffff; z-index: 10; position: relative; }
.big-banner__gallery {
	position: relative; z-index: 1;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	max-width: 1100px;
	width: 100%;
	margin-bottom: 60px;
}
.big-banner__gallery-item .image { aspect-ratio: 4/4; overflow: hidden; border-radius: 2px; }
.big-banner__gallery-item .image img { width: 100%; height: 100%; object-fit: cover; }
.big-banner__gallery-item .label { color: #fff; opacity: 0.5; letter-spacing: .2em; text-transform: uppercase; font-size: .75rem; padding-top: 15px; }
.big-banner__quote { position: relative; z-index: 1; max-width: 740px; }
.big-banner__quote p { font-size: clamp(1.1rem, 2vw, 1.875rem); font-style: italic; margin-bottom: 12px; font-weight: 300; }
.big-banner__quote cite { font-style: normal; font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--color-brass-light); }

/* ==========================================================================
   Program
   ========================================================================== */

.program { background: var(--color-offwhite); padding: clamp(80px, 12vw, 160px) 0; }
.program__header { max-width: var(--container); margin: 0 auto 60px; padding: 0 var(--gutter); text-align: center; }
.program__header h2 { font-weight:300; font-size: clamp(2.2rem, 4vw, 3.75rem); }
.program__header h2 em { color: #3A4A5C; }
.program__list { max-width: 980px; margin: 0 auto; padding: 0 var(--gutter); }
.program__row .program__extendedinfo {
	display: none;
	padding: 0 0 28px 28px;
	border-bottom: 1px solid rgba(0,0,0,0.1);
}
.program__row .program__extendedcontent {
	display: flex;
	gap: 40px;
	align-items: flex-start;
}
.program__row .program__extendedcontent .program__content {
	flex: 1;
	min-width: 0;
	overflow-wrap: break-word;
	word-break: break-word;
}
.program__row .program__extendedcontent .program__content figure {
	background: none;
	margin: 0 0 20px 0;
	padding: 0;
}
.program__row .program__extendedcontent .program__content figure img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	margin: 0;
}
.program__row .program__extendedcontent .program__content p {
	white-space: normal;
}
.program__row .program__extendedcontent .program__content .programcontent-title {
	font-size: 30px;
	font-weight: 700;
	padding-bottom: 20px;
	line-height: 1.1;
	margin: 0;
}
.program__row .program__extendedcontent .program__qi {
	flex: 0 0 45%;
	max-width: 45%;
}
.program__row .program__extendedcontent .program__qi .qi_info {
	background: #f2ead6;
	padding: 20px 25px;
}
.program__row .program__extendedcontent .program__qi .qi_info .qi_links {
	display: flex;
	gap: 10px;
}
.program__row .program__extendedcontent .program__qi .qi_info .qi_links .btn.btn-primary {
	flex: 1;
}
.program__row .program__extendedcontent .program__qi .qi_info .qi_links .btn {
	padding-left: 20px;
	padding-right: 20px;
}
.program__row .program__extendedcontent .program__qi .qi_info .qi_title {
	font-size: 22px;
	font-weight: 700;
	padding-bottom: 15px;
}
.program__row .program__extendedcontent .program__qi .qi_info .qi_stronginfo {
	font-weight: 500;
	font-size: 0.72rem;
	letter-spacing: 0.10em;
	text-transform: uppercase;
	font-weight: 500;
}
.program__row .program__extendedcontent .program__qi .qi_info .qi_information {
	font-size: 0.9rem;
	padding-bottom: 20px;
}
.program__row .program__extendedcontent .program__qi .program__image img {
	display: block;
	width: 100%;
	height: auto;
}
.program__row {
	border-bottom: 1px solid rgba(0,0,0,0.1);
	position: relative;
	z-index: 1;
}
.program__row:has(.box--listmoretickets:visible) {
	z-index: 100;
}
.program__row.is-open {
	z-index: 100;
}
.program__row .program__quickinfo {
	display: grid;
	grid-template-columns: 100px 1fr auto;
	align-items: center;
	gap: 30px;
	padding: 28px 0;
	position: relative;
	z-index: 1;
	cursor: pointer;
}
.program.program--archive h2 {
	font-size: 25px;
}
.program__row .program__quickinfo:hover {
	opacity: 0.8;
}
.program__row .readmore {
	text-align: center;
	font-size: 80%;
	padding-top: 10px;
	color: #336699;
}
.program__row .program__cta { padding-top: 10px; position: relative; }
.program__row .program__cta .btn.btn--listtickets { padding-left: 20px; padding-right: 20px; }
.program__row .program__cta .box--listmoretickets {
	display: none;
	width: 100%;
	position: absolute;
	z-index: 20;
	margin-top: -1px;
	background: #f7f5f0;
	border: 1px solid #b08d57;
	border-top: 0;
}
.program__row .program__cta .box--listmoretickets {
	overflow: hidden;
}
.program__row .program__cta .box--listmoretickets a.btn:hover {
	background: #f7f5f0 !iimportant;
	border: 0 !iimportant;
}
.program__row .program__cta .box--listmoretickets a.btn {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	border: 0;
	letter-spacing: 0; 
	padding: 7px 10px 7px 20px;
	display: block;
}
.program__row .program__cta .box--listmoretickets a.btn i {
	width: 18px;
	margin-right: 3px;
}
.program__row .program__cta .box--listmoretickets a.btn:hover {
	background: #f0e9d9;
}
.program__row:first-child .program__quickinfo { border-top: 1px solid rgba(0,0,0,0.1); }
.program__date { text-align: center; }
.program__date span { font-size: 1.8rem; line-height: 1; color: var(--color-brass); }
.program__details { display:block; }
.program__details h3 { font-size: 1.35rem; margin-bottom: 6px; }
.program__details p { margin: 0; color: #5a5a56; font-size: 0.9rem; }
.program__details p.program-title {
	font-size: 1rem;
	padding-bottom: 5px;
	color: #000;
	display: none;
	font-weight: 700;
}
.program__empty { text-align: center; color: #6a6a66; padding: 40px 0; }

@media (max-width: 800px) {
	.program__row .program__extendedcontent {
		display: block;
		gap: 0;
	}
	.program__row .program__extendedcontent .program__qi {
		max-width: 100%;
		margin: 0 auto;
	}
}

@media (max-width: 600px) {
	.program__date { display: none; }
	.program__row .program__quickinfo {
		display: grid;
		grid-template-columns: 1fr auto;
	}
	.program__details p.program-title { display: block; }
	.program__row .program__extendedinfo {
		padding-left: 0;
	}
}

@media (max-width: 480px) {
	.program__details h3 { font-size:1rem; }
}

/* ==========================================================================
   Tickets CTA
   ========================================================================== */

.tickets-cta {
	min-height: 70vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 100px var(--gutter);
}
.tickets-cta__overlay { position: absolute; inset: 0; background: rgba(15,16,15,0.62); }
.tickets-cta__content { position: relative; z-index: 1; max-width: 620px; }
.tickets-cta__content h2 { font-weight:300; font-size: clamp(2.2rem, 4vw, 3.75rem); margin-bottom: 24px; }
.tickets-cta__content p { margin-bottom: 36px; color: rgba(255,255,255,0.85); }

/* ==========================================================================
   Partners
   ========================================================================== */

.partners { background: var(--color-sand); padding: clamp(70px, 10vw, 120px) 0; }
.partners__inner { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); text-align: center; }
.partners__inner h2 { font-weight:300; font-size: clamp(1.5rem, 4vw, 2.25rem); margin-bottom: 50px; }
.partners__inner em { color: #3A4A5C; }
.partners__logos {
	--gap: clamp(30px, 5vw, 150px);
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: var(--gap);
	margin-bottom: 100px;
}

.partners__logos.last-one {
	margin-bottom: 0;
}

.partner-item {
	flex: 0 0 calc((100% - (4 * var(--gap))) / 5);
	max-width: calc((100% - (4 * var(--gap))) / 5);
	display: flex;
	justify-content: center;
	align-items: center;
	transition: opacity 0.3s ease;
}

@media (max-width: 1000px) {
	.partners__logos {
		margin-bottom: 80px;
	}
	.partner-item {
		flex: 0 0 calc((100% - (4 * var(--gap))) / 4);
		max-width: calc((100% - (4 * var(--gap))) / 4);
	}
}

@media (max-width: 700px) {
	.partners__logos {
		margin-bottom: 60px;
	}
	.partner-item {
		flex: 0 0 calc((100% - (4 * var(--gap))) / 3);
		max-width: calc((100% - (4 * var(--gap))) / 3);
	}
}

@media (max-width: 500px) {
	.partners__logos {
		margin-bottom: 40px;
	}
}

.partner-item img {
	display: block;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 75px;
}
.partner-item:hover img {
	opacity: 1;
	filter: grayscale(0);
}
.partner-item.partner_support img {
	max-height: 100px;
	max-width: 250px;
}
.partner-item__name {
	font-family: var(--font-serif);
	font-size: 1.1rem;
	color: var(--color-blue-grey);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer { background: var(--color-ink); color: rgba(255,255,255,0.85); }
.site-footer__main {
	max-width: var(--container);
	margin: 0 auto;
	padding: 80px var(--gutter) 50px;
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr;
	gap: 40px;
}
.site-footer__logo { height: 75px; width: auto; margin-bottom: 20px; }
.site-footer__col--brand p { max-width: 32ch; font-size: 0.92rem; color: rgba(255,255,255,0.65); }
.site-footer__col h4 { color: var(--color-white); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 20px; font-weight: 500; }
.site-footer__col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; font-size: 0.92rem; }
.site-footer__col a:hover { color: var(--color-brass-light); }
.site-footer__bottom {
	border-top: 1px solid rgba(255,255,255,0.12);
	padding: 24px var(--gutter);
	text-align: center;
	font-size: 0.8rem;
	color: rgba(255,255,255,0.5);
}

/* ==========================================================================
   Generic page hero / content (used on standard pages & artist archive)
   ========================================================================== */

.page-hero {
	padding: 200px var(--gutter) 80px;
	background: var(--color-granite);
	color: var(--color-white);
	text-align: center;
}
.page-hero__inner h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
.page-content__inner { max-width: 760px; margin: 0 auto; padding: 0 var(--gutter); }
.page-content__inner h1 { padding-bottom: 30px; }
.page-content__inner p { color: #4a4a47; font-size: 1.05rem; }

/* ==========================================================================
   Single artist
   ========================================================================== */

.single-artist {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 var(--gutter);
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: clamp(40px, 6vw, 90px);
	align-items: start;
}
.single-artist h3 { margin: 25px 0 15px 0; font-weight:600; font-size:28px; color:#222; }
.single-artist,
.single-artist p { font-size: 15px; }
.single-artist__media { overflow: hidden; position: sticky; top: 120px; }
.single-artist__media.desk { display: block; }
.single-artist__media.mob { display: none; }
.single-artist__media.mob { padding-top:20px; }
@media (max-width: 900px) {
	.single-artist__media.desk { display: none; }
	.single-artist__media.mob { display: block; }
}
.single-artist__name { padding: 15px 0 0 0; margin: 0; font-size: 1.1rem; font-weight:600; }
.single-artist__name_role { padding: 0 0 0 0; margin: 0; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.7rem;}
.single-artist__media img { width: 100%; height: auto; border-radius: 20px; aspect-ratio: 1/1; object-fit: cover; }
@media (max-width: 500px) {
	.single-artist__media img { border-radius: 10px; }
}
.back-link { display: inline-block; margin-bottom: 24px; font-size: 0.85rem; color: var(--color-brass); }
.single-artist__content h1 { font-size: clamp(2.4rem, 4.4vw, 3.6rem); margin-bottom: 8px; }
.single-artist__role { text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.8rem; color: var(--color-brass); margin-bottom: 32px; }
.single-artist__bio { margin-bottom: 32px; color: #4a4a47; font-size: 1.05rem; max-width: 56ch; }
.single-artist__bio p { margin-bottom: 1.2em; }

@media (max-width: 1100px) {
	.single-artist h3 { font-size:25px; }
	.back-link { margin-bottom: 18px; }
}

@media (max-width: 700px) {
	.single-artist h3 { font-size:23px; }
	.back-link { margin-bottom: 15px; }
}

@media (max-width: 500px) {
	.single-artist h3 { font-size:20px; }
	.back-link { margin-bottom: 10px; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1100px) {
	.artists__grid { grid-template-columns: repeat(2, 1fr); }
	.artists.participating .artists__grid { grid-template-columns: repeat(3, 1fr); }
	.big-banner__gallery { grid-template-columns: repeat(3, 1fr); max-width: 600px; }
}

@media (max-width: 900px) {
	.site-header__nav { display: none; }
	.site-header__burger { display: flex; }
	.intro__inner,
	.experience__block,
	.experience__block--reverse {
		grid-template-columns: 1fr;
		padding: 0 var(--gutter) 80px;
	}
	.experience__block,
	.experience__block--reverse {
		padding: 0 var(--gutter);
	}
	.single-artist {
		grid-template-columns: 1fr;
		padding: 0 var(--gutter);
	}
	.single-artist__media { position: static; }
	.site-footer__main { grid-template-columns: 1fr 1fr; }
	.artists.participating .artists__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 850px) {
	.artists.participating .artists__grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 700px) {
	.artists.participating .artists__grid { grid-template-columns: repeat(3, 1fr); }
}

.mobile-nav.is-open {
	transform: translateY(0);
}

@media (max-width: 900px) {
	.site-header__nav {
		display: none;
	}

	.site-header__burger {
		position: relative;
		z-index: 101;
		display: flex;
	}
}

@media (max-width: 600px) {
	.artists__grid { grid-template-columns: 1fr 1fr; }
	.big-banner__gallery { grid-template-columns: repeat(2, 1fr); }
	.site-footer__main { grid-template-columns: 1fr; }
	.hero__ctas { flex-direction: column; align-items: stretch; }
	.hero__ctas .btn { width: 100%; }
}

@media (max-width: 480px) {
	.artists.participating .artists__grid { grid-template-columns: repeat(2, 1fr); }
}


/* =========================================================
   ARTISTKORT – PROFFSIGARE LAYOUT
   ========================================================= */

.artists--archive .artists__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(38px, 4.5vw, 64px) clamp(22px, 3vw, 34px);
}

.artists--archive .artist-card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	color: inherit;
	text-decoration: none;
}

.artists--archive .artist-card__image {
	position: relative;
	overflow: hidden;
	width: 100%;
	aspect-ratio: 4 / 5;
	border-radius: 2px;
	box-shadow: 0 10px 30px rgba(24, 22, 18, 0.08);
	border-radius: 20px;
}

.artists--archive .artist-card__image::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(
			180deg,
			transparent 62%,
			rgba(15, 15, 14, 0.12) 100%
		);
	opacity: 0;
	pointer-events: none;
	transition: opacity 280ms ease;
}

.artists--archive .artist-card__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transform: scale(1);
	border-radius: 20px;
	transition:
		transform 500ms cubic-bezier(0.22, 1, 0.36, 1),
		filter 300ms ease;
}

@media (max-width: 500px) {
	.artists--archive .artist-card__image,
	.artists--archive .artist-card__image img {
		border-radius: 10px;
	}
}

.artists--archive .artist-card__name {
	margin: 22px 0 0;
	color: #1b1a17;
	font-size: clamp(21px, 1.55vw, 26px);
	font-weight: 500;
	line-height: 1.16;
	letter-spacing: -0.025em;
	text-wrap: balance;
}

.artists--archive .artist-card__role {
	min-height: 1.5em;
	margin: 8px 0 0;
	color: #9a7440;
	font-size: 11px;
	font-weight: 700;
	line-height: 1.45;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.artists--archive .artist-card:hover::after,
.artists--archive .artist-card:focus-visible::after {
	color: #b88948;
	transform: translateX(3px);
}

.artists--archive .artist-card:hover .artist-card__image img,
.artists--archive .artist-card:focus-visible .artist-card__image img {
	transform: scale(1.035);
	filter: saturate(1.04);
}

.artists--archive .artist-card:hover .artist-card__image::after,
.artists--archive .artist-card:focus-visible .artist-card__image::after {
	opacity: 1;
}

.artists--archive .artist-card:hover::after,
.artists--archive .artist-card:focus-visible::after {
	transform: scaleX(1);
}

.artists--archive .artist-card:focus-visible {
	outline: 2px solid #c49a59;
	outline-offset: 8px;
}

@media (max-width: 1000px) {
	.artists--archive .artists__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 720px) {
	.artists--archive .artists__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 38px 18px;
	}

	.artists--archive .artist-card__name {
		margin-top: 0;
		font-size: 21px;
	}
}

@media (max-width: 460px) {
	.artists--archive .artists__grid {
		grid-template-columns: 1fr;
	}

	.artists--archive .artist-card__name {
		min-height: 0;
		font-size: 18px;
	}
}


/* =========================================================
   SIDINDELNING
   ========================================================= */

.funas-pagination {
	display: flex;
	justify-content: center;
	margin-top: clamp(55px, 7vw, 90px);
}

.funas-pagination__list {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.funas-pagination__item {
	margin: 0;
}

.funas-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	padding: 0 15px;
	border: 1px solid rgba(31, 30, 27, 0.18);
	background: transparent;
	color: #211f1b;
	font-size: 13px;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	transition:
		background-color 160ms ease,
		border-color 160ms ease,
		color 160ms ease;
}

.funas-pagination a.page-numbers:hover,
.funas-pagination a.page-numbers:focus {
	border-color: #c49a59;
	background: #c49a59;
	color: #ffffff;
	outline: none;
}

.funas-pagination .page-numbers.current {
	border-color: #211f1b;
	background: #211f1b;
	color: #ffffff;
}

.funas-pagination .prev,
.funas-pagination .next {
	padding-inline: 19px;
}


/* =========================================================
   RESPONSIVT
   ========================================================= */

@media (max-width: 1000px) {
	.artists--archive .artists__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 720px) {
	.artists--archive__inner {
		width: min(100%, 1160px);
	}

	.artists--archive .artists__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 34px 16px;
	}

	.funas-pagination .page-numbers {
		min-width: 40px;
		height: 40px;
		padding-inline: 12px;
	}
}

@media (max-width: 440px) {
}

/* =========================================================
   ARTISTFILTRERING
   ========================================================= */

.artist-filter {
	margin: 0 var(--gutter) clamp(52px, 7vw, 82px) var(--gutter);
	padding: clamp(24px, 3vw, 38px);
	border: 1px solid rgba(30, 29, 25, 0.12);
	background: #f1eee8;
	box-shadow: 0 18px 55px rgba(30, 27, 21, 0.055);
}

.artist-filter__header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 30px;
	margin-bottom: 26px;
	padding-bottom: 22px;
	border-bottom: 1px solid rgba(30, 29, 25, 0.11);
}

.artist-filter__eyebrow {
	margin: 0 0 7px;
	color: #a77b3c;
	font-size: 10px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: 0.17em;
	text-transform: uppercase;
}

.artist-filter__title {
	margin: 0;
	color: #1d1c19;
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: clamp(28px, 3vw, 38px);
	font-weight: 500;
	line-height: 1;
	letter-spacing: -0.025em;
}

.artist-filter__count {
	flex-shrink: 0;
	margin: 0 0 3px;
	color: #756f65;
	font-size: 13px;
}

.artist-filter__form {
	display: grid;
	grid-template-columns:
		minmax(260px, 1.4fr)
		minmax(220px, 0.9fr)
		auto;
	align-items: end;
	gap: 16px;
}

.artist-filter__field {
	min-width: 0;
}

.artist-filter__field label {
	display: block;
	margin-bottom: 8px;
	color: #45413a;
	font-size: 11px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.artist-filter__control,
.artist-filter__select-wrap {
	position: relative;
	min-width: 0;
}

.artist-filter__control input {
	display: block;
	width: 100%;
	height: 54px;
	margin: 0;
	padding: 0 17px 0 49px;
	border: 1px solid rgba(30, 29, 25, 0.18);
	border-radius: 0;
	background: #ffffff;
	color: #1d1c19;
	font-family: inherit;
	font-size: 14px;
	outline: 0;
	box-shadow: none;
	transition:
		border-color 180ms ease,
		box-shadow 180ms ease;
}

.artist-filter__select-wrap {
	height: 54px;
	padding-right: 14px;
	border: 1px solid rgba(30, 29, 25, 0.18);
	background: #ffffff;
	transition:
		border-color 180ms ease,
		box-shadow 180ms ease;
}

.artist-filter__select-wrap select {
	display: block;
	width: 100%;
	height: 52px;
	margin: 0;
	padding: 0 10px 0 17px;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: #1d1c19;
	font-family: inherit;
	font-size: 14px;
	outline: 0;
	box-shadow: none;
	cursor: pointer;

	-webkit-appearance: auto;
	-moz-appearance: auto;
	appearance: auto;
}

.artist-filter__control input:hover,
.artist-filter__select-wrap:hover {
	border-color: rgba(30, 29, 25, 0.34);
}

.artist-filter__control input:focus,
.artist-filter__select-wrap:focus-within {
	border-color: #b88a48;
	box-shadow: 0 0 0 3px rgba(184, 138, 72, 0.12);
}

.artist-filter__control input::placeholder {
	color: #999187;
}

.artist-filter__icon {
	position: absolute;
	top: 50%;
	left: 17px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	color: #7c756b;
	pointer-events: none;
	transform: translateY(-50%);
}

.artist-filter__icon svg {
	width: 19px;
	height: 19px;
}

.artist-filter__actions {
	display: flex;
	align-items: center;
	gap: 13px;
	min-height: 54px;
}

.artist-filter__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	height: 54px;
	margin: 0;
	padding: 0 23px;
	border: 1px solid #1b1b19;
	background: #1b1b19;
	color: #ffffff;
	font-family: inherit;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.075em;
	text-transform: uppercase;
	white-space: nowrap;
	cursor: pointer;
	transition:
		background-color 180ms ease,
		border-color 180ms ease,
		transform 180ms ease;
}

.artist-filter__submit span {
	font-size: 17px;
	font-weight: 400;
	transition: transform 180ms ease;
}

.artist-filter__submit:hover,
.artist-filter__submit:focus {
	border-color: #a77b3c;
	background: #a77b3c;
	color: #ffffff;
	outline: 0;
}

.artist-filter__submit:hover span {
	transform: translateX(3px);
}

/* Inga resultat. */

.artists--archive__empty {
	padding: clamp(50px, 8vw, 90px) 25px;
	border: 1px solid rgba(30, 29, 25, 0.12);
	text-align: center;
}

.artists--archive__empty h2 {
	margin: 0;
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: clamp(30px, 4vw, 46px);
	font-weight: 500;
}

.artists--archive__empty p {
	margin: 13px 0 24px;
	color: #756f65;
}

.artists--archive__empty a {
	display: inline-flex;
	padding-bottom: 4px;
	border-bottom: 1px solid #a77b3c;
	color: #1d1c19;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-decoration: none;
	text-transform: uppercase;
}


/* Responsivt. */

@media (max-width: 960px) {
	.artist-filter__form {
		grid-template-columns: 1fr 1fr;
	}

	.artist-filter__actions {
		grid-column: 1 / -1;
	}
}

@media (max-width: 650px) {
	.artist-filter {
		padding: 22px 18px;
	}

	.artist-filter__header {
		align-items: flex-start;
		flex-direction: column;
		gap: 10px;
	}

	.artist-filter__form {
		grid-template-columns: 1fr;
	}

	.artist-filter__actions {
		grid-column: auto;
		align-items: stretch;
		flex-direction: column;
	}

	.artist-filter__submit {
		width: 100%;
	}
}

.artist-filter {
	display: grid;
	grid-template-columns: minmax(260px, 1fr) minmax(220px, 0.55fr);
	align-items: end;
	gap: 16px;
	margin-bottom: clamp(45px, 6vw, 75px);
	padding: 24px;
	border: 1px solid rgba(30, 29, 25, 0.13);
	background: #f1eee8;
}

.artist-filter label {
	display: block;
	margin-bottom: 8px;
	color: #5f594f;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.artist-filter input,
.artist-filter select {
	display: block;
	width: 100%;
	height: 54px;
	margin: 0;
	padding: 0 16px;
	border: 1px solid rgba(30, 29, 25, 0.2);
	border-radius: 0;
	background: #fff;
	color: #1d1c19;
	font: inherit;
	outline: none;
}

.artist-filter input:focus,
.artist-filter select:focus {
	border-color: #b88a48;
	box-shadow: 0 0 0 3px rgba(184, 138, 72, 0.12);
}

.artist-filter__reset {
	padding: 0;
	background: none;
	border: 0;
}

.artist-filter__polite {
	display: flex;
}

.artist-filter__polite .artist-filter__result {
	flex: 1;
}

.artist-filter__result {
	grid-column: 1 / -1;
	margin: 0;
	color: #716b61;
	font-size: 13px;
}

.artist-card[hidden] {
	display: none !important;
}

.artists__grid.has-no-results::after {
	content: "Inga artister matchar din sökning.";
	grid-column: 1 / -1;
	padding: 60px 20px;
	border: 1px solid rgba(30, 29, 25, 0.12);
	color: #716b61;
	text-align: center;
}

@media (max-width: 760px) {
	.artist-filter {
		grid-template-columns: 1fr;
	}

	.artist-filter__result {
		grid-column: auto;
	}
}


@media (max-width: 720px) {
	.page-hero {
		padding: 135px 20px 55px;
	}

	.page-hero__inner h1 {
		font-size: 42px;
		line-height: 1.05;
	}

	.page-hero .eyebrow {
		margin-bottom: 14px;
		font-size: 10px;
		letter-spacing: 0.28em;
	}

	.artists {
		padding-top: 45px;
	}
	.artists.participating { padding: 0 0 20px 0; margin-bottom: 30px; }

	.artists--archive .artists__content {
		margin-bottom: 35px;
	}

	.artists--archive .artist-filter {
		gap: 12px;
		padding: 16px;
	}

	.artist-filter label {
		margin-bottom: 6px;
		font-size: 9px;
	}

	.artist-filter input,
	.artist-filter select {
		height: 46px;
		padding: 0 13px;
		font-size: 15px;
	}

	.artist-filter__polite {
		margin-top: 2px;
	}

	.artist-filter__result {
		font-size: 12px;
	}
}

/* =========================================================
   GENERISK SINGLE-SIDA / KONSERT
   ========================================================= */

.single-page__inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 var(--gutter);
}

.single-page__article {
	display: grid;
	grid-template-columns: minmax(0.95fr) minmax(1.05fr);
	align-items: start;
	gap: clamp(45px, 6vw, 90px);
}

.single-page__media {
	overflow: hidden;
	margin-bottom: 20px;
}

.single-page__media img {
	max-width: 100%;
	max-height: 400px;
	width: auto;
	height: auto;
}

.single-page__media.rounded,
.single-page__media.rounded img {
	border-radius: 20px;
}

@media (max-width: 900px) {
	.single-page__media.rounded,
	.single-page__media.rounded img {
		border-radius: 10px;
	}
}

.single-page__media img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 5;
	object-fit: cover;
}

.single-page__content {
	min-width: 0;
	max-width: 680px;
	padding-top: 20px;
}

.single-page__content .eyebrow {
	margin-bottom: 18px;
}

.single-page__content h1 {
	margin: 0 0 32px;
	color: var(--color-granite);
	font-size: clamp(30px, 5vw, 50px);
	font-weight: 400;
	line-height: 1.03;
	letter-spacing: -0.035em;
}

.single-page__text {
	color: #4a4a47;
	font-size: 1rem;
	line-height: 1.75;
}

.single-page__text p {
	margin: 0 0 1.35em;
}

.single-page__text strong {
	color: var(--color-granite);
	font-weight: 500;
}

.single-page__text em {
	color: #6c665d;
}

.single-page__text h2,
.single-page__text h3,
.single-page__text h4 {
	margin: 42px 0 16px;
	color: var(--color-granite);
	font-family: var(--font-serif);
	font-weight: 400;
}

.single-page__text h2 {
	font-size: 2rem;
}

.single-page__text h3 {
	font-size: 1.6rem;
}

.single-page__text ul,
.single-page__text ol {
	margin: 0 0 1.5em;
	padding-left: 1.4em;
}

.single-page__text img {
	max-width: 100%;
	height: auto;
}

.single-page__article--no-image {
	display: block;
}

.single-page__article--no-image .single-page__content {
	max-width: 760px;
	margin: 0 auto;
	padding-top: 0;
}

@media (max-width: 900px) {

	.single-page__article {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.single-page__media {
		position: static;
	}

	.single-page__media img {
		aspect-ratio: 16 / 10;
	}

	.single-page__content {
		max-width: none;
		padding-top: 0;
	}

	.single-page__content h1 {
		margin-bottom: 25px;
		font-size: clamp(38px, 10vw, 48px);
	}
}

@media (max-width: 600px) {

	.single-page__inner {
		padding: 0 20px;
	}

	.single-page__article {
		gap: 26px;
	}

	.single-page__media img {
		aspect-ratio: 4 / 3;
	}

	.single-page__content h1 {
		font-size: 38px;
		line-height: 1.08;
	}

	.single-page__text {
		font-size: 15px;
		line-height: 1.7;
	}
}

.program--archive__inner,
.program__content {
	max-width: 980px;
	margin: 0 auto;
}

.program__content {
	margin-bottom: 50px;
}

.program--archive .program__list {
	padding: 0;
}

.concert-filter {
	display: grid;
	grid-template-columns: 1fr 280px;
	gap: 20px;
	align-items: end;
	margin-bottom: 50px;
}

.concert-filter label {
	display: block;
	margin-bottom: 8px;
	font-size: 0.72rem;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.concert-filter input,
.concert-filter select {
	width: 100%;
	height: 50px;
	padding: 0 15px;
	font: inherit;
	color: var(--color-granite);
	background: transparent;
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-radius: 0;
}

.concert-filter__polite {
	grid-column: 1 / -1;
	display: flex;
	justify-content: space-between;
	align-items: center;
	min-height: 24px;
}

.concert-filter__result {
	margin: 0;
	font-size: 0.85rem;
	color: #6a6a66;
}

.concert-filter__reset {
	padding: 0;
	font: inherit;
	font-size: 0.8rem;
	color: var(--color-brass);
	background: none;
	border: 0;
	cursor: pointer;
}

.program--archive__empty {
	padding: 60px 0;
	text-align: center;
}

.program--archive__empty h2 {
	margin-bottom: 15px;
	font-family: var(--font-serif);
	font-size: 2rem;
}

@media (max-width: 700px) {
	.concert-filter {
		grid-template-columns: 1fr;
		margin-bottom: 30px;
	}

	.concert-filter__polite {
		grid-column: auto;
	}
}

.single-page__body {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(290px, 380px);
	align-items: start;
	gap: clamp(40px, 6vw, 90px);
}

.single-page__sidebar {
	position: sticky;
	top: 100px;
}

.single-concert__performers {
	margin-top: 15px;
	font-size: 1.1rem;
	font-weight: 600;
}

.concert-info {
	padding: clamp(25px, 3vw, 38px);
	background: #f2ede3;
	border-radius: 18px;
}

.concert-info h2 {
	margin: 6px 0 25px;
	font-size: clamp(20px, 3vw, 25px);
	line-height: 1.1;
}

.concert-info__details {
	display: grid;
	gap: 0;
	margin: 0 0 25px;
}

.concert-info__detail {
	display: grid;
	grid-template-columns: 85px minmax(0, 1fr);
	gap: 15px;
	padding: 13px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.concert-info__detail:first-child {
	border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.concert-info__detail dt {
	font-weight: 600;
}

.concert-info__detail dd {
	margin: 0;
	text-align: right;
	overflow-wrap: anywhere;
}

.concert-info__tickets {
	display: grid;
	gap: 10px;
}

.concert-info__tickets a.btn {
	border: 1px solid #aaa;
}

.btn--ticket {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	width: 100%;
	padding: 15px 18px;
	text-decoration: none;
}

.concert-info__sold-out {
	padding: 15px 18px;
	text-align: center;
	font-weight: 700;
	border: 1px solid currentColor;
	border-radius: 100px;
}

.concert-info__no-tickets {
	margin: 0;
}

@media all and (max-width: 850px) {
	.single-page__body {
		grid-template-columns: 1fr;
	}

	.single-page__sidebar {
		position: static;
	}
}