:root {
	--sm-bg: #f3ece4;
	--sm-bg-soft: #efe6db;
	--sm-bg-deep: #142b2d;
	--sm-bg-night: #111a30;
	--sm-text: #1c1917;
	--sm-text-soft: #efe6da;
	--sm-text-muted: rgba(239, 230, 218, 0.82);
	--sm-accent: #b27b58;
	--sm-accent-soft: rgba(178, 123, 88, 0.18);
	--sm-white: #fffaf4;
	--sm-line: rgba(255, 250, 244, 0.34);
	--sm-shadow: 0 30px 80px rgba(17, 26, 48, 0.18);
	--sm-radius: 30px;
	--sm-container: 1140px;
	--sm-container-wide: 1280px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: "Manrope", sans-serif;
	background: var(--sm-bg);
	color: var(--sm-text);
	line-height: 1.6;
}

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

a {
	color: inherit;
}

p {
	margin: 0 0 1.2rem;
}

.site-shell {
	min-height: 100vh;
}

.layout-container {
	width: min(calc(100% - 48px), var(--sm-container));
	margin: 0 auto;
}

.layout-container--wide {
	width: min(calc(100% - 48px), var(--sm-container-wide));
}

.full-bleed-section {
	width: 100%;
}

.section-kicker {
	margin: 0 0 12px;
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--sm-accent);
}

.section-heading {
	max-width: 840px;
	margin-bottom: 48px;
}

.section-heading--light {
	color: var(--sm-white);
}

.section-heading--light .section-kicker {
	color: rgba(239, 230, 218, 0.78);
}

.section-heading--center {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.section-heading h2,
.hero-title,
.album-spotlight__title {
	margin: 0;
	font-family: "Cormorant Garamond", serif;
	font-weight: 500;
	letter-spacing: -0.04em;
	line-height: 0.94;
}

.section-heading h2 {
	font-size: clamp(3rem, 5vw, 5.3rem);
}

.hero-section {
	position: relative;
	min-height: 100vh;
	padding: 44px 0 80px;
	background-position: center;
	background-size: cover;
	color: var(--sm-white);
}

.hero-section::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(7, 13, 24, 0.92) 0%, rgba(7, 13, 24, 0.72) 34%, rgba(7, 13, 24, 0.42) 62%, rgba(7, 13, 24, 0.68) 100%),
		linear-gradient(180deg, rgba(7, 13, 24, 0.4), rgba(7, 13, 24, 0.84));
}

.hero-section__inner {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	min-height: calc(100vh - 124px);
}

.hero-section__content {
	position: relative;
	max-width: 760px;
	padding: 12px 0 0;
}

.hero-section__content::before {
	content: "";
	position: absolute;
	inset: -28px auto -24px -26px;
	width: min(58vw, 520px);
	background: linear-gradient(180deg, rgba(6, 12, 22, 0.62), rgba(6, 12, 22, 0.18));
	filter: blur(2px);
	z-index: -1;
}

.hero-title {
	font-family: "Manrope", sans-serif;
	font-size: clamp(4.2rem, 9vw, 8.6rem);
	font-weight: 800;
	line-height: 0.9;
	text-transform: lowercase;
	max-width: 780px;
}

.hero-subtitle {
	margin: 24px 0 0;
	font-size: clamp(1rem, 2vw, 1.32rem);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255, 250, 244, 0.78);
}

.hero-copy {
	display: none;
}

.button-primary,
.button-secondary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 12px 24px;
	border-radius: 0;
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	text-decoration: none;
	transition: transform 0.2s ease, opacity 0.2s ease, background-color 0.2s ease;
}

.button-primary {
	margin-top: 36px;
	background: rgba(255, 250, 244, 0.96);
	color: #5d412d;
}

.button-secondary {
	border: 1px solid rgba(255, 250, 244, 0.42);
	color: var(--sm-white);
	background: rgba(255, 255, 255, 0.05);
}

.button-primary:hover,
.button-secondary:hover,
.button-primary:focus-visible,
.button-secondary:focus-visible {
	transform: translateY(-1px);
	opacity: 0.95;
}

.about-section {
	padding: 92px 0 72px;
	background: var(--sm-bg-deep);
	color: var(--sm-white);
}

.about-stage {
	display: grid;
	grid-template-columns: 210px minmax(0, 1.15fr) minmax(0, 0.95fr);
	gap: 32px;
	align-items: start;
}

