/*
 * Editorial hero with split layout + integrated stats strip.
 * Used on the home (template-home.php).
 */

.teledom-design .hero {
	position: relative;
	background: var(--ink);
	color: var(--paper);
	overflow: hidden;
	min-height: 75vh;
	display: flex;
	flex-direction: column;
	padding: 18px 0;
}

.teledom-design .hero .container {
	flex: 1;
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 50px;
	align-items: center;
	padding-top: 50px;
	padding-bottom: 0;
}

.teledom-design .hero .left {
	position: relative;
	z-index: 2;
}

.teledom-design .hero .right {
	position: relative;
	height: 51vh;
	min-height: 320px;
}

/* Hero with integrated stats strip — used on index */
.teledom-design .hero.hero--with-stats {
	min-height: auto;
	padding: 18px 0 60px;
}

.teledom-design .hero.hero--with-stats .container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-top: 50px;
	padding-bottom: 50px;
}

.teledom-design .hero-grid {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 50px;
	align-items: center;
	min-height: 60vh;
}

.teledom-design .hero-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	width: 100%;
	max-width: var(--maxw);
	margin: 0 auto;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 36px 34px 0;
}

.teledom-design .hero-stats .item {
	padding: 6px 24px 6px 0;
	position: relative;
}

.teledom-design .hero-stats .item + .item {
	padding-left: 30px;
	border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.teledom-design .hero-stats .num {
	font-family: var(--display);
	font-size: clamp(34px, 3.6vw, 52px);
	font-weight: 300;
	color: var(--gold-bright);
	line-height: 1;
	letter-spacing: -0.04em;
}

.teledom-design .hero-stats .num small {
	font-size: 0.42em;
	color: rgba(255, 255, 255, 0.5);
	margin-left: 6px;
	letter-spacing: 0;
}

.teledom-design .hero-stats .lbl {
	font-family: var(--mono);
	font-size: 10px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.7);
	margin-top: 14px;
}

.teledom-design .hero-stats .desc {
	margin-top: 8px;
	color: rgba(255, 255, 255, 0.5);
	font-size: 12px;
	max-width: 24ch;
	line-height: 1.55;
}

@media (min-width: 1920px) { .teledom-design .hero-stats { padding-left: 40px; padding-right: 40px; } }
@media (min-width: 2560px) { .teledom-design .hero-stats { padding-left: 54px; padding-right: 54px; } }
@media (max-width: 1440px) { .teledom-design .hero-stats { padding-left: 28px; padding-right: 28px; } }
@media (max-width: 1280px) { .teledom-design .hero-stats { padding-left: 24px; padding-right: 24px; } }

.teledom-design .hero .meta {
	display: flex;
	align-items: center;
	gap: 18px;
	font-family: var(--mono);
	font-size: 10px;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: #a89c80;
	margin-bottom: 26px;
}

.teledom-design .hero .meta .dot {
	width: 6px;
	height: 6px;
	background: var(--gold);
	border-radius: 50%;
}

.teledom-design .hero h1 {
	color: var(--paper);
	max-width: 14ch;
}

.teledom-design .hero h1 .acc {
	font-style: italic;
	font-weight: 300;
	color: var(--gold-bright);
}

.teledom-design .hero .lead {
	font-size: 16px;
	color: #cdc6b8;
	max-width: 48ch;
	margin: 28px 0 34px;
	line-height: 1.55;
}

.teledom-design .hero-actions {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	align-items: center;
}

/* Hero stack (image collage on the right side) */
.teledom-design .stack {
	position: relative;
	width: 100%;
	height: 100%;
}

.teledom-design .stack .img {
	position: absolute;
	border-radius: var(--r-lg);
	overflow: hidden;
	box-shadow: var(--shadow);
}

.teledom-design .stack .img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.teledom-design .stack .img.s1 {
	top: 0;
	left: 0;
	width: 88%;
	height: 88%;
	z-index: 1;
}

.teledom-design .stack .img.s2 {
	bottom: 6%;
	right: -2%;
	width: 38%;
	height: 42%;
	z-index: 2;
	border: 5px solid var(--ink);
	transform: rotate(2deg);
	box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.5), 0 12px 24px -8px rgba(0, 0, 0, 0.3);
}

.teledom-design .stack .badge {
	position: absolute;
	top: 8%;
	right: -2%;
	z-index: 3;
	background: var(--paper);
	color: var(--ink);
	padding: 14px 18px;
	border-radius: 99px;
	display: flex;
	align-items: center;
	gap: 14px;
	font-family: var(--display);
	font-size: 13px;
	box-shadow: var(--shadow);
}

.teledom-design .stack .badge b {
	font-size: 25px;
	color: var(--green-deep);
	font-weight: 500;
}

.teledom-design .stack .gold-frame {
	position: absolute;
	left: -20px;
	bottom: -20px;
	width: 38%;
	height: 30%;
	border: 1px solid var(--green);
	border-radius: var(--r-lg);
	z-index: 0;
}
