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

:root {
	--tsc-bg: #0a0a0d;
	--tsc-panel: #0c0c0e;
	--tsc-panel-line: #2a2b35;
	--tsc-cream: #f4f0e8;
	--tsc-muted: #9a9aa4;
	--tsc-gold: #c9a15a;
	--tsc-red: #b5382c;
	--tsc-orange: #d9822b;
	--tsc-gold2: #dfb03f;
	--tsc-teal: #4f978c;
	--tsc-tan: #cbb08c;
	--tsc-blue: #2f5c8a;
	--tsc-pink: #c1587a;
	--notch: 20px;
	--font-display: 'Noto Serif', serif;
	--font-condensed: 'Barlow Condensed', sans-serif;
	--font-body: 'Barlow', sans-serif;

	/* Scoped to the ticket-style event panels — matches the client's
	   approved reference build (Mockups/ticket-panels-final-html-v4.html)
	   exactly, which uses slightly different tones from the rest of the
	   site's palette. */
	--ticket-gold: #b8995f;
	--ticket-gold-text: #c9ac75;
	--ticket-cream: #ead8c7;
	--ticket-red: #bd252b;
	--ticket-red-shadow: #981418;
	--ticket-teal: #5d9998;
}

* { box-sizing: border-box; }

html, body {
	margin: 0;
	padding: 0;
	background: var(--tsc-bg);
	color: var(--tsc-cream);
	font-family: var(--font-body);
	scroll-behavior: smooth;
}

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

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

h1, h2, h3 {
	font-family: var(--font-display);
	font-weight: 600;
	letter-spacing: 0.03em;
	margin: 0;
}

/* ---------- Header (sub-pages only) ---------- */

.tsc-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: #0d0e13;
	border-bottom: 1px solid var(--tsc-panel-line);
}

.tsc-header__inner {
	max-width: 1500px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	padding: 0.75rem 2.5rem;
	gap: 1.5rem;
}

.tsc-header__logo {
	justify-self: start;
}

.tsc-header__logo img { height: 62px; width: auto; }

.tsc-header__banner {
	justify-self: center;
}

.tsc-header__banner img {
	height: 96px;
	width: auto;
	filter: drop-shadow(0 6px 12px rgba(0,0,0,0.5));
}

.tsc-header .tsc-nav {
	justify-self: end;
}

