/* ========================
   Microblading Page
   ======================== */

/* Hero small adjustments (matches other subpages) */
.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-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: 24px;
}

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

/* Microblading gallery */
.microblading-gallery {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 12px;
	margin-top: 16px;
}

.microblading-gallery .gallery-item {
	overflow: hidden;
	border-radius: 12px; /* smaller rounded corners for clean look */
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.microblading-gallery .gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 12px;
	transition: transform 0.35s ease;
}

.microblading-gallery .gallery-item:hover img {
	transform: scale(1.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;
	}

	.microblading-gallery {
		grid-template-columns: 1fr 1fr;
	}
}

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

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

	.microblading-gallery {
		grid-template-columns: 1fr;
	}
}
