/* ═══════════════════════════════════════════════════════
   Keearah — Official Site Styles
   Garden at Midnight theme: dark romance + botanical color
═══════════════════════════════════════════════════════ */

/* ── Custom Properties ────────────────────────────── */
:root {
  --bg-deep:      #060214;
  --bg-mid:       #0e0526;
  --bg-card:      rgba(255 255 255 / 0.04);
  --bg-card-h:    rgba(255 255 255 / 0.08);
  --border:       rgba(255 255 255 / 0.08);
  --border-glow:  rgba(255, 45, 127, 0.35);

  --pink:         #ff2d7f;
  --pink-light:   #ff79c6;
  --coral:        #fb7185;
  --purple:       #a855f7;
  --lavender:     #c084fc;
  --gold:         #fbbf24;
  --honey:        #f59e0b;
  --green:        #34d399;
  --orange:       #fb923c;

  --white:        #ffffff;
  --cream:        #fff5f0;
  --text-muted:   rgba(255 255 255 / 0.58);
  --text-dim:     rgba(255 255 255 / 0.35);

  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --radius-xl:    40px;

  --shadow-glow:  0 0 40px rgba(255, 45, 127, 0.2);
  --shadow-card:  0 4px 32px rgba(0, 0, 0, 0.45);

  --transition:   0.3s 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: var(--bg-deep);
  color: var(--white);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
}
img, svg, iframe { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Scrollbar ────────────────────────────────────── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--pink); border-radius: 4px; }

/* ── Selection ────────────────────────────────────── */
::selection { background: var(--pink); color: var(--white); }

/* ── Utility ──────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Floating Petals ──────────────────────────────── */
.petals-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.petal {
  position: absolute;
  top: -60px;
  border-radius: 50% 0 50% 0;
  opacity: 0;
  animation: petalFall linear infinite;
  will-change: transform, opacity;
}
@keyframes petalFall {
  0%   { transform: translateY(0) rotate(0deg) translateX(0); opacity: 0; }
  8%   { opacity: 0.7; }
  92%  { opacity: 0.5; }
  100% { transform: translateY(110vh) rotate(720deg) translateX(40px); opacity: 0; }
}

/* ── Navigation ───────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
  padding: 0 24px;
}
.nav.scrolled {
  background: rgba(6, 2, 20, 0.88);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  font-style: italic;
  background: linear-gradient(135deg, var(--pink), var(--lavender), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}
.nav-links {
  display: flex;
  gap: 40px;
}
.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255 255 255 / 0.75);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--pink);
  transform: scaleX(0);
  transition: transform var(--transition);
  border-radius: 1px;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── Mobile Drawer ────────────────────────────────── */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  height: 100vh;
  background: rgba(14, 5, 38, 0.97);
  backdrop-filter: blur(24px);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  border-left: 1px solid var(--border);
}
.mobile-drawer.open {
  transform: translateX(0);
}
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.drawer-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}
.drawer-close {
  position: absolute;
  top: 24px;
  right: 24px;
  color: var(--text-muted);
  font-size: 1.4rem;
  transition: color var(--transition);
}
.drawer-close:hover { color: var(--pink); }
.drawer-flower {
  width: 120px;
  margin-bottom: 48px;
  opacity: 0.7;
}
.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 32px;
  text-align: center;
}
.drawer-links a {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--transition);
}
.drawer-links a:hover { color: var(--pink); }

/* ── Buttons ──────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  font-size: 1rem;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--pink), #9b30ff);
  color: var(--white);
  box-shadow: 0 4px 24px rgba(255, 45, 127, 0.4);
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 32px rgba(255, 45, 127, 0.55);
}
.btn-primary:active { transform: translateY(0) scale(0.98); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255 255 255 / 0.25);
}
.btn-ghost:hover {
  border-color: var(--pink);
  color: var(--pink);
  transform: translateY(-2px);
}

/* ── Section Shared ───────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--white) 40%, var(--pink-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto;
}

/* ── Scroll reveal ────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(155, 48, 255, 0.22) 0%, transparent 70%),
              radial-gradient(ellipse 60% 50% at 20% 80%, rgba(255, 45, 127, 0.15) 0%, transparent 60%),
              radial-gradient(ellipse 50% 40% at 80% 70%, rgba(251, 146, 60, 0.12) 0%, transparent 60%),
              var(--bg-deep);
}

/* Hero flora positions */
.hero-flora { position: absolute; inset: 0; pointer-events: none; }
.hf { position: absolute; }
.hf-1 { width: 380px; left: -80px; top: 50%; transform: translateY(-50%); animation: floatSway 8s ease-in-out infinite; }
.hf-2 { width: 280px; right: -40px; top: 5%; animation: floatSway 10s ease-in-out infinite 1.5s; }
.hf-3 { width: 200px; left: 8%; bottom: 5%; animation: floatSway 9s ease-in-out infinite 3s; }
.hf-4 { width: 130px; right: 12%; bottom: 20%; animation: floatSway 7s ease-in-out infinite 0.8s; }
.hf-5 { width: 120px; left: 20%; top: 8%; animation: floatSway 11s ease-in-out infinite 2s; }
.hf-vine { width: 100%; bottom: 0; left: 0; opacity: 0.6; }
.hero-bee {
  width: 100px;
  position: absolute;
  top: 20%;
  right: 22%;
  animation: beeFloat 6s ease-in-out infinite, beeFly 20s linear infinite;
}
.wing { animation: wingFlap 0.18s ease-in-out infinite alternate; transform-origin: center; }

