/*
Theme Name: Yacoby
Theme URI: https://yacoby.com
Description: Custom theme for yacoby.com — cinematic dark aesthetic with grain overlay and scroll reveals.
Author: Yacoby
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
License: GNU General Public License v3 or later
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Text Domain: yacoby
*/

/* =============================================
   DESIGN TOKENS
   ============================================= */
:root {
	--bg:          #0a0a0a;
	--pink-light:  #F2C5D2;
	--pink-mid:    #E8A0B4;
	--red:         #D63030;
	--white:       #ffffff;
	--off-white:   #e8e4dc;
	--muted:       rgba(232, 228, 220, 0.55);

	--font-display: 'Bebas Neue', sans-serif;
	--font-body:    'DM Sans', sans-serif;
	--font-italic:  'Playfair Display', serif;

	--ease:        cubic-bezier(0.16, 1, 0.3, 1);
	--ease-fast:   cubic-bezier(0.4, 0, 0.2, 1);
}

/* =============================================
   RESET
   ============================================= */
*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	background-color: var(--bg);
	color: var(--off-white);
	font-family: var(--font-body);
	font-size: 17px;
	line-height: 1.75;
	overflow-x: hidden;
	position: relative;
	-webkit-font-smoothing: antialiased;
}

p { font-size: 17px; }

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
main a:not([class]) { color: inherit; }
button, input, select, textarea { font-family: inherit; }

/* =============================================
   GRAIN OVERLAY
   ============================================= */
body::after {
	content: '';
	position: fixed;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	pointer-events: none;
	z-index: 9000;
	opacity: 0.55;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.15'/%3E%3C/svg%3E");
	background-size: 180px 180px;
	mix-blend-mode: screen;
	animation: grain 0.65s steps(1) infinite;
}

@keyframes grain {
	0%   { transform: translate(0,   0  ); }
	14%  { transform: translate(-4%, -6%); }
	28%  { transform: translate( 5%,  3%); }
	43%  { transform: translate(-2%,  6%); }
	57%  { transform: translate( 4%, -3%); }
	71%  { transform: translate(-5%,  2%); }
	86%  { transform: translate( 3%, -5%); }
	100% { transform: translate(-1%,  4%); }
}

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
	letter-spacing: 0.04em;
	line-height: 0.95;
	text-transform: uppercase;
	color: var(--white);
}

.italic-quote, blockquote {
	font-family: var(--font-italic);
	font-style: italic;
}

/* =============================================
   UTILITIES
   ============================================= */
.container {
	max-width: 1200px;
	margin-inline: auto;
	padding-inline: 2rem;
}

.text-pink  { color: var(--pink-light); }
.text-red   { color: var(--red); }
.text-muted { color: var(--muted); }

/* =============================================
   SCROLL REVEAL
   ============================================= */
.reveal,
.reveal-left,
.reveal-right {
	opacity: 0;
	will-change: opacity, transform;
	transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

.reveal       { transform: translateY(44px); }
.reveal-left  { transform: translateX(-56px); }
.reveal-right { transform: translateX(56px); }

.reveal.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible {
	opacity: 1;
	transform: translate(0, 0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.32s; }
.delay-4 { transition-delay: 0.44s; }
.delay-5 { transition-delay: 0.56s; }

/* =============================================
   SITE HEADER / NAV
   ============================================= */
.site-header {
	position: fixed;
	inset-block-start: 0;
	inset-inline: 0;
	z-index: 8000;
	padding: 1.5rem 2.5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: background 0.4s var(--ease), border-color 0.4s;
	border-bottom: 1px solid transparent;
}

.site-header.scrolled {
	background: rgba(10, 10, 10, 0.9);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-bottom-color: rgba(242, 197, 210, 0.1);
}

.site-logo {
	font-family: var(--font-display);
	font-size: 2rem;
	letter-spacing: 0.18em;
	color: var(--pink-light);
	text-transform: uppercase;
	z-index: 1;
}

.site-nav {
	display: flex;
	gap: 2.75rem;
	list-style: none;
}

.site-nav a {
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--off-white);
	transition: color 0.25s;
	position: relative;
}

.site-nav a::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 0;
	height: 1px;
	background: var(--pink-mid);
	transition: width 0.3s var(--ease);
}

