/* LINDERMEIER & die Fuckboys — pinned redesign, matched to the client's own mockup
   (Design/Moodboards/WhatsApp Image 2026-08-13 at 13.49.31 (1).jpeg).
   Direction contract lives in src/layouts/Layout.astro */

:root {
	/* dark sections */
	--black: #0a0a0c;
	--black-raised: #17171b;

	/* light sections */
	--paper: #f2efee;
	--paper-raised: #e7e3e1;

	/* the one accent — used everywhere the brief showed pink, nowhere else */
	--pink: #e8177e;
	--pink-dim: #b81264;

	--white: #ffffff;
	--ink: #14141a;
	--ink-muted: #6c6c73;
	--on-dark: #ffffff;
	--on-dark-muted: #b6b6bc;
	--hairline-dark: rgba(255, 255, 255, 0.14);
	--hairline-light: rgba(20, 20, 26, 0.12);

	--font-display: 'Bebas Neue', 'Archivo', system-ui, sans-serif;
	--font-grotesk: 'Archivo', system-ui, sans-serif;
	--font-script: 'Caveat', cursive;

	--space-1: 0.5rem;
	--space-2: 1rem;
	--space-3: 1.5rem;
	--space-4: 2.5rem;
	--space-5: 4rem;
	--space-6: 6.5rem;
	--space-7: 10rem;

	--container: 82rem;
	--tile-pair-min-h: 32rem;

	color-scheme: dark;
}

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

html {
	background: var(--black);
	scroll-behavior: smooth;
}

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

body {
	margin: 0;
	background: var(--black);
	color: var(--on-dark);
	font-family: var(--font-grotesk);
	font-size: 16px;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.001ms !important;
		scroll-behavior: auto !important;
	}
}

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

a {
	color: inherit;
}

.container {
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: var(--space-3);
}

@media (min-width: 720px) {
	.container {
		padding-inline: var(--space-4);
	}
}

/* Tile — the shared box-model primitive for any section-hosted cell, whether
   it carries text (Single, Live, Band, Press Kit content) or is media-only
   (Band/PressKit photo figures, VideoBanner image cells, where the padding
   just sits inert behind an absolutely-positioned image). A plain
   top-anchored flex column: content sets its own height and the box grows
   to fit it, so `--space-5` is a hard
   minimum on every edge, including the bottom, no matter how much content is
   inside. Centering content vertically to "balance" against a stretched
   photo cell was tried here before and is deliberately not the default —
   centering only pads correctly for as long as the tile's content stays the
   taller of the two paired cells; the moment that assumption breaks (shorter
   content, or a taller photo), the padding stops being a guarantee and
   becomes a coincidence. One shared rule, reused as-is, replaces three
   near-identical per-component copies that had drifted into a fragile
   version of the same idea. */
.tile {
	display: flex;
	flex-direction: column;
	padding: var(--space-5);
	margin: 0;
	/* Every paired tile is also a CSS Grid item of `.split-section`. A `1fr`
	   track's implicit minimum is "auto", which grows the track to fit
	   whatever the item's content demands — so an unbreakable child deep
	   inside (a nowrap label, an unshrinkable flex item) can force the tile,
	   and the whole row, wider than its column instead of wrapping/eliding
	   inside it. `min-width: 0` overrides that so the tile always respects
	   its track width and inner overflow/ellipsis/flex-shrink rules can
	   actually take effect. Surfaced on mobile by SingleLiveSection's
	   `.dates__city` once real (longer) location strings replaced the
	   original short placeholders. */
	min-width: 0;
}

/* A button is always sized to its own label (see .btn); flex's default
   align-items: stretch on the cross axis would otherwise silently expand it
   to the tile's full width. */
.tile .btn {
	align-self: flex-start;
}

/* Split-section layout — the shared 50/50 grid used by every section that
   pairs a photo tile with a content tile. Single column until 900px. */
.split-section {
	display: grid;
	grid-template-columns: 1fr;
}

@media (min-width: 900px) {
	.split-section {
		grid-template-columns: 1fr 1fr;
	}
}