.tsc-nav {
	display: flex;
	justify-content: center;
	gap: 1.75rem;
	font-family: var(--font-condensed);
	font-size: 1.05rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.tsc-nav a {
	color: var(--tsc-cream);
	padding-bottom: 0.35rem;
	border-bottom: 2px solid transparent;
	transition: border-color 0.2s, color 0.2s;
}

.tsc-nav a:hover,
.tsc-nav a.active {
	color: var(--tsc-red);
	border-color: var(--tsc-red);
}

/* ---------- Hero (with curtain + overlaid topbar) ---------- */

/* Wraps the hero + event section so the curtain artwork can run its full
   natural height and drape down past the hero on wide screens, instead of
   being cropped to the hero box. It's a single tall image at the top of
   this wrapper (position: absolute, default z-index) so normal DOM order
   keeps it behind both sections without needing z-index tricks. */
.tsc-curtain-wrap {
	position: relative;
	background: var(--tsc-bg);
}

.tsc-hero__bg {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	max-width: 1600px;
	height: auto;
	pointer-events: none;
}

.tsc-hero {
	position: relative;
	display: flex;
	flex-direction: column;
	text-align: center;
	padding-bottom: 2vh;
}

.tsc-hero__topbar {
	position: relative;
	z-index: 3;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	padding: 0 2.5rem;
	gap: 1rem;
	/* Match the curtain: keep the welcome text + nav within the same 1600px
	   frame so they don't run out into the black beyond the curtain edge. */
	width: 100%;
	max-width: 1600px;
	margin: 0 auto;
}

.tsc-hero__welcome {
	font-family: var(--font-condensed);
	font-size: 0.9rem;
	letter-spacing: 0.04em;
	color: var(--tsc-gold2);
	white-space: nowrap;
	justify-self: start;
	text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

.tsc-hero__welcome strong { color: var(--tsc-cream); font-weight: 500; }

.tsc-hero__banner {
	justify-self: center;
}

.tsc-hero__banner img {
	width: 400px;
	max-width: 40vw;
	height: auto;
	filter: drop-shadow(0 10px 18px rgba(0,0,0,0.55));
}

.tsc-hero__topbar .tsc-nav {
	justify-self: end;
}

.tsc-hero__topbar .tsc-nav a {
	text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

.tsc-hero__content {
	position: relative;
	z-index: 2;
	max-width: 900px;
	margin: 0.25rem auto 1.5vh;
	padding: 0 1.5rem;
}

.tsc-hero__logo {
	width: 100%;
	max-width: 700px;
	margin: 0 auto;
}

.tsc-hero__tagline {
	font-family: var(--font-condensed);
	font-weight: 300;
	text-transform: uppercase;
	letter-spacing: 0.35em;
	font-size: 2.75rem;
	color: var(--tsc-cream);
	margin-top: 0.25rem;
}

/* ---------- Divider ---------- */

.tsc-divider {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.5rem;
	max-width: 900px;
	margin: 0 auto 3rem;
	padding: 0 1.5rem;
}

.tsc-divider h2 {
	font-size: 1.4rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--tsc-tan);
	white-space: nowrap;
	text-align: center;
}

.tsc-divider h2 strong { color: var(--tsc-cream); font-weight: 700; }

.tsc-divider h2.tsc-divider--condensed {
	font-family: var(--font-condensed);
	font-weight: 500;
	letter-spacing: 0.15em;
}

.tsc-divider__dagger {
	width: 72px;
	height: auto;
	flex-shrink: 0;
}

.tsc-divider__dagger--flip {
	transform: scaleX(-1);
}

/* ---------- Ticket-style event panels ----------
   Recreates Mockups/ticket-panels-final-html-v4.html's fixed 1000px-canvas
   border/text layout, but fluidly: the stage is a container-query context
   (container-type: inline-size) so every measurement below, expressed in
   cqw (1cqw = 1% of the stage's own width), scales exactly like the
   original's px-at-1000-canvas values would — without needing a JS/
   transform-scale hack for smaller screens. Icons are ours, not the
   reference's. */

/* The curtain image (.tsc-hero__bg) is absolutely positioned and drapes down
   over this section. It used to be a PNG with a transparent centre, so the
   divider showed through; the flattened JPG is opaque, so the event content
   must sit above it (positioned + z-index) or the "An evening…" heading is
   painted over. */
.tsc-event {
	position: relative;
	z-index: 2;
}

.tsc-ticket-stage {
	container-type: inline-size;
	max-width: 1040px;
	margin: 0 auto;
	padding: 0.5rem 1.5rem 4.5rem;
}

.tsc-ticket {
	position: relative;
	width: 100%;
}

.tsc-ticket--bar {
	aspect-ratio: 1000 / 171;
}

.tsc-ticket--strap {
	aspect-ratio: 1000 / 78;
	margin-top: 3cqw;
}

.tsc-ticket__border {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	display: block;
}

.tsc-ticket__sep {
	position: absolute;
	top: 16.4%;
	height: 69%;
	width: 1.5px;
	background: var(--ticket-gold);
	opacity: 0.88;
}

.tsc-ticket__icon {
	position: absolute;
	display: block;
}

.tsc-ticket__icon svg { width: 100%; height: 100%; display: block; }

.tsc-ticket__icon--cal { color: var(--ticket-red); }
.tsc-ticket__icon--pin { color: var(--ticket-teal); }
.tsc-ticket__icon--clock { color: var(--ticket-gold-text); }

.tsc-ticket__field {
	position: absolute;
	font-family: var(--font-condensed);
	text-transform: uppercase;
}

.tsc-ticket__kicker {
	color: var(--ticket-cream);
	font-size: 2.7cqw;
	line-height: 1;
	letter-spacing: 0.225em;
	font-weight: 300;
	margin-bottom: 1.3cqw;
}

.tsc-ticket__kicker--place { margin-bottom: 1.4cqw; }
.tsc-ticket__kicker--time { font-size: 2.6cqw; letter-spacing: 0.21em; margin-bottom: 1.6cqw; }

.tsc-ticket__big {
	font-weight: 400;
	line-height: 1;
}

.tsc-ticket__big--white {
	color: #fff;
	font-size: 3.2cqw;
	letter-spacing: 0.18em;
	text-shadow: 0.135cqw 0 0 var(--ticket-red-shadow), 0.25cqw 0.08cqw 0 rgba(152,20,24,.72);
}

.tsc-ticket__big--red {
	color: var(--ticket-red);
	font-size: 3.5cqw;
	letter-spacing: 0.18em;
	margin-top: 0.9cqw;
}

.tsc-ticket__big--teal {
	color: var(--ticket-teal);
	font-size: 3.1cqw;
	line-height: 1.12;
	letter-spacing: 0.195em;
}

.tsc-ticket__big--show {
	color: #fff;
	font-size: 2.7cqw;
	line-height: 1.08;
	letter-spacing: 0.21em;
	margin-bottom: 1.2cqw;
}

.tsc-ticket__big--gold {
	color: var(--ticket-gold-text);
	font-size: 3.5cqw;
	letter-spacing: 0.14em;
}

.tsc-ticket__strap-copy {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4.2%;
	padding: 0 5.2%;
	white-space: nowrap;
	font-family: var(--font-display);
	color: var(--ticket-gold-text);
	font-size: 2.2cqw;
	letter-spacing: 0.205em;
	font-weight: 300;
	text-transform: uppercase;
}

.tsc-dot { color: var(--ticket-gold); font-size: 0.9em; }

/* ---------- Lineup ---------- */

.tsc-lineup {
	padding: 2rem 1.5rem 6rem;
	max-width: 1200px;
	margin: 0 auto;
}

.tsc-lineup__more {
	text-align: center;
	margin-top: 3rem;
}

.tsc-lineup__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 3rem 2.5rem;
}

.tsc-act {
	display: block;
	text-align: center;
	color: inherit;
}

.tsc-act__photo {
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: 6px;
	border: 1px solid var(--tsc-gold);
	margin-bottom: 1.25rem;
}

.tsc-act__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.tsc-act:hover .tsc-act__photo img { transform: scale(1.05); }
.tsc-act:hover .tsc-act__name { color: var(--tsc-gold2); }
.tsc-act__name { transition: color 0.2s; }

.tsc-act__name {
	font-family: var(--font-condensed);
	font-size: 1.3rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.tsc-act__genre {
	font-family: var(--font-condensed);
	color: var(--tsc-gold2);
	text-transform: uppercase;
	font-size: 0.8rem;
	letter-spacing: 0.12em;
	margin-top: 0.5rem;
}

/* ---------- About / tickets ---------- */

.tsc-about {
	position: relative;
	padding: 3.5rem 1.5rem 2rem;
	overflow: hidden;
}

.tsc-about__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}

.tsc-about__overlay {
	position: absolute;
	inset: 0;
	/* Solid background colour at the very top so the audience image fades in
	   from the page background, then settles to the readability dark. */
	background: linear-gradient(to bottom, var(--tsc-bg) 0%, rgba(6, 6, 9, 0.66) 28%);
	z-index: 1;
}

.tsc-about__content {
	position: relative;
	z-index: 2;
	max-width: 1100px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 3.5rem;
	align-items: start;
}

.tsc-about__text { position: relative; }

/* Mic + heading sit in their own flex row (not a float) so the paragraphs
   below always start flush at the column's left edge — a floated image
   would let text wrap around it inconsistently between paragraphs at
   in-between viewport widths. */
.tsc-about__heading-row {
	display: flex;
	align-items: flex-start;
	gap: 1.5rem;
	margin-bottom: 1.5rem;
}

.tsc-about__mic {
	width: 110px;
	flex-shrink: 0;
	height: auto;
	filter: drop-shadow(0 8px 14px rgba(0,0,0,0.5));
}

/* Heading + intro copy share the space to the right of the mic. */
.tsc-about__heading-copy { flex: 1; }
.tsc-about__heading-copy h2 { margin-bottom: 1rem; }
.tsc-about__heading-copy .tsc-about__intro { margin-bottom: 0; }

.tsc-about__text h2 {
	font-family: var(--font-condensed);
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 2.6rem;
	line-height: 1.2;
}

.c-song { color: var(--tsc-orange); }
.c-story { color: #4a90c4; }
.c-orig { color: var(--tsc-pink); }

.tsc-about__text p {
	color: var(--tsc-cream);
	font-size: 1.3rem;
	line-height: 1.7;
	margin: 0 0 1rem;
}

.tsc-about__text p.tsc-about__intro {
	color: var(--tsc-muted);
}

.tsc-tickets {
	container-type: inline-size;
	position: relative;
	background: rgba(21, 22, 29, 0.92);
	border: 1px solid var(--ticket-gold);
	border-radius: 14px;
	padding: 2.5rem 2.25rem;
	text-align: center;
}

.tsc-tickets__limited {
	font-family: var(--font-condensed);
	font-weight: 500;
	color: #4a90c4;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	font-size: 1.2rem;
	margin: 0 0 0.75rem;
}

.tsc-tickets__eyebrow {
	font-family: var(--font-condensed);
	font-weight: 600;
	color: var(--ticket-cream);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	font-size: clamp(1.1rem, 8cqw, 2.2rem);
	white-space: nowrap;
	margin: 0 auto 0.5rem;
}

.tsc-tickets__sub {
	font-family: var(--font-condensed);
	color: var(--tsc-tan);
	font-size: 1.3rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin: 0 0 2rem;
}

.tsc-tickets__btn {
	display: block;
	background: var(--ticket-red-shadow);
	color: var(--tsc-cream);
	font-family: var(--font-condensed);
	font-weight: 600;
	font-size: 1.9rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	padding: 1.4rem;
	border-radius: 4px;
	margin-bottom: 0.9rem;
	transition: background 0.2s;
}

.tsc-tickets__btn:hover { background: #6e0f13; }

.tsc-tickets__price {
	font-family: var(--font-body);
	font-weight: 400;
	color: var(--tsc-tan);
	font-size: 1.6rem;
	margin: 0 0 0.6rem;
}

.tsc-tickets__price span {
	font-family: var(--font-body);
	font-weight: 400;
	color: var(--tsc-cream);
	font-size: 1.6rem;
	margin-right: 0.4rem;
}

/* On-sale ticket types listed under the button (from mod_showcase_promo). */
.tsc-tickets__types {
	margin: 0 0 0.9rem;
	text-align: left;
}

.tsc-tickets__type {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 1rem;
	padding: 0.55rem 0;
	border-bottom: 1px solid rgba(184, 153, 95, 0.22);
}

.tsc-tickets__type:last-child { border-bottom: 0; }

.tsc-tickets__type-name {
	font-family: var(--font-condensed);
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--ticket-cream);
	font-size: 1.15rem;
}

.tsc-tickets__type-price {
	font-family: var(--font-body);
	color: var(--tsc-tan);
	font-size: 1.15rem;
	white-space: nowrap;
}

.tsc-tickets__note {
	font-family: var(--font-body);
	color: var(--tsc-muted);
	font-size: 1.2rem;
	line-height: 1.5;
	margin: 0;
}

.tsc-about__food {
	position: relative;
	z-index: 2;
	text-align: center;
	font-family: var(--font-condensed);
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-size: 1.25rem;
	color: var(--tsc-cream);
	max-width: 1100px;
	margin: 3rem auto 0;
}

.tsc-about__food::before,
.tsc-about__food::after {
	content: "\2605";
	color: var(--tsc-gold2);
	font-size: 0.9em;
	vertical-align: 0.05em;
}

.tsc-about__food::before { margin-right: 0.7em; }
.tsc-about__food::after { margin-left: 0.7em; }

/* ---------- Footer ---------- */

.tsc-footer {
	background: #0d0e13;
	border-top: 1px solid var(--tsc-panel-line);
	padding: 4.5rem 1.5rem 1.5rem;
}

.tsc-footer__inner {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1.4fr 1fr;
	gap: 2.5rem;
}

.tsc-footer__brand img { width: 100%; max-width: 340px; }

.tsc-footer__col {
	border-left: 1px solid var(--ticket-gold);
	padding-left: 2.5rem;
}

.tsc-footer__col h3 {
	font-family: var(--font-condensed);
	font-size: 1.4rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--tsc-orange);
	margin-bottom: 0.85rem;
}

.tsc-footer__col h3 span { color: var(--tsc-tan); }

.tsc-footer__col h3.tsc-footer__col-heading--muted { color: var(--tsc-muted); }

.tsc-footer__col p {
	color: var(--tsc-muted);
	line-height: 1.65;
	font-size: 1.1rem;
	margin: 0 0 0.85rem;
}

.tsc-footer__col p strong { color: var(--tsc-cream); }

.tsc-footer__email { color: var(--tsc-cream); }

.tsc-footer__link {
	font-family: var(--font-condensed);
	color: var(--tsc-blue);
	font-size: 1.1rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.tsc-footer__link--orange { color: var(--tsc-orange); }

.tsc-footer__bottom {
	text-align: center;
	font-family: var(--font-condensed);
	color: var(--tsc-muted);
	font-size: 0.75rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-top: 3.5rem;
	padding-top: 1.75rem;
	border-top: 1px solid var(--tsc-panel-line);
}

/* ---------- About page (Joomla article) ---------- */

.is-about .tsc-page--wide { padding-bottom: 0; }

.tsc-about {
	max-width: 1200px;
	margin: 0 auto;
	padding-top: 1rem;
}

.tsc-about__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
	gap: 3.5rem;
	align-items: start;
}

.tsc-about__col-media {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.tsc-about__portrait {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 16px;
	border: 1px solid var(--tsc-gold);
}

.tsc-about__sig {
	width: 78%;
	height: auto;
	margin: 1.75rem 0 2.25rem;
}

.tsc-about__action {
	width: 100%;
	aspect-ratio: 3 / 2;
	object-fit: cover;
	border-radius: 16px;
	border: 1px solid var(--tsc-gold);
}

.tsc-about__pull--teal {
	margin: 2.75rem 0 0;
	padding: 0 1.75rem;
	text-align: center;
	font-family: var(--font-display);
	font-style: italic;
	font-weight: 400;
	font-size: 1.55rem;
	line-height: 1.4;
	color: var(--tsc-gold2);
	position: relative;
}

.tsc-about__pull--teal::before {
	content: '\201C';
	position: absolute;
	left: -1rem;
	top: -2rem;
	font-size: 4.6rem;
	line-height: 1;
	color: var(--tsc-teal);
}

.tsc-about__pull--teal::after {
	content: '\201D';
	position: absolute;
	right: -0.8rem;
	bottom: -3.6rem;
	font-size: 4.6rem;
	line-height: 1;
	color: var(--tsc-teal);
}

.tsc-about__col-body {
	border-left: 1px solid var(--tsc-gold);
	padding-left: 3.5rem;
}

.tsc-about__title {
	font-family: var(--font-display);
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.01em;
	font-size: 4.3rem;
	line-height: 1.04;
	color: var(--tsc-tan);
	margin: 0;
}

.tsc-about__rule {
	border: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--tsc-red), var(--tsc-gold) 55%, transparent);
	margin: 1.5rem 0 2rem;
}