.site-nav a:hover       { color: var(--pink-light); }
.site-nav a:hover::after { width: 100%; }

/* Hamburger */
.nav-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 6px;
	z-index: 8500;
}

.nav-toggle span {
	display: block;
	width: 24px;
	height: 1px;
	background: var(--off-white);
	transition: transform 0.3s var(--ease), opacity 0.3s;
}

.nav-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* =============================================
   BUTTONS / CTA
   ============================================= */
.btn {
	display: inline-block;
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	padding: 0.875rem 2rem;
	transition: background 0.3s, color 0.3s, transform 0.2s;
	cursor: pointer;
	border: none;
}

.btn-primary {
	background: var(--pink-light);
	color: var(--bg);
}

.btn-primary:hover {
	background: var(--pink-mid);
	transform: translateY(-2px);
}

.btn-outline {
	background: transparent;
	color: var(--pink-light);
	border: 1px solid var(--pink-light);
}

.btn-outline:hover {
	background: rgba(242, 197, 210, 0.08);
	transform: translateY(-2px);
}

.btn-red {
	background: var(--red);
	color: var(--white);
}

.btn-red:hover {
	background: #c02828;
	transform: translateY(-2px);
}

/* =============================================
   HOME — HERO
   ============================================= */
.hero {
	min-height: 100vh;
	min-height: 100svh;
	display: grid;
	grid-template-columns: 1fr 1fr;
	position: relative;
	overflow: hidden;
}

.hero-left {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 9rem 3.5rem 6rem;
	position: relative;
	z-index: 1;
}

.hero-right {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 9rem 3.5rem 6rem;
	border-left: 1px solid rgba(242, 197, 210, 0.12);
	position: relative;
	z-index: 1;
}

.hero-eyebrow {
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--pink-mid);
	margin-bottom: 1.25rem;
}

.hero-title {
	font-family: var(--font-display);
	font-size: clamp(5.5rem, 10vw, 9.5rem);
	line-height: 0.9;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: var(--white);
}

.hero-title .line-accent {
	color: var(--pink-light);
	display: block;
}

.hero-subtitle {
	font-family: var(--font-italic);
	font-style: italic;
	font-size: clamp(1rem, 1.8vw, 1.2rem);
	color: var(--pink-mid);
	margin-top: 2rem;
	max-width: 320px;
	line-height: 1.5;
}

/* Countdown */
.countdown-label {
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--pink-mid);
	margin-bottom: 1.5rem;
}

.countdown {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0.75rem;
	margin-bottom: 3rem;
}

.countdown-item { text-align: center; }

.countdown-num {
	font-family: var(--font-display);
	font-size: clamp(3rem, 5.5vw, 5rem);
	line-height: 1;
	color: var(--white);
	display: block;
}

.countdown-unit {
	font-size: 0.58rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--pink-mid);
	margin-top: 0.3rem;
	display: block;
}

.divider-line {
	width: 100%;
	height: 1px;
	background: linear-gradient(to right, transparent, var(--pink-mid), transparent);
	margin: 2rem 0;
}

.hero-vertical-text {
	position: absolute;
	right: 1.5rem;
	bottom: 3rem;
	font-size: 0.58rem;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: rgba(232, 160, 180, 0.3);
	writing-mode: vertical-rl;
}

/* =============================================
   HOME — TEASER
   ============================================= */
.teaser {
	padding: 7rem 0;
	border-top: 1px solid rgba(242, 197, 210, 0.07);
}

.teaser-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 6rem;
	align-items: center;
}

.teaser-body {
	font-size: 1.125rem;
	line-height: 1.85;
	color: var(--muted);
	margin-bottom: 2rem;
}

/* =============================================
   SECTION SHARED
   ============================================= */
.section {
	padding: 7rem 0;
}

.section-label {
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--pink-mid);
	margin-bottom: 1rem;
}

