/* ============================================================
   Lindstein Music — lindsteinmusic.com
   ============================================================ */

:root {
	--bg: #060a12;
	--bg-raised: #0b111d;
	--panel: rgba(255, 255, 255, 0.03);
	--line: rgba(255, 255, 255, 0.09);
	--text: #e9eef6;
	--muted: #93a0b4;
	--accent: #33b4ff;
	--accent-soft: rgba(0, 184, 255, 0.13);
	--glow: rgba(0, 184, 255, 0.35);
	--font-display: "Space Grotesk", "Century Gothic", Verdana, sans-serif;
	--font-body: "Inter", -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
	--header-h: 68px;
	--radius: 16px;
}

* { box-sizing: border-box; }

html {
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
	margin: 0;
	background: var(--bg);
	color: var(--text);
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

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

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
	width: min(1080px, 100% - 48px);
	margin-inline: auto;
}

/* ---------- Header ---------- */

#siteHeader {
	position: fixed;
	inset: 0 0 auto 0;
	z-index: 100;
	height: var(--header-h);
	transition: background-color 0.3s ease, border-color 0.3s ease;
	border-bottom: 1px solid transparent;
}

#siteHeader.scrolled {
	background: rgba(6, 10, 18, 0.82);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
	border-bottom-color: var(--line);
}

.header-inner {
	width: min(1080px, 100% - 48px);
	margin-inline: auto;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.wordmark {
	display: flex;
	align-items: baseline;
	gap: 8px;
	color: var(--text);
	font-family: var(--font-display);
	letter-spacing: 0.22em;
	text-decoration: none;
}
.wordmark:hover { text-decoration: none; }
.wordmark-main { font-weight: 700; font-size: 17px; }
.wordmark-sub  { font-weight: 400; font-size: 17px; color: var(--muted); }

#siteNav {
	display: flex;
	gap: 6px;
}

#siteNav a {
	color: var(--muted);
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.04em;
	padding: 8px 14px;
	border-radius: 8px;
	transition: color 0.2s ease, background-color 0.2s ease;
}

#siteNav a:hover {
	color: var(--text);
	background: var(--panel);
	text-decoration: none;
}

#navToggle {
	display: none;
	background: none;
	border: 0;
	padding: 10px;
	cursor: pointer;
}
#navToggle span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--text);
	margin: 5px 0;
	border-radius: 2px;
	transition: transform 0.25s ease, opacity 0.25s ease;
}
#navToggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#navToggle.open span:nth-child(2) { opacity: 0; }
#navToggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */

.hero {
	position: relative;
	min-height: 92vh;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.hero-bg {
	position: absolute;
	inset: -10%;
	background: url("../img/bg.jpg") center 35% / cover no-repeat;
	opacity: 0.55;
	animation: heroDrift 60s ease-in-out infinite alternate;
}

.hero-bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse at 30% 40%, rgba(0, 184, 255, 0.10), transparent 55%),
		linear-gradient(180deg, rgba(6, 10, 18, 0.55) 0%, rgba(6, 10, 18, 0.25) 45%, var(--bg) 100%);
}

@keyframes heroDrift {
	from { transform: scale(1) translateY(0); }
	to   { transform: scale(1.06) translateY(-1.5%); }
}

.hero-content {
	position: relative;
	z-index: 1;
	padding: calc(var(--header-h) + 48px) 0 64px;
}

.hero-logo {
	width: 217px;
	height: auto;
	margin: 0 0 22px -8px;
	filter: drop-shadow(0 0 34px rgba(0, 184, 255, 0.28));
}

.eyebrow {
	font-family: var(--font-display);
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--accent);
	margin: 0 0 20px;
}

h1 {
	font-family: var(--font-display);
	font-size: clamp(38px, 6vw, 64px);
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: -0.01em;
	margin: 0 0 24px;
}

.quoted {
	font-style: italic;
	font-size: clamp(30px, 4vw, 48px);
	color:#666;	
}

.lede {
	max-width: 560px;
	font-size: 18px;
	color: var(--muted);
	margin: 0 0 36px;
}
.lede strong { color: var(--text); font-weight: 600; }

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

.btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--font-display);
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.03em;
	padding: 13px 26px;
	border-radius: 10px;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }

.btn-primary {
	background: var(--accent);
	color: #04101f;
	box-shadow: 0 0 0 rgba(0, 184, 255, 0);
}
.btn-primary:hover {
	background: #74b6ff;
	box-shadow: 0 6px 28px var(--glow);
}

.pill {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	font-weight: 500;
	color: var(--text);
	background: var(--panel);
	border: 1px solid var(--line);
	padding: 11px 20px;
	border-radius: 999px;
	transition: border-color 0.2s ease, background-color 0.2s ease;
}
.pill:hover {
	text-decoration: none;
	border-color: var(--accent);
	background: var(--accent-soft);
}

.pill-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--accent);
	box-shadow: 0 0 10px var(--glow);
	animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.35; }
}

/* ---------- Sections ---------- */

.section { padding: 96px 0; }

.section-label {
	font-family: var(--font-display);
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--accent);
	margin: 0 0 12px;
}

