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

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

/* ─── Hero ─── */
.tc-archive-hero {
	text-align: center;
	padding: 80px 24px 48px;
}

.tc-archive-pill {
	display: inline-block;
	font-size: 10px;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: #888;
	border: 1px solid #333;
	border-radius: 20px;
	padding: 5px 16px;
	margin-bottom: 24px;
}

.tc-archive-title {
	font-size: clamp(52px, 9vw, 100px);
	font-weight: 900;
	text-transform: uppercase;
	line-height: 0.9;
	margin: 0 0 28px;
	color: #fff;
	letter-spacing: -1px;
}

.tc-archive-title .tc-accent {
	color: #c9a84c;
}

.tc-archive-subtitle {
	max-width: 520px;
	margin: 0 auto;
	color: #888;
	font-size: 15px;
	line-height: 1.75;
}

/* ─── Filter bar ─── */
.tc-filter-bar {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
	padding: 0 24px 48px;
}

.tc-filter-label {
	font-size: 10px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #555;
	margin-right: 4px;
}

.tc-filter-btn {
	background: transparent;
	border: 1px solid #2a2a2a;
	color: #bbb;
	font-size: 11px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	padding: 8px 18px;
	border-radius: 3px;
	cursor: pointer;
	transition: border-color 0.2s, color 0.2s, background 0.2s;
	font-family: inherit;
}

.tc-filter-btn:hover {
	border-color: #00b4d8;
	color: #00b4d8;
}

.tc-filter-btn.active {
	background: #00b4d8;
	border-color: #00b4d8;
	color: #fff;
}

/* ─── Artist grid ─── */
.tc-artist-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 12px 80px;
}

@media (max-width: 640px) {
	.tc-artist-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}
}

@media (min-width: 641px) and (max-width: 900px) {
	.tc-artist-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1100px) {
	.tc-artist-grid {
		gap: 28px;
		padding: 0 24px 80px;
	}
}

/* ─── Artist card ─── */
.tc-artist-card {
	position: relative;
	aspect-ratio: 3 / 4;
	overflow: hidden;
	border-radius: 2px;
	background: #111;
}

.tc-artist-card.tc-hidden {
	display: none;
}

.tc-card-photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	display: block;
	transition: transform 0.5s ease;
}

.tc-artist-card:hover .tc-card-photo {
	transform: scale(1.04);
}

.tc-card-no-photo {
	width: 100%;
	height: 100%;
	background: linear-gradient(160deg, #1a1a1a 0%, #111 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 72px;
	color: #222;
}

/* Gradient overlay */
.tc-card-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to top,
		rgba(0, 0, 0, 0.95) 0%,
		rgba(0, 0, 0, 0.5) 40%,
		rgba(0, 0, 0, 0.0) 70%
	);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 24px;
}

/* Style dots */
.tc-card-styles {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 10px;
}

.tc-dot-tag {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 11px;
	color: #bbb;
	letter-spacing: 0.5px;
}

.tc-dot-tag::before {
	content: '';
	display: block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #00b4d8;
	flex-shrink: 0;
}

/* Highlighted style chip (active filter) */
.tc-dot-tag--pill {
	background: rgba(0, 180, 216, 0.15);
	border: 1px solid #00b4d8;
	color: #00b4d8;
	padding: 3px 10px 3px 8px;
	border-radius: 20px;
	font-weight: 700;
}

.tc-dot-tag--pill::before {
	background: #00b4d8;
}

/* Artist name */
.tc-artist-name {
	font-size: clamp(22px, 3.5vw, 40px);
	font-weight: 900;
	text-transform: uppercase;
	line-height: 1;
	margin: 0 0 16px;
}