.section-title {
	font-family: var(--font-display);
	font-size: clamp(3rem, 6vw, 5.5rem);
	line-height: 0.95;
	text-transform: uppercase;
	color: var(--white);
	margin-bottom: 2rem;
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-hero {
	min-height: 100vh;
	min-height: 100svh;
	display: grid;
	grid-template-columns: 1fr 1fr;
	padding-top: 80px;
}

.about-image-side {
	position: relative;
	overflow: hidden;
	min-height: 65vh;
	background: #110810;
}

.about-image-side img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(15%) contrast(1.1);
}

.about-placeholder {
	width: 100%;
	height: 100%;
	min-height: 65vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(145deg, #1a0810 0%, #0a0a0a 100%);
}

.about-placeholder-letter {
	font-family: var(--font-display);
	font-size: 12rem;
	color: rgba(242, 197, 210, 0.06);
	letter-spacing: 0.1em;
}

.about-image-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to right, transparent 55%, var(--bg) 100%);
}

.about-content-side {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 5rem 4rem 5rem 3rem;
}

.about-content-side p {
	font-size: 1.125rem;
	line-height: 1.85;
	color: var(--muted);
	margin-bottom: 1.5rem;
	max-width: 480px;
}

.about-quote {
	font-family: var(--font-italic);
	font-style: italic;
	font-size: 1.4rem;
	color: var(--pink-light);
	line-height: 1.45;
	padding-left: 1.5rem;
	border-left: 2px solid var(--red);
	margin: 2.5rem 0;
	max-width: 440px;
}

/* =============================================
   LIKE A BEE PAGE
   ============================================= */
.bee-section {
	min-height: 100vh;
	min-height: 100svh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 9rem 2rem 6rem;
	text-align: center;
}

.bee-track-title {
	font-family: var(--font-display);
	font-size: clamp(4rem, 10vw, 8rem);
	letter-spacing: 0.04em;
	color: var(--white);
	margin-bottom: 0.5rem;
}

.bee-track-subtitle {
	font-family: var(--font-italic);
	font-style: italic;
	font-size: 1.1rem;
	color: var(--pink-mid);
	margin-bottom: 3rem;
}

.spotify-wrap {
	width: 100%;
	max-width: 680px;
	margin: 0 auto 3rem;
}

.spotify-placeholder {
	width: 100%;
	height: 160px;
	border: 1px solid rgba(242, 197, 210, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
}

.spotify-placeholder svg { opacity: 0.4; }

.spotify-placeholder span {
	font-size: 0.72rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--muted);
}

.bee-description {
	max-width: 560px;
	margin: 0 auto 3rem;
	font-size: 1.125rem;
	line-height: 1.85;
	color: var(--muted);
}