@keyframes floatSway {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33%       { transform: translateY(-14px) rotate(2deg); }
  66%       { transform: translateY(-7px) rotate(-1.5deg); }
}
@keyframes floatSway {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-16px) rotate(3deg); }
}
.hf-1 { animation: floatSwayL 8s ease-in-out infinite; }
@keyframes floatSwayL {
  0%, 100% { transform: translateY(-50%) rotate(0deg); }
  50%       { transform: translateY(calc(-50% - 16px)) rotate(3deg); }
}
@keyframes beeFloat {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50%       { transform: translateY(-18px) rotate(5deg); }
}
@keyframes beeFly {
  0%   { right: 22%; opacity: 0; }
  5%   { opacity: 1; }
  45%  { right: 70%; opacity: 1; }
  50%  { right: 70%; opacity: 0; }
  51%  { right: 5%; opacity: 0; }
  55%  { right: 5%; opacity: 1; }
  95%  { right: 22%; opacity: 1; }
  100% { right: 22%; opacity: 1; }
}
@keyframes wingFlap {
  from { transform: scaleY(1); }
  to   { transform: scaleY(0.6) skewX(5deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}

.hero-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(4rem, 14vw, 10rem);
  font-weight: 900;
  font-style: italic;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  background: linear-gradient(
    135deg,
    var(--white) 0%,
    var(--pink-light) 30%,
    var(--lavender) 60%,
    var(--gold) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 60px rgba(255, 45, 127, 0.3));
  animation: heroNameIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes heroNameIn {
  from { opacity: 0; transform: translateY(30px) scale(0.95); filter: blur(8px) drop-shadow(0 0 60px rgba(255,45,127,0.3)); }
  to   { opacity: 1; transform: translateY(0) scale(1); filter: drop-shadow(0 0 60px rgba(255,45,127,0.3)); }
}

.hero-tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: rgba(255 255 255 / 0.75);
  font-weight: 300;
  font-style: italic;
  margin-bottom: 48px;
  line-height: 1.55;
  animation: fadeUp 1s 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 1s 0.65s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.scroll-track {
  width: 2px;
  height: 50px;
  background: linear-gradient(to bottom, var(--pink), transparent);
  border-radius: 1px;
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: scaleY(1); opacity: 0.7; }
  50%       { transform: scaleY(0.5); opacity: 0.3; }
}

/* ═══════════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════════ */
.about {
  position: relative;
  padding: 120px 0;
  background: radial-gradient(ellipse 70% 60% at 80% 50%, rgba(168, 85, 247, 0.1) 0%, transparent 70%),
              var(--bg-mid);
  overflow: hidden;
}
.about-flowers {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.af-1 { position: absolute; width: 220px; left: -40px; top: 10%; animation: floatSway 9s ease-in-out infinite; }
.af-2 { position: absolute; width: 160px; right: 5%; bottom: 10%; animation: floatSway 11s ease-in-out infinite 2s; }
.af-bee { position: absolute; width: 70px; right: 20%; top: 15%; animation: beeFloat 7s ease-in-out infinite; }

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 28px;
  background: linear-gradient(135deg, var(--white), var(--pink-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about-text p {
  color: rgba(255 255 255 / 0.7);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 20px;
}
.about-songs-list {
  font-style: italic;
  color: rgba(255 255 255 / 0.55) !important;
  font-size: 0.95rem !important;
}
.about-socials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 36px;
}
.social-pill {
  padding: 8px 20px;
  border-radius: 40px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: all var(--transition);
}
.social-pill.tiktok { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); }
.social-pill.ig {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white;
}
.social-pill.yt { background: #ff0000; color: white; }
.social-pill:hover { transform: translateY(-2px); filter: brightness(1.15); }

.about-art {
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-big-art {
  width: 100%;
  max-width: 380px;
  filter: drop-shadow(0 20px 60px rgba(255, 45, 127, 0.25));
  animation: floatSway 10s ease-in-out infinite;
}

/* ═══════════════════════════════════════════════════
   MUSIC
═══════════════════════════════════════════════════ */
.music-section {
  position: relative;
  padding: 120px 0 80px;
  background: radial-gradient(ellipse 60% 50% at 30% 30%, rgba(255, 45, 127, 0.08) 0%, transparent 70%),
              var(--bg-deep);
  overflow: hidden;
}
.music-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.music-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(12px);
}
.music-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,45,127,0.06) 0%, rgba(168,85,247,0.06) 100%);
  opacity: 0;
  transition: opacity var(--transition);
}
.music-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-glow);
  box-shadow: var(--shadow-glow), var(--shadow-card);
}
.music-card:hover::before { opacity: 1; }

