/* ========================
   Piercing Aftercare Page
   ======================== */

/* Hero adjustments for subpage */
.hero-small {
	padding: 32px 0;
	background: linear-gradient(
		180deg,
		rgba(16, 16, 16, 0.6),
		rgba(12, 12, 12, 0.85)
	);
}

.hero-small .hero-inner {
	display: flex;
	gap: 24px;
	align-items: center;
	justify-content: space-between;
	position: relative;
}

.hero-small .hero-copy {
	flex: 1 1 48%;
	z-index: 2;
}

.hero-small .hero-title {
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	margin-bottom: 8px;
}

.hero-small .hero-sub {
	font-size: 1rem;
	color: var(--text-muted);
	margin-bottom: 16px;
}

/* Hero media hex */
.hero-small .hero-media {
	flex: 1 1 40%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
}

.hero-small .hex-visual {
	width: 280px;
	height: 280px;
	border-radius: 22px;
	overflow: hidden;
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.55);
}

.hero-small .hex-visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	clip-path: polygon(
		25% 6.7%,
		75% 6.7%,
		100% 50%,
		75% 93.3%,
		25% 93.3%,
		0% 50%
	);
	transition: transform 0.35s ease;
}

.hero-small .hex-visual img:hover {
	transform: scale(1.05);
}

/* Section spacing */
.section.container {
	padding-top: 40px;
	padding-bottom: 40px;
}

.section h2 {
	font-size: clamp(1.5rem, 2.5vw, 2rem);
	margin-bottom: 16px;
}

.section h3 {
	font-size: clamp(1.2rem, 2vw, 1.5rem);
	margin-top: 24px;
	margin-bottom: 12px;
}

/* Lead paragraph */
.section .lead {
	font-size: 1.05rem;
	color: var(--text-muted);
	max-width: 70ch;
	margin-bottom: 24px;
}

/* Aftercare steps */
.aftercare-steps {
	list-style: decimal inside;
	padding-left: 0;
	display: grid;
	gap: 16px;
}

.aftercare-steps li {
	background: rgba(255, 255, 255, 0.02);
	padding: 14px 16px;
	border-radius: 8px;
	line-height: 1.6;
	font-weight: 500;
	transition: background 0.2s ease;
}

.aftercare-steps li:hover {
	background: rgba(255, 255, 255, 0.05);
}

/* Contact band */
.contact-band {
	background: linear-gradient(
		135deg,
		rgba(200, 167, 109, 0.12),
		rgba(12, 12, 12, 0.85)
	);
	padding: 64px 0;
	margin-top: 32px;
	border-radius: 12px;
	text-align: center;
}

.contact-band h2 {
	font-size: clamp(1.5rem, 2.8vw, 2rem);
	margin-bottom: 12px;
}

.contact-band p {
	font-size: 1.05rem;
	color: var(--text-muted);
	margin-bottom: 18px;
}

/* Responsive adjustments */
@media (max-width: 980px) {
	.hero-small .hero-inner {
		flex-direction: column-reverse;
		text-align: center;
		gap: 16px;
		padding: 20px 0;
	}

	.hero-small .hex-visual {
		width: 240px;
		height: 240px;
		margin: 0 auto;
	}

	.aftercare-steps {
		gap: 12px;
	}
}

@media (max-width: 520px) {
	.hero-small .hero-copy {
		padding: 0 10px;
	}

	.hero-small .hex-visual {
		width: 200px;
		height: 200px;
	}
}
