:root {
	--afrie-primary: #2a3158;
	--afrie-accent: #e4d61d;
	--afrie-text: #434343;
	--afrie-black: #050505;
	--afrie-white: #ffffff;
	--afrie-shell: min(1120px, calc(100vw - 32px));
	--afrie-shadow: 0 24px 50px rgba(42, 49, 88, 0.12);
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body.afrie-body {
	margin: 0;
	font-family: "Hind", sans-serif;
	color: var(--afrie-text);
	background: #f7f6f1;
}

body.has-video-modal {
	overflow: hidden;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	display: block;
	max-width: 100%;
}

button,
input {
	font: inherit;
}

.site-shell {
	width: var(--afrie-shell);
	margin: 0 auto;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 30;
	background: rgba(5, 5, 5, 0.92);
	backdrop-filter: blur(12px);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 18px 0;
}

.site-logo {
	display: inline-flex;
	align-items: center;
	font-family: "Montserrat", sans-serif;
	font-size: 1.1rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	color: var(--afrie-white);
	text-transform: lowercase;
}

.site-logo-image {
	width: auto;
	height: 34px;
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 18px;
	font-family: "Montserrat", sans-serif;
	font-size: 0.66rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.82);
}

.site-nav a {
	transition: color 0.25s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
	color: var(--afrie-accent);
}

.nav-toggle {
	display: none;
	background: transparent;
	border: 0;
	padding: 0;
	cursor: pointer;
}

.nav-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	margin: 5px 0;
	background: var(--afrie-white);
}

.hero-section {
	position: relative;
	min-height: min(92vh, 980px);
	background: var(--afrie-black);
	overflow: hidden;
}

.hero-media,
.hero-media img,
.hero-overlay {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.hero-media img {
	object-fit: cover;
	object-position: center top;
	transform: scale(1.02);
	transform-origin: center center;
	animation: hero-image-zoom 14s ease-in-out infinite alternate;
}

@keyframes hero-image-zoom {
	from {
		transform: scale(1.02);
	}

	to {
		transform: scale(1.14);
	}
}

.hero-overlay {
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.4) 38%, rgba(0, 0, 0, 0.86));
}

.hero-content {
	position: relative;
	z-index: 1;
	min-height: inherit;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	padding: 160px 0 74px;
	text-align: center;
}

.hero-kicker {
	margin: 0 0 18px;
	font-family: "Montserrat", sans-serif;
	font-size: 0.8rem;
	font-weight: 400;
	letter-spacing: 0.7em;
	color: var(--afrie-white);
}

.button-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 140px;
	padding: 11px 24px 9px;
	border: 0;
	background: var(--afrie-accent);
	color: var(--afrie-primary);
	font-family: "Montserrat", sans-serif;
	font-size: 0.67rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	box-shadow: var(--afrie-shadow);
}

.button-small {
	min-width: 124px;
	padding-inline: 18px;
}

.content-section {
	position: relative;
	padding: 58px 0;
}

.section-light {
	background: var(--afrie-white);
}

.section-title {
	position: relative;
	width: fit-content;
	margin: 0 auto 34px;
	font-family: "Montserrat", sans-serif;
	font-size: 0.88rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--afrie-primary);
}

.section-title::after {
	content: "";
	display: block;
	width: 70px;
	height: 4px;
	margin: 10px auto 0;
	background: var(--afrie-accent);
}

.section-subtitle {
	margin: 0 0 18px;
	font-family: "Montserrat", sans-serif;
	font-size: 1rem;
	font-weight: 700;
	text-align: center;
	color: #111111;
}

.section-bg {
	position: absolute;
	inset: 0;
	opacity: 0.32;
	pointer-events: none;
	background-repeat: no-repeat;
	background-size: 340px;
}

.section-bg-purple {
	background-image: url("../images/backgrounds/circle-scatter-haikei-purple-one.svg"), url("../images/backgrounds/circle-scatter-haikei-purple-two.svg");
	background-position: left center, right bottom;
}

.section-bg-yellow {
	background-image: url("../images/backgrounds/circle-scatter-haikei-yellow-one.svg"), url("../images/backgrounds/circle-scatter-haikei-yellow-two.svg");
	background-position: right center, left bottom;
}

.music-grid {
	position: relative;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 26px;
}

.album-spotlight {
	position: relative;
	display: grid;
	grid-template-columns: minmax(280px, 410px) minmax(0, 1fr);
	gap: 34px;
	align-items: center;
	margin: 0 0 42px;
	padding: 28px;
	background:
		radial-gradient(circle at top right, rgba(228, 214, 29, 0.28), transparent 26%),
		linear-gradient(135deg, #151515, #24170f 48%, #38210d);
	box-shadow: 0 28px 56px rgba(21, 18, 16, 0.16);
}

.album-spotlight-art {
	max-width: 410px;
	margin: 0 auto;
	box-shadow: 0 24px 48px rgba(0, 0, 0, 0.28);
}

.album-spotlight-art img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
}

