/* ------------------------------------------------------------------ */
/* KTT Technology -- shared editorial hero for the inner portfolio     */
/* pages (website design, branding, logo, business card, loyalty card, */
/* voucher, price list). Dark, photographic, gold-accented banner with */
/* an eyebrow row, a serif display title, a short intro + "view the    */
/* work" link, and a capabilities / collection meta strip.             */
/* Contact and Pricing intentionally do NOT use this.                  */
/* ------------------------------------------------------------------ */

.inner-hero {
	--ih-gold: #c9a15c;
	--ih-paper: #f4efe4;
	--ih-muted: rgba(244, 239, 228, .58);
	--ih-ink: #0d0d0f;
	--ih-serif: Georgia, "Times New Roman", serif;

	position: relative;
	isolation: isolate;
	min-height: clamp(430px, 46vw, 640px);
	padding: clamp(2.5rem, 5vw, 4.25rem) clamp(1.5rem, 6vw, 6rem);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: clamp(2rem, 5vw, 4rem);
	overflow: hidden;
	background: var(--ih-ink);
	color: var(--ih-paper);
	text-transform: uppercase;
}

.inner-hero__media {
	position: absolute;
	inset: 0;
	z-index: -2;
}

.inner-hero__media img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: center;
	filter: grayscale(.2) contrast(1.02);
}

.inner-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		linear-gradient(180deg, rgba(13, 13, 15, .78) 0%, rgba(13, 13, 15, .68) 45%, rgba(13, 13, 15, .9) 100%),
		radial-gradient(120% 80% at 12% 20%, rgba(13, 13, 15, .35), rgba(13, 13, 15, .82) 70%);
}

/* Eyebrow row --------------------------------------------------- */

.inner-hero__eyebrow {
	margin: 0;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 1.1rem;
	font-size: .68rem;
	font-weight: 600;
	letter-spacing: .24em;
}

.inner-hero__eyebrow b {
	color: var(--ih-gold);
	font-weight: 600;
}

.inner-hero__eyebrow b::after {
	content: "";
	display: inline-block;
	width: clamp(2rem, 5vw, 3.5rem);
	height: 1px;
	margin: .28em 0 .28em 1.1rem;
	vertical-align: middle;
	background: rgba(201, 161, 92, .6);
}

.inner-hero__eyebrow span {
	color: var(--ih-muted);
}

/* Centre block ------------------------------------------------- */

.inner-hero__body {
	margin: auto 0;
	padding: clamp(1.75rem, 4vw, 3rem) 0;
}

.inner-hero__title {
	margin: 0;
	max-width: 16ch;
	color: var(--ih-paper);
	font-family: var(--ih-serif);
	font-weight: 400;
	/* Roughly half the original display size. */
	font-size: clamp(2.15rem, 6vw, 4.6rem);
	line-height: .96;
	letter-spacing: -.02em;
}

.inner-hero__lower {
	margin-top: clamp(1.75rem, 3.5vw, 2.75rem);
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	gap: clamp(1.5rem, 5vw, 4rem);
}

.inner-hero__intro {
	margin: 0;
	max-width: 30ch;
	color: rgba(244, 239, 228, .82);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	font-size: clamp(.95rem, 1.2vw, 1.1rem);
	font-weight: 400;
	letter-spacing: .01em;
	line-height: 1.6;
	text-transform: none;
}

.inner-hero__link {
	display: inline-flex;
	align-items: center;
	gap: .55rem;
	padding-bottom: .55rem;
	border-bottom: 1px solid rgba(201, 161, 92, .55);
	color: var(--ih-gold);
	font-size: .68rem;
	font-weight: 600;
	letter-spacing: .2em;
	white-space: nowrap;
	transition: color .2s ease, border-color .2s ease;
}

.inner-hero__link:hover,
.inner-hero__link:focus-visible {
	color: var(--ih-paper);
	border-color: var(--ih-paper);
}

/* Meta strip ------------------------------------------------- */

.inner-hero__meta {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: .75rem 2rem;
	padding-top: clamp(1.25rem, 2.5vw, 1.75rem);
	border-top: 1px solid rgba(244, 239, 228, .16);
	font-size: .64rem;
	font-weight: 600;
	letter-spacing: .17em;
}

.inner-hero__meta p {
	margin: 0;
}

.inner-hero__meta b {
	margin-right: .9rem;
	color: var(--ih-gold);
	font-weight: 600;
}

.inner-hero__meta span {
	color: var(--ih-paper);
}

@media screen and (max-width: 600px) {

	.inner-hero {
		min-height: 0;
	}

	.inner-hero__lower {
		align-items: flex-start;
	}

	.inner-hero__meta {
		flex-direction: column;
		gap: .5rem;
	}

}
