/* --- Variables --- */
:root {
  --color-cream: #faf8f5;
  --color-warm-white: #fffef9;
  --color-gold: #c9a227;
  --color-sunflower: #e8b923;
  --color-soft-blue: #a8c5d4;
  --color-muted: #5a5a5a;
  --color-text: #2d2d2d;
  --overlay-dark: rgba(20, 18, 15, 0.65);
  --overlay-light: rgba(250, 248, 245, 0.88);
  --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.12);
  --radius: 16px;
  --font-display: "Playfair Display", "Libre Bodoni", serif;
  --font-body: "Libre Bodoni", system-ui, serif;
  --glass-bg: rgba(255, 254, 249, 0.72);
  --glass-border: rgba(255, 255, 255, 0.5);
}

/* --- Reset & base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-text);
  overflow-x: hidden;
}

/* --- Full-bleed background with blur + overlay --- */
.page-backdrop {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: url("flowers-web.jpg") center center / cover no-repeat;
  filter: blur(12px) brightness(0.92);
  transform: scale(1.08);
}

.page-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--overlay-light);
  mix-blend-mode: overlay;
}

/* --- Content container --- */
.page-content {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(1.5rem, 5vw, 3rem);
  padding-bottom: 2rem;
}

/* --- Hero --- */
.hero {
  text-align: center;
  padding: clamp(2rem, 8vw, 4rem) clamp(1.25rem, 4vw, 2rem);
  max-width: 480px;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--glass-border);
}

.album-art-wrap {
  margin: 0 auto 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  max-width: 280px;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.album-art {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.25rem);
  font-weight: 400;
  margin: 0 0 0.35em;
  color: var(--color-text);
  letter-spacing: 0.02em;
  line-height: 1.15;
}

.artist {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--color-muted);
  margin: 0 0 0.5rem;
}

.tagline {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--color-muted);
  margin: 0;
}

/* --- Sections --- */
.section {
  width: 100%;
  max-width: 520px;
  margin-top: 2.5rem;
  padding: 1.75rem 1.5rem;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--glass-border);
}

.section-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  margin: 0 0 1.25rem;
  color: var(--color-text);
}

.section-intro {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  color: var(--color-muted);
}

/* --- Audio placeholder --- */
.audio-player-placeholder {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 162, 39, 0.06);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 2px dashed rgba(201, 162, 39, 0.35);
  border-radius: 12px;
  padding: 1.25rem;
  text-align: center;
}

.audio-player-placeholder p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-muted);
}

/* --- Presave cards --- */
.presave-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.presave-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem;
  border-radius: 12px;
  text-decoration: none;
  color: var(--color-text);
  background: rgba(250, 248, 245, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 2px solid rgba(255, 255, 255, 0.4);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  min-height: 120px;
}

.presave-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 162, 39, 0.15);
}

.presave-icon {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.presave-spotify .presave-icon { color: #1DB954; }
.presave-apple .presave-icon { color: #fa243c; }

.presave-label {
  font-weight: 600;
  font-size: 1rem;
}

.presave-coming {
  font-size: 0.75rem;
  color: var(--color-muted);
  margin-top: 0.35rem;
}

/* --- Email placeholder --- */
.email-placeholder {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(168, 197, 212, 0.1);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 2px dashed rgba(168, 197, 212, 0.4);
  border-radius: 12px;
  padding: 0.1rem;
}

.email-placeholder p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-muted);
}

/* --- Listen section --- */
.listen-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.listen-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.listen-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  opacity: 0.95;
}

.listen-spotify {
  background: rgba(29, 185, 84, 0.85);
}

.listen-apple {
  background: rgba(250, 36, 60, 0.82);
}

.listen-youtube {
  background: rgba(255, 0, 0, 0.82);
}

.listen-label {
  letter-spacing: 0.02em;
}

/* --- Story / pull quote --- */
.pull-quote {
  margin: 1.5rem 0;
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--color-gold);
  background: rgba(250, 248, 245, 0.8);
  font-style: italic;
  color: var(--color-text);
}

/* --- Lyrics --- */
.lyrics-note {
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  color: var(--color-muted);
}

.lyrics-block {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.6;
}

.lyrics-block p {
  margin: 0 0 1rem;
}

/* --- Street team --- */
.street-team-list {
  margin: 0;
  padding-left: 1.2rem;
  font-size: 0.95rem;
  color: var(--color-text);
}

.street-team-list li + li {
  margin-top: 0.35rem;
}

/* --- Quotes --- */
.quotes-grid {
  display: grid;
  gap: 1.25rem;
}

.quote {
  margin: 0;
}

.quote blockquote {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  color: var(--color-text);
}

.quote figcaption {
  font-size: 0.8rem;
  color: var(--color-muted);
}

/* --- Primary / secondary links --- */
.primary-link,
.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.primary-link {
  background: linear-gradient(135deg, var(--color-gold), var(--color-sunflower));
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(201, 162, 39, 0.35);
}

.primary-link:hover {
  filter: brightness(1.03);
}

.secondary-link {
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.7);
}

.secondary-link:hover {
  border-color: var(--color-gold);
}

/* --- Share assets --- */
.share-assets-grid {
  display: grid;
  gap: 1.5rem;
}

.share-asset-card {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.share-art {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 0.75rem;
}

.share-copy-label {
  font-size: 0.85rem;
  font-weight: 600;
  margin: 0 0 0.35rem;
  color: var(--color-muted);
}

.share-copy {
  font-size: 0.9rem;
  margin: 0;
}

/* --- Footer --- */
.footer {
  margin-top: 2.5rem;
  padding: 2rem 1.25rem 1rem;
  text-align: center;
  width: 100%;
  max-width: 520px;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius);
  border: 1px solid var(--glass-border);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
  margin-bottom: 1rem;
}

.footer-links a {
  color: var(--color-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

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

.copyright {
  font-size: 0.8rem;
  color: var(--color-muted);
  margin: 0;
}

/* --- Desktop: more immersive --- */
@media (min-width: 768px) {
  .page-backdrop {
    filter: blur(14px) brightness(0.9);
    transform: scale(1.06);
  }

  .page-backdrop::after {
    background: linear-gradient(
      180deg,
      rgba(250, 248, 245, 0.75) 0%,
      rgba(250, 248, 245, 0.92) 40%,
      rgba(250, 248, 245, 0.95) 100%
    );
  }

  .hero {
    padding-top: clamp(3rem, 10vw, 5rem);
  }

  .album-art-wrap {
    max-width: 320px;
  }

  .section {
    padding: 2rem 2.25rem;
    margin-top: 3rem;
  }

  .presave-grid {
    gap: 1.25rem;
  }

  .presave-card {
    min-height: 130px;
  }

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

  .share-assets-grid {
    grid-template-columns: 1.1fr 1fr;
    align-items: stretch;
  }
}

@media (min-width: 1024px) {
  .page-content {
    padding: 3rem 2rem 2rem;
  }

  .album-art-wrap {
    max-width: 380px;
  }
}
