/* ─── Page reset ─── */
body.tc-artist-single-page {
	background: #0e0e0e;
	color: #fff;
}

body.tc-artist-single-page #content,
body.tc-artist-single-page #primary,
body.tc-artist-single-page .site-content,
body.tc-artist-single-page .page-content {
	padding: 0;
	margin: 0;
	max-width: none;
	width: 100%;
}

/* ─── Hero ─── */
.tc-single-hero {
	display: grid;
	grid-template-columns: 1fr 1fr;
	height: clamp(380px, 40vw, 560px);
	max-width: 1280px;
	margin: 40px auto 0;
	padding: 0 24px;
	overflow: hidden;
	border-radius: 2px;
}

.tc-single-hero-left {
	position: relative;
	overflow: hidden;
	background: #111;
}

.tc-single-mugshot {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	display: block;
}

.tc-single-mugshot-placeholder {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 120px;
	font-weight: 900;
	color: #222;
	text-transform: uppercase;
}

.tc-single-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to top,
		rgba(0, 0, 0, 0.92) 0%,
		rgba(0, 0, 0, 0.4) 45%,
		rgba(0, 0, 0, 0) 70%
	);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 36px 40px;
}

.tc-single-hero-location {
	font-size: 10px;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: #aaa;
	margin-bottom: 8px;
}

.tc-single-artist-name {
	font-size: clamp(52px, 9vw, 120px);
	font-weight: 900;
	text-transform: uppercase;
	line-height: 0.88;
	margin: 0;
	color: #fff;
	letter-spacing: -2px;
	word-break: break-word;
}

.tc-single-hero-right {
	position: relative;
	overflow: hidden;
	background: #0a0a0a;
}

.tc-hero-slideshow {
	position: absolute;
	inset: 0;
}

.tc-hero-slide {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	opacity: 0;
	transition: opacity 0.9s ease;
}

.tc-hero-slide--active {
	opacity: 1;
}

.tc-single-hero-no-tattoo {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #111 0%, #0a0a0a 100%);
}

@media (max-width: 768px) {
	.tc-single-hero {
		grid-template-columns: 1fr;
		grid-template-rows: 55vw 50vw;
		height: auto;
		padding: 0 16px;
	}

	.tc-single-artist-name {
		font-size: clamp(40px, 10vw, 80px);
	}

	.tc-single-hero-overlay {
		padding: 24px;
	}
}

/* ─── Content layout: sidebar + portfolio ─── */
.tc-single-content {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 64px;
	max-width: 1280px;
	margin: 0 auto;
	padding: 64px 24px 80px;
	align-items: start;
}

@media (max-width: 960px) {
	.tc-single-content {
		grid-template-columns: 1fr;
		gap: 48px;
		padding: 48px 20px 60px;
	}
}

/* ─── Sidebar ─── */
.tc-single-sidebar {
	position: sticky;
	top: 32px;
	display: flex;
	flex-direction: column;
	gap: 36px;
}

@media (max-width: 960px) {
	.tc-single-sidebar {
		position: static;
	}
}

.tc-sidebar-section {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.tc-sidebar-label {
	font-size: 10px;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: #00b4d8;
	font-weight: 700;
}

.tc-single-bio {
	font-size: 14px;
	line-height: 1.8;
	color: #aaa;
}

.tc-single-bio p {
	margin: 0 0 0.75em;
}

.tc-single-bio p:last-child {
	margin: 0;
}

/* Specialty chips */
.tc-specialty-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	align-items: flex-start;
}

.tc-specialty-chip {
	border: 1px solid #2a2a2a;
	color: #bbb;
	font-size: 10px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	padding: 5px 10px;
	border-radius: 2px;
	background: transparent;
	cursor: pointer;
	font-family: inherit;
	line-height: normal;
	-webkit-appearance: none;
	appearance: none;
	white-space: nowrap;
	transition: border-color 0.2s, color 0.2s;
}

.tc-specialty-chip:hover,
.tc-specialty-chip.tc-style-filter-btn--active {
	border-color: #00b4d8;
	color: #00b4d8;
}

/* Social icons */
.tc-social-icons {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.tc-social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border: 1px solid #2a2a2a;
	border-radius: 50%;
	color: #888;
	text-decoration: none;
	transition: border-color 0.2s, color 0.2s;
}

.tc-social-link:hover {
	border-color: #00b4d8;
	color: #00b4d8;
}

.tc-social-link svg {
	width: 16px;
	height: 16px;
}