.bee-actions {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

/* =============================================
   JOIN THE CIRCLE PAGE
   ============================================= */
.join-section {
	min-height: 100vh;
	min-height: 100svh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 9rem 2rem 6rem;
	text-align: center;
}

.join-quote {
	font-family: var(--font-italic);
	font-style: italic;
	font-size: 1.35rem;
	color: var(--pink-light);
	line-height: 1.45;
	padding: 0 1.5rem;
	border-left: 2px solid var(--red);
	text-align: left;
	max-width: 420px;
	margin: 2rem auto;
}

.join-body {
	color: var(--muted);
	max-width: 400px;
	margin: 0 auto 0.5rem;
	line-height: 1.8;
}

.join-form {
	width: 100%;
	max-width: 460px;
	margin: 2.5rem auto 0;
}

.join-form .field {
	position: relative;
	margin-bottom: 1.75rem;
}

.join-form input[type="email"],
.join-form input[type="text"] {
	width: 100%;
	background: transparent;
	border: none;
	border-bottom: 1px solid rgba(242, 197, 210, 0.25);
	color: var(--off-white);
	font-family: var(--font-body);
	font-size: 1rem;
	padding: 0.85rem 0;
	outline: none;
	transition: border-color 0.3s;
}

.join-form input::placeholder {
	color: rgba(232, 228, 220, 0.28);
	letter-spacing: 0.08em;
	font-size: 0.9rem;
}

.join-form input:focus {
	border-bottom-color: var(--pink-light);
}

.join-form .submit-btn {
	width: 100%;
	background: var(--red);
	color: var(--white);
	font-family: var(--font-body);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.26em;
	text-transform: uppercase;
	border: none;
	padding: 1.15rem 2rem;
	cursor: pointer;
	transition: background 0.3s, transform 0.2s;
	margin-top: 0.5rem;
}

.join-form .submit-btn:hover {
	background: #c02828;
	transform: translateY(-2px);
}

.join-fine-print {
	font-size: 0.65rem;
	letter-spacing: 0.1em;
	color: rgba(232, 228, 220, 0.28);
	margin-top: 1.25rem;
}

.form-notice {
	padding: 1rem 1.5rem;
	margin-bottom: 1.5rem;
	font-size: 0.85rem;
	letter-spacing: 0.04em;
}

.form-notice.success {
	border: 1px solid rgba(242, 197, 210, 0.3);
	color: var(--pink-light);
}

.form-notice.error {
	border: 1px solid rgba(214, 48, 48, 0.35);
	color: var(--red);
}

/* =============================================
   404 PAGE
   ============================================= */
.error-page {
	min-height: 100vh;
	min-height: 100svh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 2rem;
	position: relative;
	overflow: hidden;
}

.error-bg-num {
	position: absolute;
	font-family: var(--font-display);
	font-size: clamp(12rem, 25vw, 20rem);
	line-height: 1;
	color: rgba(242, 197, 210, 0.04);
	pointer-events: none;
	user-select: none;
}

/* =============================================
   SITE FOOTER
   ============================================= */
.site-footer {
	padding: 2.5rem 2.5rem;
	border-top: 1px solid rgba(242, 197, 210, 0.08);
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 1.5rem;
	position: relative;
	z-index: 1;
}

.footer-logo {
	font-family: var(--font-display);
	font-size: 1.5rem;
	letter-spacing: 0.18em;
	color: var(--pink-light);
}

.footer-links {
	display: flex;
	gap: 2.25rem;
	list-style: none;
}

.footer-links a {
	font-size: 0.8125rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--muted);
	transition: color 0.2s;
}

.footer-links a:hover { color: var(--pink-light); }

.footer-copy {
	font-size: 0.62rem;
	letter-spacing: 0.08em;
	color: rgba(232, 228, 220, 0.2);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
	.hero { grid-template-columns: 1fr; }

	.hero-left {
		padding: 8rem 1.75rem 2.5rem;
		min-height: 55vh;
		min-height: 55svh;
		justify-content: flex-end;
	}

	.hero-right {
		padding: 2.5rem 1.75rem 5rem;
		border-left: none;
		border-top: 1px solid rgba(242, 197, 210, 0.1);
	}

	.teaser-grid { grid-template-columns: 1fr; gap: 4rem; }

	.about-hero { grid-template-columns: 1fr; }

	.about-image-side { min-height: 50vh; min-height: 50svh; }

	.about-content-side { padding: 3rem 1.75rem; }

	.site-nav {
		display: none;
		position: fixed;
		inset: 0;
		background: rgba(10, 10, 10, 0.97);
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 3rem;
		z-index: 7500;
	}

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

	.site-nav a { font-size: 0.9rem; }

	.nav-toggle { display: flex; }

	.site-footer {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.footer-links { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 480px) {
	.countdown { gap: 0.4rem; }
	.countdown-num { font-size: 2.5rem; }
	.bee-actions { flex-direction: column; align-items: center; }
}

/* =============================================
   HEADER — INNER LAYOUT + RIGHT GROUP
   ============================================= */
.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 48px;
	gap: 24px;
}

.site-header {
	align-items: center;
}

.header-right {
	display: flex;
	align-items: center;
	gap: 2.25rem;
	flex-shrink: 0;
}

/* =============================================
   NAV DROPDOWN
   ============================================= */
.has-dropdown {
	position: relative;
}

.dropdown-arrow {
	font-size: 0.5rem;
	margin-left: 0.3rem;
	vertical-align: middle;
	opacity: 0.6;
	display: inline-block;
	transition: transform 0.2s;
}

.has-dropdown:hover .dropdown-arrow,
.has-dropdown:focus-within .dropdown-arrow {
	transform: rotate(180deg);
}

/* Invisible bridge — lets the mouse travel from nav item into dropdown */
.nav-dropdown::before {
	content: '';
	position: absolute;
	top: -10px;
	left: 0;
	right: 0;
	height: 10px;
}

.nav-dropdown {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 200px;
	background: #0a0a0a;
	border: 1px solid rgba(242, 197, 210, 0.12);
	padding: 8px 0;
	list-style: none;
	z-index: 9999;
}

.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
	display: block;
}