.tc-artist-name a {
	color: #fff;
	text-decoration: none;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.tc-artist-name a:hover {
	color: #fff;
}

/* Card actions row */
.tc-card-actions {
	display: flex;
	align-items: center;
	gap: 12px;
}

/* ─── Book button — scoped to defeat theme overrides ─── */
.tc-archive-page .tc-book-btn {
	display: inline-flex !important;
	align-items: center !important;
	gap: 7px !important;
	background: #00b4d8 !important;
	color: #fff !important;
	font-size: 11px !important;
	font-weight: 700 !important;
	letter-spacing: 1.5px !important;
	text-transform: uppercase !important;
	padding: 10px 16px !important;
	border-radius: 3px !important;
	text-decoration: none !important;
	border: none !important;
	box-shadow: none !important;
	text-shadow: none !important;
	white-space: nowrap !important;
	line-height: 1 !important;
	width: auto !important;
	cursor: pointer !important;
	transition: background 0.2s;
	font-family: inherit !important;
}

.tc-archive-page .tc-book-btn:hover,
.tc-archive-page .tc-book-btn:focus {
	background: #0099bb !important;
	color: #fff !important;
	text-decoration: none !important;
}

.tc-archive-page .tc-book-btn svg {
	width: 13px;
	height: 13px;
	opacity: 0.85;
	flex-shrink: 0;
}

/* Share button */
.tc-share-btn {
	background: none;
	border: none;
	color: #aaa;
	cursor: pointer;
	padding: 8px;
	line-height: 0;
	transition: color 0.2s;
	margin-left: auto;
}

.tc-share-btn:hover {
	color: #fff;
}

.tc-share-btn svg {
	width: 16px;
	height: 16px;
}

/* ─── Featured section (style filter spotlight) ─── */
.tc-featured-section {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 12px;
}

@media (min-width: 1100px) {
	.tc-featured-section {
		padding: 0 24px;
	}
}

/* One row per matching artist */
.tc-featured-artist-row {
	display: grid;
	grid-template-columns: 2fr 3fr;
	gap: 24px;
	margin-bottom: 48px;
	align-items: start;
}

@media (max-width: 700px) {
	.tc-featured-artist-row {
		grid-template-columns: 1fr;
		gap: 16px;
		margin-bottom: 32px;
	}
}

/* Left: mugshot only — no overlay, no text */
.tc-featured-photo {
	aspect-ratio: 3 / 4;
	overflow: hidden;
	border-radius: 2px;
	background: #111;
}

.tc-featured-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	display: block;
}

.tc-featured-no-photo {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 72px;
	font-weight: 900;
	color: #222;
	text-transform: uppercase;
}

/* Right: name → style chip → thumbnails → book CTA */
.tc-featured-info {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.tc-featured-info-header {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.tc-featured-name {
	font-size: clamp(26px, 4vw, 52px);
	font-weight: 900;
	text-transform: uppercase;
	color: #fff;
	margin: 0;
	line-height: 1;
	letter-spacing: -1px;
}

.tc-featured-name a {
	color: inherit;
	text-decoration: none;
}

.tc-featured-name a:hover {
	color: #fff;
}

/* Style chip indicator — standalone, no dot */
.tc-featured-style-chip {
	display: inline-flex;
	align-self: flex-start;
}

.tc-featured-style-chip::before {
	display: none;
}

/* Tattoo thumbnails — portrait, smaller than artist card because they're in the 3fr column */
.tc-featured-thumbs {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
}

.tc-featured-thumbs img {
	width: 100%;
	aspect-ratio: 3 / 4;
	object-fit: cover;
	border-radius: 2px;
	display: block;
}

@media (max-width: 700px) {
	.tc-featured-thumbs {
		grid-template-columns: repeat(3, 1fr);
		gap: 6px;
	}
}

.tc-featured-actions {
	display: flex;
	align-items: center;
}

/* Divider — plain line between featured rows and all-artists grid */
.tc-featured-divider {
	height: 1px;
	background: #1e1e1e;
	margin: 8px 0 48px;
}

@media (min-width: 1100px) {
	.tc-featured-divider {
		margin: 8px 0 56px;
	}
}

/* ─── Empty state ─── */
.tc-archive-empty {
	text-align: center;
	padding: 80px 24px;
	color: #555;
	grid-column: 1 / -1;
}

.tc-archive-empty p {
	font-size: 16px;
}