.tsc-about__col-body p {
	font-family: var(--font-body);
	color: #b6b6be;
	font-size: 1.18rem;
	line-height: 1.75;
	margin: 0 0 1.4rem;
}

.tsc-about__signoff {
	display: block;
	width: 400px;
	max-width: 80%;
	height: auto;
	margin: 2.5rem auto 0;
}

.tsc-about__feature {
	max-width: 1000px;
	margin: 4.5rem auto 0;
	padding: 0.5rem 3rem;
	text-align: center;
	font-family: var(--font-display);
	font-style: italic;
	font-weight: 400;
	font-size: 2.5rem;
	line-height: 1.35;
	color: var(--tsc-gold2);
	position: relative;
}

/* Marks are absolutely positioned in the side gutters (top-left / bottom-right)
   so they never collide with the text however many lines it wraps to. */
.tsc-about__feature::before,
.tsc-about__feature::after {
	position: absolute;
	color: var(--tsc-teal);
	font-size: 4rem;
	line-height: 1;
}

.tsc-about__feature::before { content: '\201C'; left: 0; top: -0.4rem; }
.tsc-about__feature::after { content: '\201D'; right: 0; bottom: -1.4rem; }

.tsc-about__band {
	display: block;
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-top: 4.5rem;
	max-height: 460px;
	object-fit: cover;
	object-position: center 32%;
	/* Fade the top edge into the page background (no overlay element here). */
	-webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 22%);
	mask-image: linear-gradient(to bottom, transparent 0%, #000 22%);
}