.album-spotlight-copy {
	max-width: 560px;
	color: var(--afrie-white);
}

.album-spotlight-kicker {
	margin: 0 0 12px;
	font-family: "Montserrat", sans-serif;
	font-size: 0.74rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--afrie-accent);
}

.album-spotlight-copy h3 {
	margin: 0 0 14px;
	font-family: "Montserrat", sans-serif;
	font-size: clamp(2rem, 4vw, 3.6rem);
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--afrie-white);
}

.album-spotlight-title {
	display: inline-block;
	background: linear-gradient(90deg, #ffffff 0%, #f7dc56 30%, #ffffff 55%, #f2b233 78%, #ffffff 100%);
	background-size: 220% 100%;
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	animation: ggulu-title-glow 4.8s ease-in-out infinite;
}

@keyframes ggulu-title-glow {
	0%,
	100% {
		background-position: 0% 50%;
		transform: translateY(0) scale(1);
		text-shadow: 0 0 0 rgba(242, 178, 51, 0);
	}

	45% {
		background-position: 100% 50%;
		transform: translateY(-2px) scale(1.015);
		text-shadow: 0 10px 30px rgba(242, 178, 51, 0.24);
	}

	70% {
		background-position: 68% 50%;
		transform: translateY(0) scale(1);
		text-shadow: 0 6px 20px rgba(247, 220, 86, 0.18);
	}
}

.album-spotlight-copy p:last-of-type {
	margin: 0 0 24px;
	font-size: 1rem;
	line-height: 1.75;
	color: rgba(255, 255, 255, 0.84);
}

.music-empty {
	grid-column: 1 / -1;
	margin: 0;
	padding: 24px 18px;
	text-align: center;
	font-family: "Montserrat", sans-serif;
	font-size: 0.86rem;
	font-weight: 600;
	color: #111111;
}

.music-card {
	position: relative;
	text-align: center;
}

.music-card-image {
	margin-bottom: 14px;
	aspect-ratio: 1;
	background: #ececec;
	overflow: hidden;
}

.music-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.music-card h3 {
	margin: 0;
	font-family: "Montserrat", sans-serif;
	font-size: 0.84rem;
	font-weight: 700;
	color: #111111;
}

.music-card p {
	margin: 2px 0 14px;
	font-size: 0.77rem;
}

.section-videos {
	padding-top: 0;
	background: #141414;
}

.section-videos .section-title {
	padding-top: 48px;
	color: var(--afrie-white);
}

.video-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.videos-empty {
	grid-column: 1 / -1;
	margin: 0;
	padding: 26px 20px;
	text-align: center;
	font-family: "Montserrat", sans-serif;
	font-size: 0.86rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.8);
}

.video-card {
	position: relative;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	cursor: pointer;
}

.video-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.6));
}

.video-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.video-card-play {
	position: absolute;
	inset: 50% auto auto 50%;
	z-index: 1;
	width: 76px;
	height: 54px;
	border-radius: 18px;
	transform: translate(-50%, -50%);
	background: rgba(255, 0, 0, 0.9);
	box-shadow: 0 20px 34px rgba(0, 0, 0, 0.28);
}

.video-card-play::before {
	content: "";
	position: absolute;
	inset: 50% auto auto 50%;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 16px solid #ffffff;
	transform: translate(-35%, -50%);
}

.video-card-title {
	position: absolute;
	left: 18px;
	bottom: 14px;
	z-index: 1;
	font-family: "Montserrat", sans-serif;
	font-size: 0.7rem;
	color: var(--afrie-white);
}

.section-cta-row {
	padding-top: 18px;
	text-align: center;
}

.videos-page-main {
	background: #111111;
	color: var(--afrie-white);
}

.videos-page-hero {
	padding: 78px 0 34px;
	background:
		linear-gradient(180deg, rgba(5, 5, 5, 0.92), rgba(20, 20, 20, 0.94)),
		url("../images/backgrounds/circle-scatter-haikei-purple-one.svg") right top / 340px no-repeat;
}

.videos-page-kicker {
	margin: 0 0 12px;
	font-family: "Montserrat", sans-serif;
	font-size: 0.74rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--afrie-accent);
}

.videos-page-title {
	margin: 0 0 12px;
	font-family: "Montserrat", sans-serif;
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 800;
	color: var(--afrie-white);
}