/* Media tile — any tile carrying a background image. The image is required
   to be a direct child (see .tile--media > img below). Absolutely
   positioned children with inset:0 are contained by the padding box's outer
   edge, so the image bleeds flush to the tile's bounds regardless of the
   tile's own padding — this is what lets a media tile and a content tile
   share the same .tile padding rule. min-height is a mobile-safe floor so a
   cover image never collapses toward zero height while tiles are stacked. */
.tile--media {
	position: relative;
	isolation: isolate;
	min-height: 20rem;
}

.tile--media > img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -2;
}

/* Paired sizing — the single shared min-height for the three split-pair
   sections (Band, PressKit, SingleLive), gated to the breakpoint where
   cells actually sit side by side. Below that, tiles stay stacked and
   content-sized, exactly like an ungated tile would.
   MUST stay declared after .tile--media: SingleLiveSection's "single" tile
   carries both classes, and .tile--media's unconditional min-height and
   this rule's gated min-height have equal specificity — whichever is
   declared later in the file wins at >=900px, and it must be this one.
   --tile-pair-min-h is defined in the :root token block at the top of
   this file. */
@media (min-width: 900px) {
	.tile--paired {
		min-height: var(--tile-pair-min-h);
	}
}

/* Tile tone — dark-ground vs bright-ground. Sets background/foreground plus
   custom properties consumed by .label, .status-pending, .btn--grey, and
   hairline borders, now that every tile in every component carries one of
   these two classes. --tile-hover-pct preserves the two different
   .btn--grey hover fill intensities per ground (12% on dark, 8% on
   bright). */
.tile--dark {
	background: var(--black);
	color: var(--on-dark);
	--tile-fg-muted: var(--on-dark-muted);
	--tile-label: var(--pink);
	--tile-hairline: var(--hairline-dark);
	--tile-hover-pct: 12%;
}

.tile--bright {
	background: var(--paper);
	color: var(--ink);
	--tile-fg-muted: var(--ink-muted);
	--tile-label: var(--pink-dim);
	--tile-hairline: var(--hairline-light);
	--tile-hover-pct: 8%;
}

.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}

/* Wordmark ---------------------------------------------------------- */

.wordmark {
	line-height: 0.86;
}

.wordmark strong {
	display: block;
	font-family: var(--font-display);
	font-weight: 400;
	letter-spacing: 0.01em;
	text-transform: uppercase;
	color: var(--white);
}

.wordmark em {
	display: block;
	font-family: var(--font-script);
	font-style: normal;
	font-weight: 700;
	color: var(--pink);
}

.genre-line {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6em;
	align-items: center;
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--on-dark);
}

.genre-line span + span::before {
	content: '•';
	margin-right: 0.6em;
	color: var(--pink);
}

/* Buttons ------------------------------------------------------------- */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5em;
	padding: 0.9em 1.7em;
	border-radius: 999px;
	border: 1.5px solid transparent;
	font: inherit;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
	white-space: nowrap;
	transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, opacity 0.25s ease;
}

/* Icons read the button's own font-size by default; bumped 20% relative to
   it here so the icon grows without resizing the button's text label. */
.btn .icon {
	font-size: 1.2em;
}

.btn--pink {
	border-color: var(--pink);
	color: var(--pink);
}

.btn--pink:hover {
	background: var(--pink);
	color: var(--white);
	transform: translateY(-1px);
}

/* The only two button styles in this system: pink (.btn--pink, always the
   Musik-Hören look, full strength everywhere) and grey (.btn--grey, the one
   secondary style, shade read from the ancestor .tile--dark/.tile--bright
   via --tile-fg-muted, same as .status-pending). */

.btn--grey {
	border-color: color-mix(in srgb, var(--tile-fg-muted, var(--ink-muted)) 55%, transparent);
	color: var(--tile-fg-muted, var(--ink-muted));
}

/* Intentional two-tier hover, not an inconsistency to "fix" later: pink is the
   one committed action and fills solid + inverts text on hover; grey stays a
   quieter wash (fill tint only, border/text unchanged) on both grounds so it
   never competes with pink for hover weight. The lift (translateY, shared
   from .btn) and transition timing stay identical across every variant —
   only the fill treatment is deliberately different. Confirmed with the
   client 2026-08-16; do not unify the fill behavior without asking again. */
