/* ===================================
   TIK.R — Production Process
   =================================== */

.production {
	padding: clamp(80px, 12vw, 160px) var(--pad-x);
	background: var(--surface);
	border-top: 1px solid var(--border);
}

.production-container {
	max-width: var(--max-w);
	margin: 0 auto;
}

.production-header {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: end;
	margin-bottom: clamp(48px, 7vw, 80px);
	border-bottom: 1px solid var(--border);
	padding-bottom: 32px;
}

.production-title {
	font-family: var(--font-display);
	font-size: clamp(52px, 8vw, 110px);
	line-height: 0.88;
	letter-spacing: 0.02em;
	color: var(--white);
}

.production-subtitle {
	font-size: 1.1rem;
	font-weight: 300;
	color: var(--white-dim);
	line-height: 1.7;
	max-width: 380px;
}

.production-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	background: var(--border);
	border: 1px solid var(--border);
}

.production-step {
	background: var(--bg);
	padding: clamp(28px, 4vw, 48px);
	display: flex;
	flex-direction: column;
	gap: 20px;
	position: relative;
	min-height: 240px;
	transition: background 0.3s;
	overflow: hidden;
}
.production-step:hover {
	background: var(--surface-2);
}

/* Big ghost number */
.step-num {
	font-family: var(--font-display);
	font-size: 5rem;
	letter-spacing: 0.02em;
	line-height: 1;
	position: absolute;
	top: 20px;
	right: 20px;
	transition:
		opacity 0.3s,
		color 0.3s;
	/* Each step gets its own color */
}
.production-step:nth-child(1) .step-num {
	color: var(--purple);
	opacity: 0.18;
}
.production-step:nth-child(2) .step-num {
	color: var(--pink);
	opacity: 0.18;
}
.production-step:nth-child(3) .step-num {
	color: var(--gold);
	opacity: 0.18;
}

.production-step:hover .step-num {
	opacity: 0.45;
}

.step-label {
	font-family: var(--font-ui);
	font-size: 01rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}
.production-step:nth-child(1) .step-label {
	color: var(--purple);
}
.production-step:nth-child(2) .step-label {
	color: var(--pink);
}
.production-step:nth-child(3) .step-label {
	color: var(--gold);
}

.production-step p {
	font-size: clamp(0.9rem, 1.5vw, 1.1em);
	font-weight: 300;
	color: var(--white-dim);
	line-height: 1.7;
	max-width: 280px;
}

/* Bottom animated bar per step color */
.step-bar {
	position: absolute;
	bottom: 0;
	left: 0;
	height: 2px;
	width: 0;
	transition: width 0.4s ease;
}
.production-step:nth-child(1) .step-bar {
	background: var(--purple);
}
.production-step:nth-child(2) .step-bar {
	background: var(--pink);
}
.production-step:nth-child(3) .step-bar {
	background: var(--gold);
}
.production-step:hover .step-bar {
	width: 100%;
}

@media (max-width: 900px) {
	.production-header {
		grid-template-columns: 1fr;
	}
	.production-steps {
		grid-template-columns: 1fr;
	}
}