.videos-page-copy {
	max-width: 58ch;
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.78);
}

.videos-library-section {
	padding: 0 0 68px;
}

.video-grid-library {
	gap: 20px;
}

.video-modal {
	position: fixed;
	inset: 0;
	z-index: 80;
	display: none;
}

.video-modal.is-open {
	display: block;
}

.video-modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.8);
}

.video-modal-dialog {
	position: relative;
	z-index: 1;
	width: min(960px, calc(100vw - 32px));
	margin: min(8vh, 64px) auto;
}

.video-modal-close {
	position: absolute;
	top: -40px;
	right: 0;
	border: 0;
	background: transparent;
	color: #ffffff;
	font-size: 2rem;
	line-height: 1;
	cursor: pointer;
}

.video-modal-frame {
	position: relative;
	aspect-ratio: 16 / 9;
	background: #000000;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.video-modal-frame iframe {
	width: 100%;
	height: 100%;
	border: 0;
}

.videos-empty-page {
	padding: 40px 24px;
	background: rgba(255, 255, 255, 0.05);
}

.film-stack {
	position: relative;
	display: grid;
	gap: 34px;
}

.film-feature {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 34px;
	align-items: center;
}

.film-copy h3 {
	margin: 0 0 12px;
	font-family: "Montserrat", sans-serif;
	font-size: 1rem;
	font-weight: 700;
	color: #111111;
}

.film-copy p,
.gallery-copy p,
.about-copy {
	margin: 0 0 18px;
	font-size: 0.88rem;
	line-height: 1.6;
	max-width: 52ch;
}

.film-poster {
	background: #f0f0f0;
}

.film-poster img {
	width: 100%;
	height: auto;
}

.section-gallery {
	background: var(--afrie-white);
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	margin-bottom: 24px;
}

.gallery-tile {
	position: relative;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: 22px;
	box-shadow: 0 24px 48px rgba(28, 26, 22, 0.12);
}

.gallery-tile img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.01);
	transition: transform 0.8s ease, filter 0.8s ease;
}

.gallery-copy {
	max-width: 580px;
	margin: 0 auto;
	text-align: center;
}

.gallery-copy p {
	text-align: center;
}

.section-shows {
	padding-top: 48px;
}

.shows-list {
	position: relative;
}

.shows-empty {
	margin: 0;
	text-align: center;
	font-family: "Montserrat", sans-serif;
	font-size: 0.82rem;
	font-weight: 600;
	color: #111111;
}

.show-row {
	display: grid;
	grid-template-columns: 120px 1fr auto;
	align-items: center;
	gap: 18px;
	padding: 10px 0;
}

.show-date,
.show-location {
	font-family: "Montserrat", sans-serif;
	font-size: 0.84rem;
	font-weight: 600;
	color: #111111;
}

.about-gallery {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	margin-bottom: 18px;
}

.section-about {
	text-align: center;
}

.about-copy {
	margin-inline: auto;
}

.section-book {
	background:
		radial-gradient(circle at top left, rgba(255, 117, 165, 0.16), transparent 28%),
		radial-gradient(circle at bottom right, rgba(255, 166, 43, 0.18), transparent 30%),
		linear-gradient(180deg, #fff8ed, #ffffff);
}

.book-grid {
	display: grid;
	grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
	gap: 42px;
	align-items: center;
}

.book-cover {
	max-width: 420px;
	margin: 0 auto;
	transform: rotate(-2deg);
	box-shadow: 0 26px 60px rgba(42, 49, 88, 0.18);
}

.book-cover img {
	width: 100%;
	height: auto;
}

.book-copy {
	max-width: 60ch;
}

.book-kicker {
	margin: 0 0 10px;
	font-family: "Montserrat", sans-serif;
	font-size: 0.74rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: #f0678f;
}

.book-copy h2 {
	margin: 0 0 14px;
	font-family: "Montserrat", sans-serif;
	font-size: clamp(1.8rem, 3vw, 3rem);
	font-weight: 800;
	line-height: 1.05;
	color: #111111;
}

.book-lead {
	margin: 0 0 16px;
	font-family: "Montserrat", sans-serif;
	font-size: 0.98rem;
	font-weight: 600;
	line-height: 1.6;
	color: var(--afrie-primary);
}

.book-copy p:last-of-type {
	margin-bottom: 24px;
}

.about-image {
	position: relative;
	aspect-ratio: 0.85;
	overflow: hidden;
	background: #e8ebef;
	border-radius: 22px;
	box-shadow: 0 24px 52px rgba(42, 49, 88, 0.12);
}

.about-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.01);
	transition: transform 0.8s ease, filter 0.8s ease;
}