.btn--grey:hover {
	background: color-mix(in srgb, var(--tile-fg-muted, var(--ink-muted)) var(--tile-hover-pct, 8%), transparent);
	transform: translateY(-1px);
}

/* Pending changes the cursor only — it deliberately does not touch hover
   fill/transform. A pending button hovers exactly like its live counterpart
   (same fill-and-invert for pink, same wash for grey); cursor: not-allowed is
   the only tell that it has no real destination yet. Confirmed with the
   client 2026-08-16: consistency wins over disabling hover feedback on a
   still-dead link — wiring up the real destination is a content task, not a
   design one, and isn't a reason to make the button look different meanwhile. */
.btn--pending {
	cursor: not-allowed;
}

.status-pending {
	font-size: 0.62rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--tile-fg-muted, var(--ink-muted));
	white-space: nowrap;
	cursor: not-allowed;
}

/* Section labels — pinned to this exact comp; see craft-floor.md note in Layout.astro */

.label {
	display: block;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--tile-label, var(--pink));
	margin-bottom: var(--space-2);
}

.panel-heading {
	margin: 0 0 var(--space-2);
	font-family: var(--font-display);
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.01em;
	font-size: clamp(1.7rem, 3.6vw, 2.5rem);
	line-height: 0.98;
}

.panel-heading .pink {
	color: var(--pink);
}

.icon {
	width: 1em;
	height: 1em;
	stroke: currentColor;
	fill: none;
	stroke-width: 1.75;
	stroke-linecap: round;
	stroke-linejoin: round;
	flex-shrink: 0;
}

/* Site header (subpage nav strip) */
.site-header {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	min-height: 8rem;
	display: flex;
	align-items: center;
}

.site-header__photo {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 30%;
	z-index: -2;
}

.site-header__scrim {
	position: absolute;
	inset: 0;
	z-index: -1;
	background: color-mix(in srgb, var(--black) 93%, transparent);
}

.site-header__nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-2);
	padding-block: var(--space-3);
	flex-wrap: wrap;
	width: 100%;
}

.site-header__brand {
	display: flex;
	align-items: center;
	text-decoration: none;
}

.site-header__logo {
	display: block;
	width: auto;
	height: 40px;
}

.site-header__right {
	display: flex;
	align-items: center;
	gap: var(--space-4);
	flex-wrap: wrap;
}

.site-header__links {
	list-style: none;
	display: flex;
	gap: var(--space-3);
	margin: 0;
	padding: 0;
}

.site-header__links a {
	text-decoration: none;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--on-dark);
	transition: color 0.2s ease;
}

.site-header__links a:hover,
.site-header__links a.is-active {
	color: var(--pink);
}

.site-header__socials {
	list-style: none;
	display: flex;
	gap: var(--space-2);
	margin: 0;
	padding: 0;
}

.site-header__socials a {
	display: grid;
	place-items: center;
	color: var(--on-dark-muted);
	font-size: 1.32rem;
	transition: color 0.2s ease;
}

.site-header__socials a:hover {
	color: var(--pink);
}

/* Booking footer */
.booking-footer {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	padding-block: clamp(3rem, 8vw, 5.5rem) var(--space-4);
}

.booking-footer__photo {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 40%;
	z-index: -2;
}

.booking-footer__scrim {
	position: absolute;
	inset: 0;
	z-index: -1;
	background: radial-gradient(
		ellipse at center,
		color-mix(in srgb, var(--black) 74%, transparent) 0%,
		color-mix(in srgb, var(--black) 95%, transparent) 78%
	);
}

.booking-footer__inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.booking-footer__heading {
	font-size: clamp(2.2rem, 6vw, 3.6rem);
}

.booking-footer__cta {
	margin-top: var(--space-2);
}

.booking-footer__socials {
	list-style: none;
	display: flex;
	gap: var(--space-2);
	margin: var(--space-4) 0 0;
	padding: 0;
}

.booking-footer__socials a {
	display: grid;
	place-items: center;
	color: var(--on-dark-muted);
	font-size: 1.44rem;
	transition: color 0.2s ease;
}

.booking-footer__socials a:hover {
	color: var(--pink);
}