/* Book a Session button */
body.tc-artist-single-page .tc-book-session-btn {
	display: block !important;
	background: #00b4d8 !important;
	color: #fff !important;
	text-align: center !important;
	padding: 16px 24px !important;
	font-size: 11px !important;
	font-weight: 700 !important;
	letter-spacing: 2px !important;
	text-transform: uppercase !important;
	text-decoration: none !important;
	border-radius: 3px !important;
	border: none !important;
	box-shadow: none !important;
	transition: background 0.2s;
	cursor: pointer !important;
}

body.tc-artist-single-page .tc-book-session-btn:hover {
	background: #0099bb !important;
	color: #fff !important;
	text-decoration: none !important;
}

/* ─── Portfolio column ─── */
.tc-portfolio-header {
	margin-bottom: 20px;
}

.tc-portfolio-heading {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #fff;
	margin: 0;
}

.tc-portfolio-count {
	color: #444;
}

/* Portfolio grid */
.tc-portfolio-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
}

@media (max-width: 640px) {
	.tc-portfolio-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 6px;
	}
}

/* Portfolio item */
.tc-portfolio-item {
	position: relative;
	aspect-ratio: 3 / 4;
	overflow: hidden;
	background: #111;
	border-radius: 2px;
}

.tc-portfolio-item.tc-portfolio-hidden {
	display: none;
}

.tc-portfolio-link {
	display: block;
	width: 100%;
	height: 100%;
}

.tc-portfolio-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.45s ease;
}

.tc-portfolio-item:hover .tc-portfolio-img {
	transform: scale(1.05);
}

.tc-portfolio-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 55%);
	opacity: 0;
	transition: opacity 0.3s;
	display: flex;
	align-items: flex-end;
	padding: 12px;
}

.tc-portfolio-item:hover .tc-portfolio-overlay {
	opacity: 1;
}

.tc-portfolio-title {
	font-size: 11px;
	color: #ddd;
	line-height: 1.4;
}

/* Load more */
.tc-load-more-wrap {
	text-align: center;
	margin-top: 28px;
}

body.tc-artist-single-page .tc-load-more-btn {
	background: transparent !important;
	border: 1px solid #2a2a2a !important;
	color: #bbb !important;
	font-size: 11px !important;
	letter-spacing: 2px !important;
	text-transform: uppercase !important;
	padding: 14px 36px !important;
	cursor: pointer !important;
	transition: border-color 0.2s, color 0.2s;
	font-family: inherit !important;
	border-radius: 3px !important;
}

body.tc-artist-single-page .tc-load-more-btn:hover {
	border-color: #00b4d8 !important;
	color: #00b4d8 !important;
}

.tc-portfolio-empty {
	color: #555;
	font-size: 14px;
}

/* ─── Booking CTA ─── */
.tc-booking-cta {
	padding: 0 24px 80px;
}

.tc-booking-cta-inner {
	max-width: 1280px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 40px;
	align-items: center;
	background: #141414;
	border-radius: 4px;
	padding: 52px 60px;
}

@media (max-width: 768px) {
	.tc-booking-cta-inner {
		grid-template-columns: 1fr;
		padding: 36px 28px;
		gap: 28px;
	}

	.tc-booking-cta {
		padding: 0 16px 60px;
	}
}

.tc-booking-cta-title {
	font-size: clamp(32px, 5vw, 64px);
	font-weight: 900;
	text-transform: uppercase;
	line-height: 0.9;
	margin: 0 0 20px;
	color: #fff;
	letter-spacing: -1px;
}

.tc-booking-cta-title .tc-accent {
	color: #00b4d8;
}

.tc-booking-cta-text {
	color: #888;
	font-size: 15px;
	line-height: 1.75;
	margin: 0;
	max-width: 480px;
}

body.tc-artist-single-page .tc-inquiry-btn {
	display: inline-flex !important;
	align-items: center !important;
	gap: 10px !important;
	background: transparent !important;
	border: 2px solid #fff !important;
	color: #fff !important;
	font-size: 12px !important;
	font-weight: 700 !important;
	letter-spacing: 2px !important;
	text-transform: uppercase !important;
	padding: 18px 32px !important;
	text-decoration: none !important;
	border-radius: 3px !important;
	white-space: nowrap !important;
	transition: background 0.2s, color 0.2s;
}

body.tc-artist-single-page .tc-inquiry-btn:hover {
	background: #fff !important;
	color: #0e0e0e !important;
}