.nav-dropdown li a {
	display: block;
	padding: 12px 20px;
	font-size: 11px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(242, 197, 210, 0.55);
	white-space: nowrap;
	text-decoration: none;
	transition: color 0.2s;
}

.nav-dropdown li a::after { display: none; }

.nav-dropdown li a:hover { color: #F2C5D2; }

/* =============================================
   SOCIAL ICONS
   ============================================= */
.header-social {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
}

.social-icon {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	border: 1px solid rgba(242, 197, 210, 0.18);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	overflow: hidden;
	color: #F2C5D2;
	text-decoration: none;
	transition: border-color 0.3s;
	line-height: 0;
}

.social-icon svg {
	width: 12px !important;
	height: 12px !important;
	min-width: 12px;
	max-width: 12px !important;
	min-height: 12px;
	max-height: 12px !important;
	fill: #F2C5D2;
	display: block;
	flex-shrink: 0;
}

.social-icon:hover {
	border-color: #D63030;
}

.social-icon:hover svg {
	fill: #D63030;
}

/* =============================================
   FOOTER REDESIGN (top/bottom rows)
   ============================================= */
.site-footer {
	padding: 2.5rem 2.5rem 2rem;
	border-top: 1px solid rgba(242, 197, 210, 0.08);
	position: relative;
	z-index: 1;
}

.footer-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 1.75rem;
	margin-bottom: 1.75rem;
	border-bottom: 1px solid rgba(242, 197, 210, 0.06);
}

.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 1rem;
}

.footer-social {
	display: flex;
	align-items: center;
	gap: 1.25rem;
}

/* =============================================
   MUSIC PAGE
   ============================================= */
.music-section {
	padding: 9rem 0 7rem;
	min-height: 100vh;
	min-height: 100svh;
}

.music-section > .container {
	text-align: center;
}

.music-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	margin-top: 5rem;
	border: 1px solid rgba(242, 197, 210, 0.12);
}

.music-card {
	padding: 3.5rem 3rem 4rem;
	position: relative;
	display: flex;
	flex-direction: column;
	text-align: left;
}

.music-card--upcoming {
	background: linear-gradient(145deg, #140610 0%, #0a0a0a 100%);
	border-right: 1px solid rgba(242, 197, 210, 0.12);
}

.music-card--out {
	background: #0a0a0a;
}

.music-card-badge {
	display: inline-block;
	font-size: 0.58rem;
	font-weight: 600;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--pink-mid);
	border: 1px solid rgba(232, 160, 180, 0.3);
	padding: 0.35rem 0.9rem;
	margin-bottom: 2.25rem;
	align-self: flex-start;
}

.music-card-badge--out {
	color: var(--off-white);
	border-color: rgba(232, 228, 220, 0.2);
}

.music-card-title {
	font-family: var(--font-display);
	font-size: clamp(3.5rem, 5.5vw, 5.5rem);
	line-height: 0.9;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--white);
	margin-bottom: 1.25rem;
}

.music-card-title span { color: var(--pink-light); }

.music-card-status {
	font-size: 0.9375rem;
	font-weight: 500;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: 2.5rem;
}

/* Mini countdown */
.countdown-mini {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0.5rem;
	margin-bottom: 2.5rem;
	padding-bottom: 2.5rem;
	border-bottom: 1px solid rgba(242, 197, 210, 0.08);
}

.countdown-mini-item { text-align: center; }

.countdown-mini-num {
	font-family: var(--font-display);
	font-size: clamp(2rem, 3.5vw, 3.5rem);
	line-height: 1;
	color: var(--white);
	display: block;
}