.booking-footer__meta {
	margin: var(--space-5) 0 0;
	padding-top: var(--space-3);
	border-top: 1px solid var(--hairline-dark);
	max-width: 44rem;
	font-size: 0.72rem;
	letter-spacing: 0.06em;
	color: var(--on-dark-muted);
}

.booking-footer__credits,
.booking-footer__links {
	margin: 0;
}

.booking-footer__links {
	margin-top: 0.5em;
}

.booking-footer__meta a,
.booking-footer__cookie-link {
	font: inherit;
	letter-spacing: inherit;
	color: inherit;
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.booking-footer__meta a:hover,
.booking-footer__cookie-link:hover {
	color: var(--pink);
}

/* Hero */
.hero {
	position: relative;
	isolation: isolate;
	min-height: 100svh;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	overflow: hidden;
}

.hero > img {
	object-position: 50% 22%;
}

.hero__scrim {
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		linear-gradient(to top, color-mix(in srgb, var(--black) 88%, transparent) 8%, transparent 45%),
		linear-gradient(to bottom, color-mix(in srgb, var(--black) 65%, transparent) 0%, transparent 24%);
}

.hero__nav {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-2);
	padding-top: var(--space-3);
	flex-wrap: wrap;
}

.hero__brand {
	display: flex;
	align-items: center;
	text-decoration: none;
}

.hero__brand-logo {
	/* matches the previous two-line text lockup's rendered height */
	display: block;
	width: auto;
	height: 46px;
}

.hero__nav-right {
	display: flex;
	align-items: center;
	gap: var(--space-4);
	flex-wrap: wrap;
}

.hero__links {
	list-style: none;
	display: flex;
	gap: var(--space-3);
	margin: 0;
	padding: 0;
}

.hero__links a {
	text-decoration: none;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--white);
	transition: color 0.2s ease;
}

.hero__links a:hover,
.hero__links a.is-active {
	color: var(--pink);
}

.hero__socials {
	list-style: none;
	display: flex;
	gap: var(--space-2);
	margin: 0;
	padding: 0;
}

.hero__socials a {
	display: grid;
	place-items: center;
	color: var(--on-dark-muted);
	font-size: 1.32rem;
	transition: color 0.2s ease;
}

.hero__socials a:hover {
	color: var(--pink);
}

.hero__content {
	padding-block: var(--space-6) var(--space-5);
	text-align: center;
}

.hero__wordmark {
	margin: 0 0 var(--space-2);
}

.hero__wordmark-logo {
	/* matches the previous two-line text wordmark's rendered height:
	   clamp(2.86rem, 9.35vw, 6.05rem) strong + clamp(2.1rem, 7vw, 4.4rem) em,
	   both at line-height 0.86, minus the em's -0.08em overlap;
	   +20% on top of that baseline */
	display: block;
	margin: 0 auto;
	width: auto;
	height: clamp(4.96rem, 16.14vw, 10.37rem);
}

.hero__genre {
	margin: 0 0 var(--space-3);
	justify-content: center;
}

.hero__actions {
	display: flex;
	justify-content: center;
	gap: var(--space-2);
	flex-wrap: wrap;
}

.hero__scroll {
	position: absolute;
	bottom: var(--space-3);
	right: var(--space-3);
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1px solid color-mix(in srgb, var(--white) 45%, transparent);
	display: none;
	align-items: center;
	justify-content: center;
	color: var(--white);
	font-size: 1.32rem;
	transition: background 0.25s ease, transform 0.25s ease;
}

.hero__scroll:hover {
	background: color-mix(in srgb, var(--white) 12%, transparent);
	transform: translateY(2px);
}

@media (min-width: 640px) {
	.hero__scroll {
		display: flex;
	}
}

@media (max-width: 639px) {
	.hero__brand {
		display: none;
	}

	.hero__nav {
		justify-content: center;
	}
}

/* Single + Live */
.single-live__scrim {
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(
		100deg,
		color-mix(in srgb, var(--black) 92%, transparent) 0%,
		color-mix(in srgb, var(--black) 55%, transparent) 55%,
		color-mix(in srgb, var(--black) 20%, transparent) 100%
	);
}