.about-stage__portrait {
	align-self: stretch;
}

.about-stage__portrait img {
	width: 100%;
	height: 100%;
	min-height: 440px;
	border-radius: 26px;
	object-fit: cover;
	object-position: left center;
	box-shadow: var(--sm-shadow);
}

.about-stage__intro,
.about-stage__body,
.about-stage__points {
	font-size: 0.98rem;
	color: var(--sm-text-muted);
}

.about-stage__intro {
	font-size: 1.04rem;
}

.about-stage__points {
	display: grid;
	gap: 18px;
	padding-left: 18px;
}

.about-stage__points p {
	position: relative;
	margin: 0;
}

.about-stage__points p::before {
	content: "";
	position: absolute;
	left: -18px;
	top: 0.75em;
	width: 6px;
	height: 6px;
	border-radius: 999px;
	background: rgba(239, 230, 218, 0.82);
	transform: translateY(-50%);
}

.achievements-section {
	background: var(--sm-bg-deep);
	color: var(--sm-white);
}

.achievements-stage {
	position: relative;
	overflow: hidden;
	padding: 96px 0 180px;
	background: transparent;
}

.achievements-stage::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: inherit;
	background-position: center top;
	background-size: cover;
	filter: blur(2.4px) saturate(0.9);
	transform: scale(1.03);
	opacity: 0.62;
}

.achievements-stage::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(8, 15, 26, 0.8), rgba(8, 15, 26, 0.5) 28%, rgba(8, 15, 26, 0.78));
}

.achievements-stage .layout-container {
	position: relative;
	z-index: 1;
}

.achievement-cards {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.achievement-card {
	min-height: 380px;
	padding: 42px 30px;
	border: 1px solid rgba(255, 250, 244, 0.34);
	background: rgba(11, 17, 29, 0.42);
	backdrop-filter: blur(6px);
	text-align: center;
}

.achievement-card p {
	margin: 0;
	font-size: clamp(1.15rem, 2vw, 1.38rem);
	line-height: 1.45;
}

.achievements-quote {
	margin-top: -122px;
	padding: 0 0 88px;
}

.achievements-quote .layout-container {
	text-align: center;
}

.achievements-quote__text {
	max-width: 1080px;
	margin: 0 auto 34px;
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(2.1rem, 4.5vw, 4rem);
	line-height: 1.06;
	color: rgba(239, 230, 218, 0.94);
}

.achievements-quote__footer {
	display: grid;
	justify-content: center;
	gap: 18px;
}

.achievements-quote__contact h2 {
	margin: 0 0 10px;
	font-family: "Cormorant Garamond", serif;
	font-size: 2.1rem;
	font-weight: 500;
}

.contact-link {
	display: inline-block;
	font-size: 0.92rem;
	color: rgba(239, 230, 218, 0.84);
	text-decoration: none;
}

.album-spotlight {
	position: relative;
	overflow: hidden;
	padding: 110px 0;
	background-position: right center;
	background-size: cover;
	color: var(--sm-white);
}

.album-spotlight::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(18, 31, 39, 0.92) 0%, rgba(18, 31, 39, 0.84) 28%, rgba(18, 31, 39, 0.24) 58%, rgba(18, 31, 39, 0.12) 100%),
		linear-gradient(180deg, rgba(18, 31, 39, 0.16), rgba(18, 31, 39, 0.28));
}

.album-spotlight__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 340px;
	gap: 36px;
	align-items: end;
	min-height: 720px;
}

.album-spotlight__content {
	align-self: start;
}

.album-spotlight__title {
	max-width: 420px;
	font-family: "Manrope", sans-serif;
	font-size: clamp(4.4rem, 8.5vw, 7.5rem);
	font-weight: 800;
	line-height: 0.84;
	text-transform: uppercase;
	display: grid;
	gap: 0;
}

.album-spotlight__title span {
	display: block;
}

.album-spotlight__aside {
	align-self: end;
	padding: 28px;
	border-radius: 24px;
	background: rgba(13, 20, 33, 0.56);
	backdrop-filter: blur(10px);
}

.album-spotlight__body {
	font-size: 1rem;
	color: rgba(255, 250, 244, 0.88);
}

.pull-quote {
	margin: 22px 0 0;
	padding: 18px 0 0 22px;
	border-left: 1px solid rgba(255, 250, 244, 0.3);
}