.image-reveal {
	opacity: 0;
	transform: translateY(34px) scale(0.96) rotate(-1deg);
	transition:
		opacity 0.7s ease,
		transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
	transition-delay: var(--reveal-delay, 0s);
	will-change: transform, opacity;
}

.image-reveal:nth-child(even) {
	transform: translateY(34px) scale(0.96) rotate(1deg);
}

.image-reveal.is-visible {
	opacity: 1;
	transform: translateY(0) scale(1) rotate(0deg);
}

.gallery-tile::after,
.about-image::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(12, 11, 10, 0.12));
	opacity: 0;
	transition: opacity 0.45s ease;
	pointer-events: none;
}

.gallery-tile:hover img,
.gallery-tile:focus-within img,
.about-image:hover img,
.about-image:focus-within img {
	transform: scale(1.08);
	filter: saturate(1.08) contrast(1.03);
}

.gallery-tile:hover::after,
.gallery-tile:focus-within::after,
.about-image:hover::after,
.about-image:focus-within::after {
	opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
	.hero-media img {
		animation: none;
		transform: scale(1.02);
	}

	.album-spotlight-title {
		animation: none;
		background-position: 50% 50%;
	}

	.image-reveal,
	.image-reveal:nth-child(even) {
		opacity: 1;
		transform: none;
		transition: none;
	}

	.gallery-tile img,
	.about-image img,
	.gallery-tile::after,
	.about-image::after {
		transition: none;
	}
}

.site-footer {
	padding: 56px 0 34px;
	background: var(--afrie-primary);
	text-align: center;
	color: var(--afrie-white);
}

.site-footer h2 {
	margin: 0 0 20px;
	font-family: "Montserrat", sans-serif;
	font-size: 0.96rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--afrie-accent);
}

.social-links {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin-bottom: 18px;
}

.social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
}

.social-link img {
	width: 18px;
	height: 18px;
	object-fit: contain;
}

.mailing-copy {
	margin: 0 0 14px;
	font-family: "Montserrat", sans-serif;
	font-size: 0.7rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.mailing-form {
	display: flex;
	justify-content: center;
	gap: 10px;
	flex-wrap: wrap;
}

.mailing-form input {
	width: min(320px, 100%);
	padding: 12px 14px 10px;
	border: 0;
	background: #ffffff;
	color: #111111;
}

.mailing-form button {
	padding: 12px 16px 10px;
	border: 0;
	background: var(--afrie-accent);
	color: var(--afrie-primary);
	font-family: "Montserrat", sans-serif;
	font-size: 0.66rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	cursor: pointer;
}

.mailing-feedback {
	margin: 14px 0 0;
	font-family: "Montserrat", sans-serif;
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.mailing-feedback.is-success,
.mailing-feedback.is-exists {
	color: #d7f2a0;
}

.mailing-feedback.is-error,
.mailing-feedback.is-invalid,
.mailing-feedback.is-incomplete {
	color: #ffd0ba;
}

.footer-note {
	margin: 20px 0 0;
	font-size: 0.62rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.72);
}

.footer-note a {
	color: var(--afrie-accent);
}

.whatsapp-float {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 40;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 62px;
	height: 62px;
	border-radius: 999px;
	background: #ffffff;
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

.whatsapp-float img {
	width: 34px;
	height: 34px;
	object-fit: contain;
}

@media (max-width: 860px) {
	.nav-toggle {
		display: block;
	}

	.site-nav {
		position: absolute;
		top: calc(100% - 1px);
		left: 0;
		right: 0;
		display: none;
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
		padding: 18px 16px 22px;
		background: rgba(5, 5, 5, 0.98);
	}

	.site-nav.is-open {
		display: flex;
	}

	.hero-section {
		min-height: 74vh;
	}

	.hero-kicker {
		font-size: 0.68rem;
		letter-spacing: 0.46em;
	}

	.music-grid,
	.video-grid,
	.film-feature,
	.about-gallery,
	.gallery-grid,
	.album-spotlight,
	.book-grid {
		grid-template-columns: 1fr;
	}

	.album-spotlight {
		padding: 22px;
		text-align: center;
	}

	.album-spotlight-copy {
		margin: 0 auto;
	}

	.show-row {
		grid-template-columns: 1fr;
		justify-items: start;
	}

	.videos-page-hero {
		padding-top: 58px;
	}

	.whatsapp-float {
		right: 16px;
		bottom: 16px;
		width: 56px;
		height: 56px;
	}

	.whatsapp-float img {
		width: 30px;
		height: 30px;
	}
}
