.hero {
	position: relative;
	min-height: 100vh;
	min-height: 100dvh;
	overflow: hidden;
	background: #000;
}

.hero__top-bar {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 30px;
	background: var(--color-primary);
	z-index: 3;
}

.hero__media {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
}

.hero__media--desktop,
.hero__media--tablet {
	display: none;
}

@media (min-width: 600px) and (max-width: 1024px) {
	.hero__media--desktop,
	.hero__media--mobile {
		display: none;
	}

	.hero__media--tablet {
		display: block;
	}
}

@media (min-width: 1025px) {
	.hero__media--tablet,
	.hero__media--mobile {
		display: none;
	}

	.hero__media--desktop {
		display: block;
	}
}

.hero__scrim {
	position: absolute;
	inset: 0;
}

/* ---------------------------------------------------------------------
   Default hero: image only (Awards Layout off). Centered column,
   sized to fill the viewport.
--------------------------------------------------------------------- */

.hero__inner {
	position: relative;
	z-index: 1;
	min-height: 100vh;
	min-height: 100dvh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 40px 16px 24px;
	text-align: center;
}

.hero__photo {
	display: block;
	max-width: 100%;
	max-height: 98vh;
	width: auto;
	height: auto;
}

@media (max-width: 1024px) {
	.hero:not(.hero--awards) .hero__photo {
		max-width: calc(100% + 32px);
		margin-left: -16px;
		margin-right: -16px;
	}
}

@media (max-width: 599px) {
	.hero:not(.hero--awards),
	.hero:not(.hero--awards) .hero__inner {
		min-height: 0;
	}
}

@media (min-width: 1025px) {
	.hero:not(.hero--awards) .hero__photo {
		max-height: 100vh;
	}
}

/* ---------------------------------------------------------------------
   Awards Layout: title + social/sign-up + laurels composition, ported
   from the Layton Live hero structure - title/photo/controls/awards
   positioning and grid per breakpoint, retuned for Playfair Display +
   a horizontal script accent word instead of Impact/vertical text.
--------------------------------------------------------------------- */

.hero--awards .hero__photo {
	position: absolute;
	bottom: 0;
	right: 8%;
	max-width: none;
	height: 92%;
	width: auto;
	z-index: 1;
}

.hero--awards .hero__title {
	position: absolute;
	top: 48px;
	left: 64px;
	z-index: 0;
	margin: 0;
}

.hero--awards .hero__title-top {
	display: block;
	font-family: var(--font-display);
	font-weight: 700;
	text-transform: uppercase;
	font-size: clamp(3rem, 9vw, 8rem);
	line-height: 0.85;
	color: var(--color-secondary);
	max-width: 60vw;
}

.hero--awards .hero__title-side {
	display: block;
	font-family: var(--font-script);
	font-size: clamp(2.2rem, 5.5vw, 5rem);
	line-height: 1;
	color: var(--color-primary);
	margin-top: -0.1em;
}

.hero--awards .hero__inner {
	position: relative;
	z-index: 1;
	min-height: 0;
	height: 100%;
	padding: 48px 358px 64px 64px;
	display: flex;
	flex-direction: column;
	text-align: left;
	gap: 0;
}

.hero--awards .hero__controls {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
}

.hero--awards .social-menu--hero.social-menu--compact .social-menu__link {
	width: 32px;
	height: 32px;
}

.hero--awards .social-menu--hero.social-menu--compact .social-menu__link svg {
	width: 32px;
	height: 32px;
}

.hero--awards .hero__awards {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 56px;
	margin: 0;
	padding: 0;
}

.hero--awards .award img {
	width: 148px;
	height: auto;
}

@media (max-width: 1024px) {
	.hero--awards {
		height: 57vh;
		height: 57dvh;
		min-height: 480px;
		--hero-title-size: clamp(1.8rem, 10vw, 3rem);
	}

	.hero--awards .hero__inner {
		padding: 24px 16px;
	}

	.hero--awards .hero__title {
		top: 2.2rem;
		left: 0;
		right: 0;
		text-align: center;
	}

	.hero--awards .hero__title-top {
		position: relative;
		font-size: var(--hero-title-size);
		letter-spacing: 4px;
		margin-inline: auto;
	}

	.hero--awards .hero__title-side {
		font-size: clamp(1.8rem, 9vw, 3rem);
	}

	.hero--awards .hero__photo {
		left: 50%;
		right: auto;
		bottom: -75px;
		transform: translateX(-50%);
		height: 115%;
	}

	.hero--awards .hero__awards {
		position: absolute;
		top: calc(2.2rem + var(--hero-title-size) * 1.7 + 40px);
		right: 0.75rem;
		z-index: 2;
		flex-direction: column;
		align-items: flex-end;
		gap: 16px;
		margin-top: 0;
	}

	.hero--awards .hero__awards .award img {
		width: 65px;
	}

	.hero--awards .hero__controls {
		position: absolute;
		left: 0.5rem;
		right: 0.5rem;
		bottom: 0.5rem;
		z-index: 2;
		flex-direction: row-reverse;
		align-items: center;
		justify-content: space-between;
	}

	.hero--awards .hero__controls .social-menu__link {
		width: 38px;
		height: 38px;
	}

	.hero--awards .hero__controls .social-menu__link svg {
		width: 38px;
		height: 38px;
	}

	.hero--awards .hero__controls .btn {
		padding: 6px 12px;
		font-size: 1.2rem;
		margin-left: 4px;
	}
}