/* ---------- Event page (dark override of TicketLab) ---------- */

.tsc-eventpage {
	max-width: 1200px;
	margin: 0 auto;
	color: var(--tsc-cream);
}

.tsc-eventpage__hero {
	width: 100%;
	max-height: 380px;
	object-fit: cover;
	border-radius: 12px;
	border: 1px solid var(--tsc-gold);
	margin-bottom: 2rem;
}

.tsc-eventpage__header { margin-bottom: 2.5rem; }

.tsc-eventpage__meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.75rem 1rem;
}

.tsc-eventpage__date,
.tsc-eventpage__time {
	font-family: var(--font-condensed);
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--tsc-gold2);
	font-size: 1rem;
}

.tsc-eventpage__time {
	position: relative;
	padding-left: 1rem;
}

.tsc-eventpage__time::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 0.9em;
	background: var(--tsc-gold2);
	opacity: 0.5;
}

.tsc-eventpage__title {
	font-family: var(--font-display);
	font-weight: 500;
	font-size: 2.9rem;
	line-height: 1.1;
	color: var(--tsc-cream);
	margin: 0.4rem 0 0;
	overflow-wrap: break-word;
	word-break: break-word;
	hyphens: auto;
}

.tsc-eventpage__status {
	display: inline-block;
	margin-top: 0.75rem;
	padding: 0.35rem 1rem;
	border-radius: 4px;
	background: var(--ticket-red-shadow);
	font-family: var(--font-condensed);
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.tsc-eventpage__layout {
	display: grid;
	grid-template-columns: 1.6fr 1fr;
	gap: 3rem;
	align-items: start;
}

.tsc-eventpage__description {
	color: var(--tsc-muted);
	font-size: 1.15rem;
	line-height: 1.75;
}

.tsc-eventpage__description p { margin: 0 0 1rem; }

.tsc-artist-section--event { padding-bottom: 1rem; }

.tsc-artist-grid--event {
	grid-template-columns: repeat(3, 1fr);
	gap: 1.75rem 1.5rem;
}

.tsc-artist-grid--event .tsc-artist-card__name { font-size: 1.05rem; }
.tsc-artist-grid--event .tsc-artist-card__intro { font-size: 0.85rem; }

.tsc-eventpage__terms { margin-top: 2.5rem; color: var(--tsc-muted); line-height: 1.6; }
.tsc-eventpage__terms h2 { font-family: var(--font-condensed); text-transform: uppercase; color: var(--tsc-cream); }

.tsc-eventpage__card {
	background: var(--tsc-panel);
	border: 1px solid var(--tsc-panel-line);
	border-radius: 12px;
	padding: 1.75rem;
	margin-bottom: 1.5rem;
}

.tsc-eventpage__card--tickets { border-color: var(--tsc-gold); }

.tsc-eventpage__card h2 {
	font-family: var(--font-condensed);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	font-size: 1.35rem;
	color: var(--tsc-gold2);
	margin: 0 0 1rem;
}

.tsc-eventpage__card p { color: var(--tsc-muted); line-height: 1.6; margin: 0 0 0.85rem; }
.tsc-eventpage__card strong { color: var(--tsc-cream); font-weight: 600; }

.tsc-eventpage__map { margin-top: 1rem; }
.tsc-eventpage__map iframe { width: 100%; height: 190px; border: 0; border-radius: 8px; display: block; }
.tsc-eventpage__map a {
	display: inline-block;
	margin-top: 0.6rem;
	color: var(--tsc-blue);
	font-family: var(--font-condensed);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

/* Checkout success / confirmation page (override of com_ticketlab success view) */
.tsc-confirm {
	max-width: 640px;
	margin: 1rem auto 2rem;
	padding: 2.75rem 2.5rem;
	background: var(--tsc-panel);
	border: 1px solid var(--tsc-gold);
	border-radius: 16px;
	text-align: center;
}

.tsc-confirm__icon {
	width: 68px;
	height: 68px;
	margin: 0 auto 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-size: 2rem;
	line-height: 1;
	background: rgba(94, 201, 127, 0.15);
	color: #5ec97f;
	border: 1px solid rgba(94, 201, 127, 0.4);
}

.tsc-confirm--processing .tsc-confirm__icon {
	background: rgba(223, 176, 63, 0.15);
	color: var(--tsc-gold2);
	border-color: rgba(223, 176, 63, 0.4);
}

.tsc-confirm--cancel .tsc-confirm__icon {
	background: rgba(189, 37, 43, 0.15);
	color: #e0625f;
	border-color: rgba(189, 37, 43, 0.45);
	font-size: 2.4rem;
}

.tsc-confirm__title {
	font-family: var(--font-display);
	font-weight: 500;
	font-size: 2.5rem;
	line-height: 1.15;
	color: var(--tsc-cream);
	margin: 0 0 0.75rem;
}

.tsc-confirm__lead {
	color: var(--tsc-muted);
	line-height: 1.6;
	margin: 0 auto 2rem;
	max-width: 460px;
}

.tsc-confirm__details {
	margin: 0 0 1.5rem;
	text-align: left;
}

.tsc-confirm__details > div {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 1rem;
	padding: 0.85rem 0;
	border-bottom: 1px solid var(--tsc-panel-line);
}

.tsc-confirm__details dt {
	font-family: var(--font-condensed);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--tsc-gold2);
	font-size: 1rem;
}

.tsc-confirm__details dd {
	margin: 0;
	color: var(--tsc-cream);
	text-align: right;
}

.tsc-confirm__section { margin-top: 2rem; text-align: left; }

.tsc-confirm__subtitle {
	font-family: var(--font-condensed);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	font-size: 1.25rem;
	color: var(--tsc-gold2);
	margin: 0 0 1rem;
	text-align: center;
}

.tsc-confirm__extras { list-style: none; margin: 0; padding: 0; color: var(--tsc-muted); }
.tsc-confirm__extras li { padding: 0.4rem 0; }
.tsc-confirm__extras strong { color: var(--tsc-cream); }
.tsc-confirm__download { color: var(--tsc-gold2); margin-left: 0.5rem; }

.tsc-confirm__tickets { display: flex; flex-direction: column; gap: 0.75rem; }

.tsc-confirm__ticket {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	padding: 0.9rem 1.25rem;
	border: 1px solid var(--tsc-gold);
	border-radius: 10px;
	background: rgba(201, 161, 90, 0.06);
	text-decoration: none;
	transition: background 0.2s, transform 0.2s;
}

.tsc-confirm__ticket:hover { background: rgba(201, 161, 90, 0.15); transform: translateY(-2px); }
.tsc-confirm__ticket-type { font-family: var(--font-condensed); text-transform: uppercase; letter-spacing: 0.05em; color: var(--tsc-cream); }
.tsc-confirm__ticket-num { font-family: var(--font-condensed); color: var(--tsc-gold2); letter-spacing: 0.05em; }

.tsc-confirm__back {
	display: inline-block;
	margin-top: 2rem;
	padding: 0.75rem 2rem;
	border: 1px solid var(--tsc-panel-line);
	border-radius: 8px;
	color: var(--tsc-cream);
	font-family: var(--font-condensed);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	text-decoration: none;
	transition: border-color 0.2s, color 0.2s;
}

.tsc-confirm__back:hover { border-color: var(--tsc-gold); color: var(--tsc-gold2); }

.tsc-confirm__back--primary {
	background: var(--ticket-red-shadow);
	border-color: var(--ticket-red-shadow);
	color: var(--tsc-cream);
}

.tsc-confirm__back--primary:hover { background: #6e0f13; border-color: #6e0f13; color: var(--tsc-cream); }

.tsc-ticketrow {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.85rem 0;
	border-bottom: 1px solid var(--tsc-panel-line);
	color: var(--tsc-cream);
	font-family: var(--font-condensed);
	font-size: 1.2rem;
}

.tsc-ticketrow__price { color: var(--tsc-gold2); white-space: nowrap; font-size: 1.2rem; }

.tsc-ticketrow--selectable { flex-wrap: wrap; align-items: center; }
.tsc-ticketrow--selectable label { flex: 1; display: flex; flex-direction: column; gap: 0.2rem; }
.tsc-ticketrow--selectable label strong { text-transform: uppercase; font-weight: 500; font-size: 1.3rem; }
.tsc-ticketrow--selectable label small { color: var(--tsc-muted); font-size: 0.98rem; }

/* Quantity stepper (number input + up/down buttons) */
.tsc-qty {
	display: flex;
	align-items: stretch;
	flex: 0 0 auto;
	border: 1px solid var(--tsc-panel-line);
	border-radius: 8px;
	background: var(--tsc-bg);
	overflow: hidden;
}

.tsc-qty__input {
	width: 58px;
	padding: 0.5rem 0.25rem;
	background: transparent;
	border: 0;
	color: var(--tsc-cream);
	text-align: center;
	font-family: var(--font-body);
	font-size: 1.25rem;
	-moz-appearance: textfield;
	appearance: textfield;
}

.tsc-qty__input::-webkit-outer-spin-button,
.tsc-qty__input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.tsc-qty__btns {
	display: flex;
	flex-direction: column;
	border-left: 1px solid var(--tsc-panel-line);
}

.tsc-qty__btn {
	flex: 1;
	width: 32px;
	padding: 0;
	border: 0;
	background: var(--tsc-panel);
	color: var(--tsc-gold2);
	font-size: 0.7rem;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.15s, color 0.15s;
}

.tsc-qty__btn:first-child { border-bottom: 1px solid var(--tsc-panel-line); }
.tsc-qty__btn:hover { background: var(--tsc-gold); color: var(--tsc-bg); }
.tsc-qty__btn:active { background: var(--tsc-gold2); }

.tsc-eventpage__notice {
	margin-top: 1rem;
	padding: 1rem;
	border-radius: 8px;
	background: rgba(0, 0, 0, 0.3);
	border: 1px solid var(--tsc-panel-line);
}

.tsc-eventpage__notice strong {
	display: block;
	color: var(--tsc-cream);
	font-family: var(--font-condensed);
	text-transform: uppercase;
	margin-bottom: 0.25rem;
}

.tsc-eventpage__notice span { color: var(--tsc-muted); font-size: 0.95rem; }
.tsc-eventpage__note { color: var(--tsc-muted); font-size: 0.9rem; margin-top: 1rem; }

.tsc-checkout__addons { border: 1px solid var(--tsc-panel-line); border-radius: 8px; padding: 1rem 1.25rem; margin: 1.25rem 0; }
.tsc-checkout__addons legend { color: var(--tsc-gold2); font-family: var(--font-condensed); text-transform: uppercase; padding: 0 0.5rem; }
.tsc-checkout__addons > p { color: var(--tsc-muted); font-size: 0.9rem; margin-top: 0; }

.tsc-addon { display: flex; gap: 0.75rem; align-items: center; padding: 0.6rem 0; }
.tsc-addon img { width: 48px; height: 48px; object-fit: cover; border-radius: 6px; }
.tsc-addon label { flex: 1; display: flex; flex-direction: column; color: var(--tsc-cream); }
.tsc-addon label small { color: var(--tsc-muted); font-size: 0.85rem; }

/* Live order summary (subtotal / surcharge / total) */
.tsc-checkout__summary {
	margin: 1.5rem 0 0;
	padding: 1rem 1.25rem;
	border: 1px solid var(--tsc-panel-line);
	border-radius: 8px;
	background: rgba(0, 0, 0, 0.25);
}

.tsc-checkout__summary h3 {
	font-family: var(--font-condensed);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	font-size: 1.15rem;
	color: var(--tsc-gold2);
	margin: 0 0 0.75rem;
}

.tsc-checkout__summary-row {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 1rem;
	padding: 0.3rem 0;
	color: var(--tsc-muted);
	font-family: var(--font-condensed);
	font-size: 1.1rem;
}

/* The flex rule above outranks the UA [hidden] rule, so JS-hidden rows (e.g. the
   surcharge lines not used by the current combined/separate setting) would still
   show. Restore hidden with a matching-specificity author rule. */
.tsc-checkout__summary-row[hidden] { display: none; }

.tsc-checkout__summary-row strong { color: var(--tsc-cream); font-weight: 500; }

.tsc-checkout__summary-total {
	margin-top: 0.4rem;
	padding-top: 0.65rem;
	border-top: 1px solid var(--tsc-panel-line);
	font-size: 1.3rem;
}

.tsc-checkout__summary-total span { color: var(--tsc-cream); }
.tsc-checkout__summary-total strong { color: var(--tsc-gold2); }

.tsc-checkout__fields { display: flex; flex-direction: column; gap: 0.9rem; margin: 1.5rem 0 1.25rem; }

.tsc-checkout__fields > label {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	color: var(--tsc-cream);
	font-family: var(--font-condensed);
	text-transform: uppercase;
	font-size: 1rem;
	letter-spacing: 0.04em;
}

.tsc-checkout__fields input[type="text"],
.tsc-checkout__fields input[type="email"],
.tsc-checkout__fields input[type="number"] {
	padding: 0.8rem;
	background: var(--tsc-bg);
	border: 1px solid var(--tsc-panel-line);
	border-radius: 6px;
	color: var(--tsc-cream);
	font-family: var(--font-body);
	font-size: 1.05rem;
	text-transform: none;
}

.tsc-checkout__fields > label.tsc-checkout__check {
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	gap: 0.6rem;
	text-transform: none;
	text-align: left;
}
.tsc-checkout__check input[type="checkbox"] { flex: 0 0 auto; width: 18px; height: 18px; accent-color: var(--tsc-gold); }
.tsc-checkout__check span { color: var(--tsc-muted); font-size: 1rem; }

.tsc-checkout__submit {
	display: block;
	width: 100%;
	background: var(--ticket-red-shadow);
	color: var(--tsc-cream);
	border: 0;
	border-radius: 6px;
	padding: 1rem;
	font-family: var(--font-condensed);
	font-weight: 600;
	font-size: 1.35rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	cursor: pointer;
	transition: background 0.2s;
}

.tsc-checkout__submit:hover { background: #6e0f13; }

/* Sold-out pill (replaces the quantity stepper for a sold-out ticket type). */
.tsc-ticketrow__soldout {
	flex: 0 0 auto;
	padding: 0.45rem 0.9rem;
	border: 1px solid var(--tsc-panel-line);
	border-radius: 8px;
	background: rgba(0, 0, 0, 0.25);
	color: var(--tsc-muted);
	font-family: var(--font-condensed);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	font-size: 0.95rem;
	white-space: nowrap;
}

/* Sold-out row: pill stacked over the "join the waitlist" link. */
.tsc-ticketrow__soldout-wrap {
	flex: 0 0 auto;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 0.4rem;
}

.tsc-waitlist-link {
	background: none;
	border: 0;
	padding: 0;
	cursor: pointer;
	color: var(--tsc-gold2);
	font-family: var(--font-condensed);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-size: 0.9rem;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.tsc-waitlist-link:hover { color: var(--tsc-cream); }

/* Prominent waitlist button in the fully-sold-out state. */
.tsc-waitlist-cta {
	display: block;
	width: 100%;
	margin-top: 1.25rem;
	padding: 0.9rem;
	background: var(--ticket-red-shadow);
	color: var(--tsc-cream);
	border: 0;
	border-radius: 6px;
	font-family: var(--font-condensed);
	font-weight: 600;
	font-size: 1.2rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	cursor: pointer;
	transition: background 0.2s;
}

.tsc-waitlist-cta:hover { background: #6e0f13; }

/* Waitlist modal (holds the register-interest form). */
.tsc-waitlist-dialog {
	position: fixed;
	max-width: 520px;
	width: calc(100% - 3rem);
	max-height: calc(100% - 3rem);
	overflow-y: auto;
	background: var(--tsc-panel);
	color: var(--tsc-cream);
	border: 1px solid var(--tsc-gold);
	border-radius: 14px;
	padding: 2.25rem;
}

.tsc-waitlist-dialog::backdrop { background: rgba(0, 0, 0, 0.75); }

.tsc-waitlist-dialog__close {
	position: absolute;
	top: 0.85rem;
	right: 1.1rem;
	background: none;
	border: none;
	color: var(--tsc-muted);
	font-size: 2rem;
	line-height: 1;
	cursor: pointer;
}

.tsc-waitlist-dialog__close:hover { color: var(--tsc-cream); }

/* Register-interest form (inside the modal). */
.tsc-interest {
	margin: 0;
}

.tsc-interest__title {
	font-family: var(--font-condensed);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	font-size: 1.35rem;
	color: var(--tsc-gold2);
	margin: 0 0 0.4rem;
}

.tsc-interest__desc { color: var(--tsc-muted); line-height: 1.6; margin: 0 0 1.25rem; }

/* Selects/textareas in the dark checkout + interest fields. */
.tsc-checkout__fields select,
.tsc-checkout__fields textarea {
	padding: 0.8rem;
	background: var(--tsc-bg);
	border: 1px solid var(--tsc-panel-line);
	border-radius: 6px;
	color: var(--tsc-cream);
	font-family: var(--font-body);
	font-size: 1.05rem;
	text-transform: none;
}

.tsc-checkout__fields textarea { resize: vertical; min-height: 90px; }

/* The quantity stepper inside a stacked field (e.g. waitlist "tickets wanted")
   sizes to its content instead of stretching to the field's full width. */
.tsc-checkout__fields .tsc-qty { align-self: flex-start; }

/* ---------- Artists page ---------- */

.tsc-page--wide {
	padding: 2.5rem 1.5rem 5rem;
}

.tsc-artist-section {
	max-width: 1200px;
	margin: 0 auto;
	padding-bottom: 4rem;
}

.tsc-artist-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2.5rem 2rem;
}

.tsc-artist-card { text-align: center; }

.tsc-artist-card--clickable {
	cursor: pointer;
	transition: transform 0.3s ease;
}

.tsc-artist-card--clickable:hover { transform: translateY(-6px); }

.tsc-artist-card--clickable:focus-visible {
	outline: 2px solid var(--tsc-gold2);
	outline-offset: 6px;
	border-radius: 8px;
}

.tsc-artist-card__photo {
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: 6px;
	border: 1px solid var(--tsc-gold);
	margin-bottom: 1.1rem;
}

.tsc-artist-card__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.tsc-artist-card--clickable:hover .tsc-artist-card__photo img { transform: scale(1.06); }
.tsc-artist-card--clickable:hover .tsc-artist-card__more { color: var(--tsc-gold2); }
.tsc-artist-card__more { transition: color 0.2s; }

.tsc-artist-card__placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--tsc-panel);
	color: var(--tsc-muted);
	font-family: var(--font-display);
	font-size: 3rem;
}

.tsc-artist-card__name {
	font-family: var(--font-condensed);
	font-size: 1.2rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.tsc-artist-card__role {
	font-family: var(--font-condensed);
	color: var(--tsc-gold2);
	text-transform: uppercase;
	font-size: 0.78rem;
	letter-spacing: 0.1em;
	margin-top: 0.35rem;
}

.tsc-artist-card__intro {
	color: var(--tsc-muted);
	font-size: 0.95rem;
	line-height: 1.5;
	margin-top: 0.75rem;
}

.tsc-artist-card__more {
	display: inline-block;
	background: none;
	border: none;
	padding: 0;
	font-family: var(--font-condensed);
	color: var(--tsc-blue);
	text-transform: uppercase;
	font-size: 0.85rem;
	letter-spacing: 0.06em;
	margin-top: 0.75rem;
	cursor: pointer;
}

.tsc-artist-card__more--disabled {
	color: var(--tsc-panel-line);
	cursor: default;
}

.tsc-artist-dialog {
	position: fixed;
	max-width: 620px;
	width: calc(100% - 3rem);
	max-height: calc(100% - 3rem);
	overflow-y: auto;
	background: var(--tsc-panel);
	color: var(--tsc-cream);
	border: 1px solid var(--ticket-gold);
	border-radius: 12px;
	padding: 2.5rem;
}

.tsc-artist-dialog::backdrop {
	background: rgba(0, 0, 0, 0.75);
}

.tsc-artist-dialog__close {
	position: absolute;
	top: 1rem;
	right: 1.25rem;
	background: none;
	border: none;
	color: var(--tsc-muted);
	font-size: 2rem;
	line-height: 1;
	cursor: pointer;
}

.tsc-artist-dialog__close:hover { color: var(--tsc-cream); }

.tsc-artist-dialog__photo {
	display: block;
	width: 100%;
	height: 320px;
	object-fit: cover;
	object-position: center top;
	border-radius: 8px;
	border: 1px solid var(--ticket-gold);
	margin: 0 auto 1.75rem;
}

.tsc-artist-dialog__name {
	font-family: var(--font-condensed);
	font-size: 1.6rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	text-align: center;
}

.tsc-artist-dialog__role {
	font-family: var(--font-condensed);
	color: var(--tsc-gold2);
	text-transform: uppercase;
	font-size: 0.85rem;
	letter-spacing: 0.1em;
	text-align: center;
	margin-top: 0.35rem;
	margin-bottom: 1.5rem;
}

.tsc-artist-dialog__bio p {
	color: var(--tsc-muted);
	line-height: 1.7;
	font-size: 1.05rem;
	margin: 0 0 1rem;
}

.tsc-artist-dialog__bio p:last-child { margin-bottom: 0; }

/* ---------- Terms & refund popup (checkout consent) ---------- */

.tsc-terms-link {
	padding: 0;
	border: 0;
	background: none;
	color: var(--ticket-gold);
	font: inherit;
	text-decoration: underline;
	cursor: pointer;
}

.tsc-terms-link:hover { color: var(--tsc-cream); }

.tsc-terms-dialog {
	position: fixed;
	max-width: 620px;
	width: calc(100% - 3rem);
	max-height: calc(100% - 3rem);
	overflow-y: auto;
	background: var(--tsc-panel);
	color: var(--tsc-cream);
	border: 1px solid var(--ticket-gold);
	border-radius: 12px;
	padding: 2.5rem;
}

.tsc-terms-dialog::backdrop { background: rgba(0, 0, 0, 0.75); }

.tsc-terms-dialog__close {
	position: absolute;
	top: 1rem;
	right: 1.25rem;
	background: none;
	border: none;
	color: var(--tsc-muted);
	font-size: 2rem;
	line-height: 1;
	cursor: pointer;
}

.tsc-terms-dialog__close:hover { color: var(--tsc-cream); }

.tsc-terms-dialog__title {
	font-family: var(--font-condensed);
	text-transform: uppercase;
	color: var(--tsc-cream);
	margin: 0 0 1.25rem;
}

.tsc-terms-dialog__body {
	color: var(--tsc-muted);
	line-height: 1.7;
}

/* ---------- Sub pages ---------- */

.tsc-page--sub .tsc-content {
	max-width: 900px;
	margin: 0 auto;
	padding: 4rem 1.5rem;
	min-height: 50vh;
}

.tsc-error {
	background: var(--tsc-bg);
	color: var(--tsc-cream);
	font-family: var(--font-body);
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	margin: 0;
	text-align: center;
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
	.tsc-about__content { grid-template-columns: 1fr; }
	.tsc-footer__inner { grid-template-columns: 1fr; text-align: center; }
	.tsc-footer__brand img { margin: 0 auto; }
	.tsc-footer__col {
		border-left: none;
		border-top: 1px solid var(--ticket-gold);
		padding-left: 0;
		padding-top: 2.5rem;
	}
	.tsc-about__heading-row { flex-direction: column; align-items: center; text-align: center; }
	.tsc-about__grid { grid-template-columns: 1fr; gap: 2.5rem; }
	.tsc-about__col-body { border-left: 0; padding-left: 0; }
	.tsc-about__col-media { max-width: 440px; margin: 0 auto; }
	.tsc-eventpage__layout { grid-template-columns: 1fr; gap: 2rem; }
	.tsc-eventpage__title { font-size: 2.1rem; }
	.tsc-about__title { font-size: 2.6rem; }
	.tsc-about__feature { font-size: 1.7rem; padding: 0 1rem; margin-top: 3rem; }
	.tsc-about__signoff { margin-right: auto; }
	.tsc-artist-grid { grid-template-columns: repeat(3, 1fr); }
}

/* The banner-centered header only really works as a single row on desktop
   (per the client mockup) — stack it well before things get cramped. */
@media (max-width: 1200px) {
	/* Stacked header is tall — drop the sticky so it doesn't eat the viewport. */
	.tsc-header { position: static; }
	.tsc-header__inner {
		grid-template-columns: 1fr;
		justify-items: center;
		text-align: center;
		gap: 0.75rem;
	}
	.tsc-header__logo, .tsc-header__banner, .tsc-header .tsc-nav { justify-self: center; }
	.tsc-header__logo img { height: 52px; }
	.tsc-header__banner img { height: 80px; }
	.tsc-breadcrumb__inner { justify-content: center; }
	.tsc-hero__topbar {
		display: flex;
		flex-direction: column;
		align-items: center;
		padding-top: 1.25rem;
	}
	.tsc-hero__welcome, .tsc-hero__topbar .tsc-nav { justify-self: unset; }
	.tsc-hero__banner { justify-self: unset; }
	.tsc-hero__banner img { width: 240px; max-width: 55vw; }
	.tsc-nav {
		justify-content: center;
		flex-wrap: wrap;
		gap: 0.75rem 1.4rem;
		font-size: 1rem;
	}
	.tsc-hero__tagline { font-size: 2rem; letter-spacing: 0.25em; }
}

@media (max-width: 700px) {
	.tsc-lineup__grid { grid-template-columns: repeat(2, 1fr); }
	.tsc-nav { font-size: 0.85rem; gap: 0.6rem 1.1rem; }
	.tsc-divider__dagger { width: 46px; }
	.tsc-artist-grid { grid-template-columns: repeat(2, 1fr); }
	.tsc-hero__tagline { font-size: 1.5rem; letter-spacing: 0.2em; }
}

@media (max-width: 480px) {
	.tsc-lineup__grid { grid-template-columns: 1fr; }
	.tsc-hero__tagline { font-size: 1rem; letter-spacing: 0.2em; }
	.tsc-header__banner img { height: 52px; }
	.tsc-divider h2 { white-space: normal; font-size: 1.1rem; letter-spacing: 0.06em; }
	.tsc-divider__dagger { width: 31px; }
	.tsc-artist-grid { grid-template-columns: 1fr; }
}

/* ---------- Offline / maintenance page ---------- */
.tsc-offline {
	min-height: 100vh;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--tsc-bg);
	padding: 2rem 1.25rem;
	color: var(--tsc-cream);
}

.tsc-offline__bg {
	position: fixed;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}

.tsc-offline__overlay {
	position: fixed;
	inset: 0;
	z-index: 1;
	background:
		radial-gradient(ellipse at 50% 35%, rgba(10, 10, 13, 0.72), rgba(10, 10, 13, 0.94) 70%),
		rgba(10, 10, 13, 0.8);
}

.tsc-offline__inner {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 460px;
	text-align: center;
}

.tsc-offline__logo {
	display: block;
	width: 100%;
	max-width: 420px;
	height: auto;
	margin: 0 auto 2rem;
	/* The logo is a flat JPG on black; a soft black halo dissolves its edges
	   into the darkened curtain so it doesn't read as a hard rectangle. */
	box-shadow: 0 0 90px 55px #000;
	background: #000;
}

.tsc-offline__message {
	color: var(--tsc-muted);
	font-family: var(--font-condensed);
	font-size: 1.15rem;
	line-height: 1.6;
	letter-spacing: 0.02em;
	margin-bottom: 2.5rem;
}

.tsc-offline__message p { margin: 0 0 0.75rem; }

.tsc-offline__login {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	max-width: 340px;
	margin: 0 auto;
	padding: 1.75rem;
	background: rgba(12, 12, 14, 0.85);
	border: 1px solid var(--tsc-gold);
	border-radius: 14px;
}

.tsc-offline__field { text-align: left; }

.tsc-offline__field label {
	display: block;
	font-family: var(--font-condensed);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	font-size: 0.85rem;
	color: var(--tsc-gold2);
	margin-bottom: 0.35rem;
}

.tsc-offline__field input {
	width: 100%;
	box-sizing: border-box;
	padding: 0.7rem;
	background: var(--tsc-bg);
	border: 1px solid var(--tsc-panel-line);
	border-radius: 6px;
	color: var(--tsc-cream);
	font-family: var(--font-body);
	font-size: 1rem;
}

.tsc-offline__field input:focus {
	outline: none;
	border-color: var(--tsc-gold);
}

.tsc-offline__btn {
	margin-top: 0.5rem;
	padding: 0.85rem;
	background: var(--ticket-red-shadow);
	color: var(--tsc-cream);
	border: 0;
	border-radius: 6px;
	font-family: var(--font-condensed);
	font-weight: 600;
	font-size: 1.15rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	cursor: pointer;
	transition: background 0.2s;
}

.tsc-offline__btn:hover { background: #6e0f13; }

/* Trim TicketLab's oversized mobile-ticket heading. Its site.css sets
   clamp(1.8rem, 8vw, 2.7rem), which wraps the event title to three lines;
   this override loads after site.css (template.css is linked last) so it wins. */
.ticketlab-mobile-ticket header h1 {
	font-size: clamp(1.35rem, 5vw, 1.9rem);
	line-height: 1.15;
}

/* ---------- PostBox Pro contact form — dark theme ----------
   Overrides com_postboxpro's default light styling (its media/css/postbox-form.css,
   loaded before this file so equal-specificity rules here win). Class names taken
   from PostBox Pro's site/tmpl/form/default.php. */
.postbox-form-wrapper,
.postbox-form-wrapper .postbox-form-header,
.postbox-form-wrapper .postbox-form,
.postbox-form {
	background: var(--tsc-panel);
	border-color: var(--tsc-gold);
	color: var(--tsc-cream);
}

.postbox-form-title {
	font-family: var(--font-display);
	color: var(--tsc-cream);
}

.postbox-form-description { color: var(--tsc-muted); }

.postbox-field > label,
.postbox-field > fieldset > legend {
	color: var(--tsc-cream);
	font-family: var(--font-condensed);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

/* Match PostBox's own type-specific selectors (input[type="…"] is specificity
   0,2,1 and beats a bare .postbox-field input) so these override the light inputs. */
.postbox-field input[type="text"],
.postbox-field input[type="email"],
.postbox-field input[type="tel"],
.postbox-field input[type="url"],
.postbox-field input[type="number"],
.postbox-field input[type="date"],
.postbox-field textarea,
.postbox-field select {
	background-color: var(--tsc-bg);
	color: var(--tsc-cream);
	border: 1px solid var(--tsc-panel-line);
}

.postbox-field input::placeholder,
.postbox-field textarea::placeholder { color: var(--tsc-muted); }

.postbox-field input[type="text"]:focus,
.postbox-field input[type="email"]:focus,
.postbox-field input[type="tel"]:focus,
.postbox-field input[type="url"]:focus,
.postbox-field input[type="number"]:focus,
.postbox-field input[type="date"]:focus,
.postbox-field textarea:focus,
.postbox-field select:focus {
	border-color: var(--tsc-gold);
	box-shadow: 0 0 0 2px rgba(201, 161, 90, 0.25);
	outline: none;
}

/* Recolour the native <select> arrow (default is a light-grey SVG) to gold. */
.postbox-field select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23c9a15a' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
}

.postbox-option { color: var(--tsc-cream); }
.postbox-option input[type="checkbox"],
.postbox-option input[type="radio"] { accent-color: var(--tsc-gold); }

.postbox-required,
.postbox-field-error { color: #e0625f; }

.postbox-message {
	background: rgba(94, 201, 127, 0.12);
	border: 1px solid rgba(94, 201, 127, 0.4);
	color: var(--tsc-cream);
	border-radius: 8px;
}

/* Submit button → the site's red CTA (matches .tsc-checkout__submit). */
.postbox-button {
	background: var(--ticket-red-shadow);
	color: var(--tsc-cream);
	border: 0;
	font-family: var(--font-condensed);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.postbox-button:hover { background: #6e0f13; }

.postboxpro-prev,
.postboxpro-next {
	background: transparent;
	color: var(--tsc-cream);
	border: 1px solid var(--tsc-panel-line);
	border-radius: 6px;
}

.postboxpro-autosave-notice,
.postboxpro-file-hint { color: var(--tsc-muted); }