.pull-quote p {
	font-family: "Cormorant Garamond", serif;
	font-size: 1.55rem;
	line-height: 1.08;
}

.pull-quote cite {
	font-style: normal;
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(255, 250, 244, 0.74);
}

.discography-section {
	padding: 88px 0 96px;
	background: var(--sm-bg-deep);
	color: var(--sm-white);
}

.albums-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 34px 20px;
}

.album-tile {
	padding: 0;
	background: transparent;
	box-shadow: none;
}

.album-tile__cover {
	overflow: hidden;
	border: 1px solid rgba(255, 250, 244, 0.4);
	border-radius: 0;
	aspect-ratio: 1 / 1;
}

.album-tile__cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.album-tile h3 {
	margin: 12px 0 0;
	font-family: "Manrope", sans-serif;
	font-size: 1.08rem;
	font-weight: 500;
	line-height: 1.5;
	color: rgba(239, 230, 218, 0.9);
}

.album-tile h3::before {
	content: "• ";
}

.new-album-section {
	position: relative;
	overflow: hidden;
	padding: 112px 0 128px;
	background:
		radial-gradient(circle at top center, rgba(225, 151, 88, 0.32), transparent 38%),
		linear-gradient(180deg, #9d572c 0%, #8f4d28 36%, #8a4b2b 100%);
	color: var(--sm-white);
}

.new-album-section::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 28%),
		radial-gradient(circle at 20% 70%, rgba(255, 220, 170, 0.1), transparent 26%),
		radial-gradient(circle at 82% 60%, rgba(255, 220, 170, 0.08), transparent 20%);
}

.new-album-section .layout-container {
	position: relative;
	z-index: 1;
}

.new-album-columns {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 52px;
}

.new-album-copy {
	position: relative;
	padding-top: 8px;
}

.new-album-copy__mark {
	display: block;
	margin-bottom: 10px;
	font-family: "Cormorant Garamond", serif;
	font-size: 3rem;
	line-height: 1;
}

.new-album-copy p {
	font-size: 1.06rem;
	line-height: 1.7;
	color: rgba(255, 250, 244, 0.93);
}

.new-album-copy cite {
	display: block;
	margin-top: 26px;
	font-style: normal;
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.site-footer {
	padding: 28px 0 48px;
	background: var(--sm-bg-deep);
}

.site-footer p {
	margin: 0;
	padding-top: 18px;
	border-top: 1px solid rgba(255, 250, 244, 0.22);
	font-size: 0.92rem;
	color: rgba(239, 230, 218, 0.72);
}

.site-main--simple {
	padding: 72px 0;
}

.entry-content h1 {
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(3rem, 5vw, 5rem);
}

@media (max-width: 1100px) {
	.about-stage,
	.achievement-cards,
	.album-spotlight__grid,
	.albums-grid,
	.new-album-columns {
		grid-template-columns: 1fr;
	}

	.about-stage__portrait {
		max-width: 320px;
	}

	.achievement-card {
		min-height: auto;
	}

	.album-spotlight__grid {
		min-height: auto;
	}

	.album-spotlight__aside {
		max-width: 520px;
	}
}

@media (max-width: 720px) {
	.layout-container,
	.layout-container--wide {
		width: min(calc(100% - 24px), var(--sm-container-wide));
	}

	.hero-section {
		min-height: auto;
		padding: 28px 0 44px;
	}

	.hero-section__inner {
		min-height: auto;
		padding-top: 48px;
	}

	.hero-title {
		font-size: clamp(3.2rem, 16vw, 5.1rem);
	}

	.section-heading h2 {
		font-size: clamp(2.4rem, 12vw, 3.6rem);
	}

	.about-section,
	.achievements-stage,
	.discography-section,
	.new-album-section,
	.album-spotlight {
		padding-top: 72px;
		padding-bottom: 72px;
	}

	.about-stage__portrait img {
		min-height: auto;
	}

	.achievements-quote {
		margin-top: -70px;
		padding-bottom: 72px;
	}

	.achievements-quote__text {
		font-size: clamp(1.7rem, 10vw, 2.6rem);
	}

	.album-spotlight__title {
		font-size: clamp(3rem, 16vw, 5rem);
	}

	.album-spotlight__aside {
		padding: 22px;
	}

	.new-album-columns {
		gap: 34px;
	}
}