@media (min-width: 451px) and (max-width: 1024px) {
	.hero--awards .hero__awards {
		left: 50%;
		right: auto;
		transform: translateX(165px);
	}

	.hero--awards .hero__awards .award img {
		width: 70px;
	}
}

@media (min-width: 450px) and (max-width: 770px) {
	.hero--awards:has(.hero__awards .award:nth-child(4)) {
		min-height: 600px;
	}
}

@media (max-width: 385px) {
	.hero--awards {
		--hero-title-size: clamp(1.5rem, 9vw, 2.5rem);
	}

	.hero--awards .hero__title {
		left: 16px;
		right: auto;
		text-align: left;
	}

	.hero--awards .hero__photo {
		height: 105%;
		bottom: -40px;
	}

	.hero--awards .hero__awards .award img {
		width: 42px;
	}

	.hero--awards .hero__awards {
		gap: 12px;
	}

	.hero--awards .hero__controls .social-menu__link {
		width: 30px;
		height: 30px;
	}

	.hero--awards .hero__controls .social-menu__link svg {
		width: 30px;
		height: 30px;
	}

	.hero--awards .hero__controls .btn {
		padding: 5px 10px;
		font-size: 1rem;
	}
}

@media (min-width: 1025px) {
	.hero--awards {
		width: 100%;
		height: 100vh;
		height: 100dvh;
		min-height: 1050px;
		--hero-title-size: 8rem;
	}

	.hero--awards .hero__inner {
		padding: 20px 0 0 4rem;
		display: grid;
		grid-template-columns: auto minmax(200px, 1fr);
		grid-template-rows: auto auto;
		row-gap: 2rem;
		column-gap: 4rem;
		max-width: 1300px;
		margin-inline: auto;
		container-type: inline-size;
	}

	.hero--awards .hero__title {
		display: contents;
	}

	.hero--awards .hero__photo {
		left: 50%;
		right: auto;
		top: -3%;
		bottom: auto;
		transform: translateX(-50%);
		height: 160%;
	}

	.hero--awards .hero__title-top {
		grid-column: 1;
		grid-row: 1;
		justify-self: end;
		align-self: end;
		z-index: 0;
		margin-left: 60px;
		max-width: 60vw;
		font-size: var(--hero-title-size);
		letter-spacing: 4px;
	}

	.hero--awards .hero__title-side {
		grid-column: 1;
		grid-row: 2;
		align-self: start;
		position: relative;
		z-index: 0;
		margin-left: 40px;
		margin-top: -1.2rem;
		font-size: 6rem;
	}

	.hero--awards .hero__controls {
		grid-column: 2;
		grid-row: 1;
		justify-self: start;
		align-self: end;
		z-index: 2;
		padding-right: clamp(20px, 5cqw, 100px);
		display: grid;
		grid-template-columns: max-content;
		justify-items: center;
		gap: 16px;
	}

	.hero--awards .hero__controls .social-menu {
		flex-wrap: wrap;
		justify-content: center;
		max-width: calc(3 * 48px + 2 * 12px);
	}

	.hero--awards .hero__controls .social-menu--compact {
		max-width: calc(3 * 32px + 2 * 12px);
	}

	.hero--awards .hero__awards {
		grid-column: 2;
		grid-row: 2;
		justify-self: start;
		z-index: 2;
		padding-right: clamp(20px, 5cqw, 100px);
	}

	.hero--awards .hero__controls .social-menu__link,
	.hero--awards .hero__controls .social-menu__link svg {
		width: clamp(32px, 3.2cqw, 48px);
		height: clamp(32px, 3.2cqw, 48px);
	}

	.hero--awards .hero__controls .btn {
		white-space: nowrap;
		padding: clamp(6px, 0.7cqw, 8px) clamp(20px, 2.8cqw, 36px);
		font-size: clamp(1.05rem, 1.3cqw, 1.5rem);
	}

	.hero--awards .hero__awards .award {
		padding-left: 1rem;
	}

	.hero--awards .hero__awards .award img {
		width: clamp(70px, 9cqw, 150px);
	}
}

@media (min-width: 1025px) and (max-width: 1400px) {
	.hero--awards .hero__photo {
		top: 20%;
		height: 110%;
	}
}

@media (min-width: 1025px) and (max-width: 1599px) {
	.hero--awards {
		--hero-title-size: clamp(5.3rem, 11vw, 8rem);
	}

	.hero--awards .hero__title-side {
		font-size: clamp(4.5rem, 9vw, 7rem);
	}
}

@media (min-width: 1025px) and (max-width: 1369px) {
	.hero--awards .hero__awards {
		gap: 32px;
	}

	.hero--awards .hero__awards .award img {
		width: clamp(60px, 8cqw, 90px);
	}
}