.single-live__tag {
	margin: 0 0 var(--space-3);
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--on-dark-muted);
}

.single-live__streams {
	list-style: none;
	margin: 0 0 var(--space-4);
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: var(--space-1);
}

.single-live__streams a {
	display: inline-flex;
	align-items: center;
	gap: 0.6em;
	text-decoration: none;
	font-size: 0.92rem;
	font-weight: 600;
	color: var(--on-dark-muted);
}

.single-live__streams .icon {
	font-size: 1.38rem;
}

.dates {
	list-style: none;
	margin: 0 0 var(--space-4);
	padding: 0;
	border-top: 1px solid var(--tile-hairline);
}

.dates li {
	border-bottom: 1px solid var(--tile-hairline);
}

.dates--past {
	opacity: 0.6;
}

.dates__empty {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-2);
	padding-block: var(--space-3);
}

.dates__empty-text {
	color: var(--tile-fg-muted);
	font-size: 0.92rem;
}

.dates__row {
	display: flex;
	align-items: center;
	gap: var(--space-2);
	padding-block: var(--space-2);
	text-decoration: none;
	font-size: 0.92rem;
	font-weight: 700;
}

.dates__date {
	letter-spacing: 0.04em;
	color: var(--tile-fg-muted);
	flex-shrink: 0;
}

.dates__city {
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--pink);
	flex-shrink: 1;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.dates__venue {
	color: var(--tile-fg-muted);
	flex: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.dates .dates__plus {
	color: var(--pink);
	font-size: 1.1rem;
	flex-shrink: 0;
}

/* Below this width, date + city + venue no longer fit on one line
   without every field ellipsing down to nothing. Drop the venue (plus
   the chevron trailing it) to its own full-width line instead — date
   and city keep the row's top line, venue gets room to actually read. */
@media (max-width: 480px) {
	.dates__row {
		flex-wrap: wrap;
		row-gap: 0.15em;
	}

	.dates__venue {
		flex-basis: 100%;
		white-space: normal;
		overflow: visible;
		text-overflow: clip;
	}
}

/* Band teaser */
.band__photo img {
	filter: grayscale(1) contrast(1.05);
}

.band__copy .panel-heading {
	max-width: 20ch;
}

.band__lede {
	margin: 0 0 var(--space-4);
	color: var(--on-dark-muted);
	max-width: 28ch;
}

/* Media kit */
.media-kit__photo {
	order: -1;
	overflow: hidden;
}

.media-kit__photo img {
	transition: transform 0.6s ease;
}

.media-kit__photo:hover img {
	transform: scale(1.05);
}

.media-players {
	border-top: 1px solid var(--tile-hairline);
}

.media-player {
	display: flex;
	flex-direction: column;
	gap: var(--space-1);
	padding-block: var(--space-2);
	border-bottom: 1px solid var(--tile-hairline);
}

.media-player__title {
	align-self: flex-start;
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--pink);
}

.media-socials {
	list-style: none;
	display: flex;
	justify-content: center;
	gap: var(--space-2);
	margin: var(--space-3) 0 0;
	padding: 0;
}

.media-socials a {
	display: grid;
	place-items: center;
	color: var(--tile-fg-muted);
	font-size: 1.32rem;
	transition: color 0.2s ease;
}

.media-socials a:hover {
	color: var(--pink);
}

.media-list {
	list-style: none;
	margin: 0 0 var(--space-4);
	padding: 0;
	border-top: 1px solid var(--tile-hairline);
}

.media-list li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-2);
	padding-block: var(--space-2);
	border-bottom: 1px solid var(--tile-hairline);
}

.media-list li > span:first-child {
	display: inline-flex;
	align-items: center;
	gap: 0.6em;
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--on-dark-muted);
}

.media-list .media-list__chevron {
	color: var(--on-dark-muted);
	flex-shrink: 0;
}

@media (min-width: 900px) {
	.media-kit__photo {
		order: 0;
	}
}

.media-kit__video-cta {
	position: absolute;
	inset: 0;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: var(--space-1);
	color: var(--white);
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	text-align: center;
	text-decoration: none;
}

.media-kit__video-cta .video-banner__play {
	font-size: 7.2rem;
	color: var(--white);
}