.section-title {
	font-family: var(--font-display);
	font-size: clamp(26px, 3.6vw, 36px);
	font-weight: 700;
	line-height: 1.15;
	margin: 0 0 40px;
}

/* ---------- News ---------- */

.news-card {
	display: grid;
	grid-template-columns: 260px 1fr;
	gap: 0;
	background: var(--bg-raised);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
}

.news-art img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.news-body { padding: 36px 40px; }

.news-body h2 {
	font-family: var(--font-display);
	font-size: clamp(22px, 3vw, 28px);
	font-weight: 700;
	line-height: 1.2;
	margin: 14px 0 12px;
}

.news-body p { color: var(--muted); margin: 0 0 12px; max-width: 560px; }
.news-body .fine { font-size: 14px; margin-bottom: 0; }

.badge {
	display: inline-block;
	font-family: var(--font-display);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--accent);
	background: var(--accent-soft);
	border: 1px solid rgba(0, 184, 255, 0.3);
	border-radius: 999px;
	padding: 5px 14px;
}

/* ---------- Music / artists ---------- */

.artist-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.artist-card {
	background: var(--bg-raised);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.artist-card:hover {
	transform: translateY(-4px);
	border-color: rgba(0, 184, 255, 0.4);
	box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45), 0 0 24px rgba(0, 184, 255, 0.08);
}

.artist-art {
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: #0d1420;
}

.artist-art img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.artist-card:hover .artist-art img { transform: scale(1.03); }

.artist-art--contain { background: #fff; }
.artist-art--contain img { object-fit: contain; padding: 14%; }

.artist-info { padding: 24px 24px 26px; }

.artist-info h3 {
	font-family: var(--font-display);
	font-size: 20px;
	font-weight: 700;
	margin: 0 0 8px;
}

.artist-info p {
	color: var(--muted);
	font-size: 14.5px;
	margin: 0 0 18px;
	min-height: 3.2em;
}

.artist-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.link-chip {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 13px;
	font-weight: 500;
	color: var(--text);
	background: var(--panel);
	border: 1px solid var(--line);
	border-radius: 999px;
	padding: 7px 14px;
	transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.link-chip svg { width: 16px; height: 16px; flex: none; color: var(--accent); }

.link-chip:hover {
	text-decoration: none;
	border-color: var(--accent);
	background: var(--accent-soft);
}

.licensing-note {
	margin: 40px 0 0;
	font-size: 14.5px;
	color: var(--muted);
	max-width: 640px;
}

/* ---------- Contact ---------- */

.section--contact {
	border-top: 1px solid var(--line);
	background:
		radial-gradient(ellipse at 50% 120%, rgba(0, 184, 255, 0.07), transparent 60%),
		var(--bg);
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	max-width: 760px;
}

.contact-card {
	display: flex;
	flex-direction: column;
	gap: 6px;
	background: var(--bg-raised);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 28px 32px;
	transition: border-color 0.2s ease, transform 0.2s ease;
}

.contact-card:hover {
	text-decoration: none;
	border-color: var(--accent);
	transform: translateY(-2px);
}

.contact-kind {
	font-family: var(--font-display);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--muted);
}

.contact-mail {
	font-size: 17px;
	font-weight: 600;
	color: var(--accent);
	word-break: break-all;
}

/* ---------- Footer ---------- */

footer {
	border-top: 1px solid var(--line);
	padding: 32px 0;
}

.footer-inner {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 8px;
	font-size: 13px;
	color: var(--muted);
	letter-spacing: 0.04em;
}

/* ---------- Reveal animation ---------- */

/* Only hide reveal elements when JS is running (main.js adds the .js class). */
.js .reveal {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.js .reveal.visible {
	opacity: 1;
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	.js .reveal { opacity: 1; transform: none; transition: none; }
	.hero-bg { animation: none; }
	.pill-dot { animation: none; }
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
	.artist-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
	.section { padding: 64px 0; }

	.container, .header-inner { width: min(1080px, 100% - 40px); }

	#navToggle { display: block; }

	#siteNav {
		position: fixed;
		top: var(--header-h);
		left: 0;
		right: 0;
		flex-direction: column;
		gap: 4px;
		padding: 12px 20px 20px;
		background: rgba(6, 10, 18, 0.96);
		-webkit-backdrop-filter: blur(12px);
		backdrop-filter: blur(12px);
		border-bottom: 1px solid var(--line);
		transform: translateY(-8px);
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
	}

	#siteNav.open {
		opacity: 1;
		transform: none;
		visibility: visible;
	}

	#siteNav a { padding: 12px 14px; font-size: 16px; }

	.hero { min-height: 84vh; }
	.hero-logo { width: 217px; margin-bottom: 24px; }

	.news-card { grid-template-columns: 1fr; }
	.news-art { max-height: 240px; }
	.news-body { padding: 28px 24px; }

	.artist-grid { grid-template-columns: 1fr; }
	.artist-info p { min-height: 0; }

	.contact-grid { grid-template-columns: 1fr; }

	.footer-inner { justify-content: center; text-align: center; }
}
