/*--------------------------------------------------------------
PUTUSHART PREMIUM HERO
--------------------------------------------------------------*/

.hero-section {
	position: relative;
	width: 100%;
	padding: 80px 0 90px;
	overflow: hidden;
	background: #faf9f6;
}

.hero-container {
	width: 92%;
	max-width: 1320px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
	align-items: center;
	gap: 90px;
}


/*--------------------------------------------------------------
CONTENT
--------------------------------------------------------------*/

.hero-content {
	position: relative;
	z-index: 2;
	max-width: 610px;
}

.hero-subtitle {
	display: inline-block;
	margin-bottom: 24px;
	color: #a9854f;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: 3px;
	text-transform: uppercase;
}

.hero-title {
	margin: 0;
	color: #111111;
	font-size: clamp(52px, 4.5vw, 70px);
	font-weight: 600;
	line-height: 1.06;
	letter-spacing: -2px;
}

.hero-title span {
	display: block;
}

.hero-description {
	max-width: 550px;
	margin: 30px 0 0;
	color: #626262;
	font-size: 17px;
	line-height: 1.9;
}


/*--------------------------------------------------------------
BUTTONS
--------------------------------------------------------------*/

.hero-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 40px;
}

.button-primary,
.button-secondary {
	display: inline-flex;
	min-height: 54px;
	align-items: center;
	justify-content: center;
	padding: 15px 30px;
	border: 1px solid #111111;
	border-radius: 50px;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	text-decoration: none;
	transition:
		background 0.3s ease,
		color 0.3s ease,
		transform 0.3s ease;
}

.button-primary {
	background: #111111;
	color: #ffffff;
}

.button-primary:hover,
.button-primary:focus-visible {
	background: #a9854f;
	border-color: #a9854f;
	color: #ffffff;
	transform: translateY(-2px);
}

.button-secondary {
	background: transparent;
	color: #111111;
}

.button-secondary:hover,
.button-secondary:focus-visible {
	background: #111111;
	color: #ffffff;
	transform: translateY(-2px);
}


/*--------------------------------------------------------------
ARTWORK
--------------------------------------------------------------*/

.hero-image {
	position: relative;
	width: 100%;
	padding: 0 0 38px 38px;
}

.hero-image::before {
	position: absolute;
	top: -32px;
	right: -40px;
	width: 72%;
	height: 78%;
	border-radius: 50%;
	background: #eee8de;
	content: "";
}

.hero-image__frame {
	position: relative;
	z-index: 1;
	width: 100%;
	aspect-ratio: 4 / 3.8;
	overflow: hidden;
	border-radius: 4px 90px 4px 4px;
	background: #ece8e1;
	box-shadow: 0 30px 70px rgba(17, 17, 17, 0.12);
}

.hero-image__frame img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}


/*--------------------------------------------------------------
IMAGE CAPTION
--------------------------------------------------------------*/

.hero-image__caption {
	position: absolute;
	z-index: 2;
	right: 0;
	bottom: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 22px;
	width: calc(100% - 70px);
	margin: 0 auto;
	padding: 18px 25px;
	background: #ffffff;
	box-shadow: 0 15px 40px rgba(17, 17, 17, 0.09);
}

.hero-image__caption span {
	position: relative;
	color: #555555;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 1.5px;
	text-transform: uppercase;
}

.hero-image__caption span:not(:last-child)::after {
	position: absolute;
	top: 50%;
	right: -13px;
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background: #a9854f;
	content: "";
	transform: translateY(-50%);
}


/*--------------------------------------------------------------
TABLET
--------------------------------------------------------------*/

@media (max-width: 1024px) {

	.hero-section {
		padding: 85px 0 95px;
	}

	.hero-container {
		grid-template-columns: 1fr 1fr;
		gap: 55px;
	}

	.hero-title {
		font-size: 50px;
	}

	.hero-image {
		padding-left: 20px;
	}

}


/*--------------------------------------------------------------
MOBILE
--------------------------------------------------------------*/

@media (max-width: 767px) {

	.hero-section {
		padding: 70px 0 80px;
	}

	.hero-container {
		grid-template-columns: 1fr;
		gap: 55px;
	}

	.hero-content {
		max-width: 100%;
	}

	.hero-title {
		font-size: 42px;
		letter-spacing: -1px;
	}

	.hero-image {
		max-width: 620px;
		margin: 0 auto;
		padding-left: 0;
	}

}


@media (max-width: 576px) {

	.hero-title {
		font-size: 36px;
	}

	.hero-description {
		font-size: 16px;
	}

	.hero-buttons {
		flex-direction: column;
	}

	.button-primary,
	.button-secondary {
		width: 100%;
	}

	.hero-image__caption {
		gap: 14px;
		width: calc(100% - 30px);
		padding: 16px 12px;
	}

	.hero-image__caption span {
		font-size: 9px;
		letter-spacing: 1px;
	}

}