/* Press kit */
.press-kit__photo {
	order: -1;
}

.press-list {
	list-style: none;
	margin: 0 0 var(--space-4);
	padding: 0;
	border-top: 1px solid var(--tile-hairline);
}

.press-list li {
	border-bottom: 1px solid var(--tile-hairline);
}

.press-list__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-2);
	padding-block: var(--space-2);
	text-decoration: none;
}

.press-list__label {
	display: inline-flex;
	align-items: center;
	gap: 0.6em;
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--on-dark-muted);
}

/* Icon reads the span's own font-size by default; bumped 20% relative to
   it here so the icon grows without resizing the label text next to it. */
.press-list__label .icon {
	font-size: 1.2em;
}

.press-list .press-list__chevron {
	color: var(--on-dark-muted);
	flex-shrink: 0;
	font-size: 1.2em;
}

@media (min-width: 900px) {
	.press-kit__photo {
		order: 0;
	}
}

/* Band page */
.band-intro__lede {
	margin: 0;
	color: var(--on-dark-muted);
	max-width: 28ch;
}

.band-intro__body {
	margin: 0;
	color: var(--on-dark-muted);
	max-width: 46ch;
}

.band-member__photo {
	order: -1;
}

.band-member__bio {
	margin: 0;
	color: var(--on-dark-muted);
	max-width: 34ch;
}

@media (min-width: 900px) {
	.band-member__photo {
		order: 0;
	}

	.band-member--reverse .band-member__photo {
		order: 1;
	}
}

/* Termine page */
.termine-page__intro {
	margin: 0 0 var(--space-5);
	color: var(--on-dark-muted);
	max-width: 40ch;
}

.termine-section-heading {
	margin: var(--space-5) 0 0;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--tile-label);
}

.termine-list {
	list-style: none;
	margin: var(--space-2) 0 0;
	padding: 0;
	border-top: 1px solid var(--tile-hairline);
}

.termine-list--past {
	opacity: 0.66;
}

.termine-list__item {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: var(--space-3);
	padding-block: var(--space-4);
	border-bottom: 1px solid var(--tile-hairline);
}

.termine-list__when {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	flex-shrink: 0;
	min-width: 5rem;
}

.termine-list__weekday {
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--pink);
}

.termine-list__date {
	font-size: 0.92rem;
	font-weight: 700;
	letter-spacing: 0.04em;
}

.termine-list__what {
	flex: 1;
	min-width: 16rem;
}

.termine-list__venue {
	margin: 0 0 0.2em;
	font-family: var(--font-grotesk);
	font-size: 1.05rem;
	font-weight: 700;
}

.termine-list__address,
.termine-list__meta {
	margin: 0;
	font-size: 0.92rem;
	color: var(--tile-fg-muted);
}

.termine-list__note {
	margin: 0.3em 0 0;
	font-size: 0.82rem;
	font-style: italic;
	color: var(--tile-fg-muted);
}

.termine-list__cta {
	flex-shrink: 0;
	margin-left: auto;
}

/* Below the width the row actually wraps at, the CTA lands on its own
   line — drop the auto margin there so it left-aligns under the text
   above it instead of drifting to the right edge on its own. */
@media (max-width: 640px) {
	.termine-list__cta {
		margin-left: 0;
	}
}

.termine-list__empty {
	padding-block: var(--space-4);
	color: var(--tile-fg-muted);
}

/* Legal pages */
.legal-page {
	min-height: 60vh;
}

.legal-page__content {
	max-width: 60ch;
}

.legal-page__back {
	display: inline-block;
	margin-bottom: var(--space-4);
	color: var(--tile-fg-muted);
	text-decoration: none;
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.legal-page__back:hover {
	color: var(--pink-dim);
}

.legal-page h2 {
	margin-top: var(--space-5);
}

.legal-page__content h2 {
	margin: var(--space-5) 0 var(--space-2);
	font-family: var(--font-display);
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.01em;
	font-size: clamp(1.3rem, 2.6vw, 1.9rem);
	line-height: 1.05;
}

.legal-page__categories {
	padding-left: 1.2em;
}

.legal-page__categories li {
	margin-bottom: var(--space-1);
}