.countdown-mini-unit {
	font-size: 0.48rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--pink-mid);
	margin-top: 0.25rem;
	display: block;
}

/* Streaming buttons */
.music-card-links {
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
	margin-top: auto;
}

.music-stream-btn {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	padding: 0.8rem 1.25rem;
	border: 1px solid rgba(242, 197, 210, 0.14);
	font-size: 0.8125rem;
	font-weight: 500;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--off-white);
	transition: border-color 0.25s, color 0.25s, background 0.25s;
}

.music-stream-btn:hover {
	border-color: var(--pink-light);
	color: var(--pink-light);
	background: rgba(242, 197, 210, 0.04);
}

/* =============================================
   LIKE A BEE — PLATFORM CARDS + EMBED
   ============================================= */
.stream-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	width: 100%;
	max-width: 900px;
	margin: 0 auto 3.5rem;
}

.stream-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 2.75rem 1.5rem 2.5rem;
	border: 1px solid rgba(242, 197, 210, 0.12);
	background: rgba(255, 255, 255, 0.02);
	text-align: center;
	gap: 0.9rem;
	transition: transform 0.25s var(--ease), border-color 0.25s, background 0.25s;
	cursor: pointer;
}

.stream-card:hover { transform: translateY(-5px); }

.stream-card--spotify:hover  { border-color: #1DB954; background: rgba(29, 185, 84, 0.06); }
.stream-card--youtube:hover  { border-color: #FF0000; background: rgba(255, 0, 0, 0.06); }
.stream-card--apple:hover    { border-color: #fc3c44; background: rgba(252, 60, 68, 0.06); }

.stream-card-icon {
	width: 76px;
	height: 76px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0.75rem;
	flex-shrink: 0;
}

.stream-card--spotify .stream-card-icon { background: #1DB954; color: #fff; }
.stream-card--youtube .stream-card-icon { background: #FF0000; color: #fff; }
.stream-card--apple   .stream-card-icon { background: #fc3c44; color: #fff; }

.stream-card-platform {
	font-family: var(--font-display);
	font-size: 1.6rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--white);
	line-height: 1;
}

.stream-card-btn {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--off-white);
	border: 1px solid rgba(242, 197, 210, 0.25);
	padding: 0.55rem 1.4rem;
	margin-top: 0.5rem;
	transition: border-color 0.25s, color 0.25s;
}

.stream-card:hover .stream-card-btn {
	border-color: rgba(242, 197, 210, 0.7);
	color: var(--pink-light);
}

.bee-tap-note {
	font-size: 0.75rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--muted);
	text-align: center;
	margin: 0 auto 2.5rem;
}

.bee-video-wrap {
	width: 100%;
	max-width: 900px;
	margin: 0 auto 3rem;
}

.spotify-wrap-full {
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
}

/* =============================================
   RESPONSIVE — new additions
   ============================================= */
@media (max-width: 900px) {
	.header-right { gap: 0; }
	.header-social { display: none; }

	.music-grid { grid-template-columns: 1fr; }
	.music-card--upcoming {
		border-right: none;
		border-bottom: 1px solid rgba(242, 197, 210, 0.12);
	}
	.music-card { padding: 2.75rem 1.75rem 3rem; }

	.stream-cards { grid-template-columns: 1fr; max-width: 400px; }
	.spotify-wrap-full { padding: 0 1.75rem; }

	.footer-top {
		flex-direction: column;
		align-items: center;
		gap: 1.5rem;
		text-align: center;
	}
	.footer-bottom {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
	.footer-links { flex-wrap: wrap; justify-content: center; }

	/* Mobile dropdown in fullscreen nav */
	.has-dropdown .nav-dropdown {
		display: none;
		position: static;
		transform: none;
		background: transparent;
		border: none;
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
		padding: 0.5rem 0 0;
	}
	.has-dropdown.dropdown-open .nav-dropdown { display: block; }
	.has-dropdown .nav-dropdown li a {
		font-size: 0.75rem;
		padding: 0.5rem 1.5rem;
		color: var(--muted);
	}
}