.music-card.featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto 1fr auto;
  gap: 0 40px;
  border-color: rgba(255, 45, 127, 0.25);
  background: linear-gradient(135deg, rgba(255,45,127,0.06) 0%, rgba(168,85,247,0.08) 100%),
              var(--bg-card);
}
.music-card.featured .card-badge {
  grid-column: 1 / -1;
}
.music-card.featured h3 {
  grid-column: 1;
  font-size: 3rem;
}
.music-card.featured .song-desc {
  grid-column: 1;
}
.music-card.featured .spotify-embed {
  grid-column: 2;
  grid-row: 2 / 5;
  align-self: start;
  margin: 0;
}
.music-card.featured .platform-links {
  grid-column: 1;
  grid-row: 4;
}

.card-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 40px;
  margin-bottom: 20px;
}
.card-flower {
  width: 56px;
  margin-bottom: 16px;
  animation: floatSway 6s ease-in-out infinite;
}
.music-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 900;
  font-style: italic;
  margin-bottom: 10px;
  background: linear-gradient(135deg, var(--white), var(--pink-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.song-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  font-style: italic;
  line-height: 1.55;
  margin-bottom: 24px;
}
.spotify-embed {
  margin: 0 -8px 24px;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.spotify-embed iframe {
  border-radius: var(--radius-md);
}
.platform-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.plt {
  padding: 6px 14px;
  border-radius: 40px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all var(--transition);
  border: 1px solid transparent;
}
.plt:hover { transform: translateY(-2px) scale(1.04); filter: brightness(1.1); }
.plt.spotify   { background: #1db954; color: #000; }
.plt.apple     { background: linear-gradient(135deg, #fc5c7d, #6a3093); color: #fff; }
.plt.amazon    { background: #ff9900; color: #111; }
.plt.ytmusic   { background: #ff0000; color: #fff; }
.plt.youtube   { background: #ff0000; color: #fff; border: 2px solid rgba(255,255,255,0.2); }
.plt.pandora   { background: #224099; color: #fff; }
.plt.tidal     { background: #000; color: #fff; border: 1px solid rgba(255,255,255,0.2); }
.plt.soundcloud { background: #ff5500; color: #fff; }

.music-flora {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  pointer-events: none;
  opacity: 0.5;
}

/* ═══════════════════════════════════════════════════
   VIDEO
═══════════════════════════════════════════════════ */
.video-section {
  padding: 120px 0;
  background: radial-gradient(ellipse 70% 60% at 50% 100%, rgba(155, 48, 255, 0.12) 0%, transparent 70%),
              var(--bg-mid);
  overflow: hidden;
}
.video-frame {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.video-flowers { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.vf { position: absolute; width: 160px; }
.vf-l { left: -60px; top: 50%; transform: translateY(-50%); animation: floatSway 9s ease-in-out infinite; }
.vf-r { right: -60px; top: 50%; transform: translateY(-50%); animation: floatSway 11s ease-in-out infinite 2s; }

.video-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 0 80px rgba(168, 85, 247, 0.3), var(--shadow-card);
  border: 1px solid rgba(168, 85, 247, 0.25);
  aspect-ratio: 16 / 9;
  z-index: 2;
}
.video-wrapper iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

/* ═══════════════════════════════════════════════════
   CONNECT
═══════════════════════════════════════════════════ */
.connect-section {
  position: relative;
  padding: 120px 0;
  background: radial-gradient(ellipse 60% 50% at 70% 20%, rgba(255, 45, 127, 0.1) 0%, transparent 70%),
              radial-gradient(ellipse 50% 40% at 20% 80%, rgba(52, 211, 153, 0.08) 0%, transparent 60%),
              var(--bg-deep);
  overflow: hidden;
}
.connect-flowers {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.cf-1 { position: absolute; width: 240px; right: -50px; top: 5%; animation: floatSway 10s ease-in-out infinite; }
.cf-2 { position: absolute; width: 190px; left: -40px; bottom: 10%; animation: floatSway 8s ease-in-out infinite 1.5s; }
.connect-bee {
  position: absolute;
  width: 80px;
  left: 10%;
  top: 20%;
  animation: beeFloat 8s ease-in-out infinite 1s;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 80px;
}
.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 40px 24px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}
.social-card::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--transition);
  border-radius: inherit;
}
.social-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
}
.social-card:hover::after { opacity: 1; }

.tiktok-card:hover   { border-color: rgba(105,201,208,0.4); box-shadow: 0 12px 40px rgba(105,201,208,0.15); }
.ig-card:hover       { border-color: rgba(193,53,132,0.5); box-shadow: 0 12px 40px rgba(193,53,132,0.2); }
.yt-card:hover       { border-color: rgba(255,0,0,0.4); box-shadow: 0 12px 40px rgba(255,0,0,0.15); }
.linktree-card:hover { border-color: rgba(67,160,71,0.4); box-shadow: 0 12px 40px rgba(67,160,71,0.15); }

.social-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
}
.social-icon svg { width: 26px; height: 26px; }
.tiktok-card   .social-icon { background: rgba(105,201,208,0.15); color: #69c9d0; }
.ig-card       .social-icon { background: linear-gradient(135deg,rgba(240,148,51,0.25),rgba(188,24,136,0.25)); color: #e1306c; }
.yt-card       .social-icon { background: rgba(255,0,0,0.15); color: #ff0000; }
.linktree-card .social-icon { background: rgba(67,160,71,0.15); color: #43a047; }

.social-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}
.social-handle {
  font-size: 0.83rem;
  color: var(--text-muted);
}

/* ── Newsletter ────────────────────────────────────── */
.newsletter {
  background: linear-gradient(135deg, rgba(255,45,127,0.08) 0%, rgba(168,85,247,0.1) 100%);
  border: 1px solid rgba(255,45,127,0.2);
  border-radius: var(--radius-xl);
  padding: 60px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
}
.newsletter::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,45,127,0.3), rgba(168,85,247,0.3));
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  pointer-events: none;
}
.newsletter-flower {
  width: 60px;
  margin: 0 auto 20px;
  animation: floatSway 6s ease-in-out infinite;
}
.newsletter h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--white), var(--pink-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.newsletter > p {
  color: var(--text-muted);
  margin-bottom: 32px;
}
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 460px;
  margin: 0 auto 16px;
}
.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  background: rgba(255 255 255 / 0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  color: var(--white);
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  transition: border-color var(--transition);
}
.newsletter-form input::placeholder { color: var(--text-dim); }
.newsletter-form input:focus { border-color: var(--pink); }
.newsletter-fine {
  font-size: 0.78rem;
  color: var(--text-dim) !important;
  margin-bottom: 0 !important;
}

/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
.footer {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.footer-flowers {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.footer-flowers svg { width: 100%; height: 100%; }
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
  z-index: 1;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  font-style: italic;
  background: linear-gradient(135deg, var(--pink), var(--lavender));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-copy {
  color: var(--text-dim);
  font-size: 0.85rem;
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--pink); }

/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .hf-1 { width: 240px; left: -60px; }
  .hf-2 { width: 180px; }
  .hero-bee { display: none; }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-art { order: -1; }
  .about-big-art { max-width: 260px; }
  .af-1, .af-2, .af-bee { display: none; }

  .music-card.featured {
    grid-column: 1;
    grid-template-columns: 1fr;
  }
  .music-card.featured h3 { font-size: 2rem; }
  .music-card.featured .spotify-embed { grid-column: 1; grid-row: auto; }
  .music-card.featured .platform-links { grid-column: 1; grid-row: auto; }

  .vf-l, .vf-r { display: none; }

  .cf-1, .cf-2, .connect-bee { display: none; }

  .newsletter { padding: 40px 24px; }
  .newsletter-form { flex-direction: column; }
}

@media (max-width: 600px) {
  .hero { padding: 100px 20px 60px; }
  .about, .music-section, .video-section, .connect-section { padding: 80px 0; }
  .section-header { margin-bottom: 40px; }

  .hf-3, .hf-4, .hf-5 { display: none; }

  .music-grid { gap: 16px; }
  .music-card { padding: 24px; }

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

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

@media (max-width: 400px) {
  .social-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: center; }
}
