:root {
  /* Warm retro / polaroid palette */
  --bg: #211126; /* deep plum */
  --bg-alt: #2d1632; /* slightly lighter plum */
  --paper: #f7e9d5; /* polaroid paper */
  --paper-2: #f2dcc2;
  --brown: #3b2330; /* warm brown ink */
  --brown-2: #4a2a39;
  --accent: #ff8b3d; /* orange */
  --accent2: #ff5a86; /* warm pink */
  --accent-soft: rgba(255, 139, 61, 0.18);
  --text: #fff5eb; /* warm off-white */
  --muted: #e6c7ab; /* muted text on dark */
  --ink: #2b1822; /* text on paper */
  --ink-muted: #7b5562; /* muted text on paper */

  /* Backwards-compatible tokens */
  --card: var(--paper);
  --border: rgba(247, 233, 213, 0.18);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-pill: 999px;
  --shadow-soft: 0 22px 60px rgba(0, 0, 0, 0.8);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background:
    linear-gradient(180deg, rgba(45, 22, 50, 0.92), rgba(15, 7, 20, 0.94)),
    url("assets/mosqido-wideshot.jpeg") center top / cover no-repeat fixed;
  background-blend-mode: multiply;
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}

/* Subtle "dirty lens / film" layer over the whole page */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 15%, rgba(255, 216, 165, 0.18) 0, transparent 45%),
    radial-gradient(circle at 85% 25%, rgba(255, 140, 95, 0.14) 0, transparent 45%),
    radial-gradient(circle at 30% 85%, rgba(0, 0, 0, 0.35) 0, transparent 55%),
    radial-gradient(circle at 70% 80%, rgba(0, 0, 0, 0.28) 0, transparent 55%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.08));
  mix-blend-mode: soft-light;
  opacity: 0.55;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 100% - 2.5rem);
  margin: 0 auto;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: linear-gradient(
    to bottom,
    rgba(33, 17, 38, 0.94),
    rgba(33, 17, 38, 0.78)
  );
  border-bottom: 1px solid rgba(247, 233, 213, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}

.logo {
  font-family: "Orbitron", system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.32em;
  text-transform: lowercase;
  background: linear-gradient(20deg, #ffb347, #ffe8c4, #ff86a4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 10px rgba(255, 139, 61, 0.22);
}

.nav {
  display: flex;
  gap: 1.25rem;
  font-size: 0.9rem;
}

.nav a {
  position: relative;
  color: var(--muted);
  transition: color 0.2s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  transition: width 0.2s ease;
}

.nav a:hover {
  color: var(--text);
}

.nav a:hover::after {
  width: 100%;
}

/* Hero */

.hero {
  padding: 4.5rem 0 3.5rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 3.5rem;
  align-items: center;
}

.eyebrow {
  text-transform: lowercase;
  letter-spacing: 0.22em;
  font-size: 0.68rem;
  color: var(--muted);
  margin: 0 0 0.6rem;
}

.hero-text h1 {
  font-family: "Orbitron", system-ui, sans-serif;
  font-size: clamp(2.9rem, 5.3vw, 3.9rem);
  letter-spacing: 0.24em;
  text-transform: lowercase;
  margin: 0 0 0.6rem;
  background: linear-gradient(135deg, #ffb347, #ffe8c4, #ff86a4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 18px rgba(255, 139, 61, 0.22);
}

.subtitle {
  color: var(--muted);
  max-width: 32rem;
  margin-bottom: 1.6rem;
  text-shadow: 0 0 7px rgba(0, 0, 0, 0.7);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.3rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.hero-tags span {
  font-size: 0.75rem;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(7, 7, 21, 0.9);
  color: var(--muted);
}

.hero-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-circle {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: conic-gradient(
    from 220deg,
    #ff8b3d,
    #ff5a86,
    #ffd58a,
    #ff8b3d
  );
  filter: blur(1px);
  opacity: 0.35;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.75);
}

.hero-photo {
  position: absolute;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid #fdf3e4;
  box-shadow:
    0 22px 45px rgba(0, 0, 0, 0.9),
    0 0 0 1px rgba(0, 0, 0, 0.25);
}

/* Sections */

.section {
  padding: 3.25rem 0;
}

.section-alt {
  background: rgba(45, 22, 50, 0.55);
}

.section-heading {
  text-align: center;
  margin-bottom: 2.2rem;
}

.section-heading.left {
  text-align: left;
}

.section-heading h2 {
  margin: 0 0 0.4rem;
  font-size: 1.5rem;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

/* Music */

.music-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.3fr);
  gap: 1.6rem;
  align-items: flex-start;
}

.music-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.4rem;
}

.music-card {
  padding: 1.4rem 1.3rem;
  border-radius: var(--radius-md);
  background: var(--paper);
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: var(--ink);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.12);
  position: relative;
  overflow: hidden;
}

.music-card h3 {
  margin: 0.2rem 0 0.2rem;
  font-size: 1.06rem;
}

.music-card .meta {
  margin: 0 0 0.9rem;
  color: var(--ink-muted);
  font-size: 0.88rem;
}

.stream-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.8rem;
}

.stream-links a {
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(6, 6, 20, 0.9);
  color: var(--muted);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.stream-links a:hover {
  background: var(--accent-soft);
  color: var(--text);
  border-color: var(--accent);
}

.playlist-card {
  background: var(--brown);
  border-color: rgba(0, 0, 0, 0.22);
  color: var(--paper);
  transform: rotate(-0.5deg);
}

.services-card {
  padding: 1.6rem 1.4rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--brown);
  border: 1px solid rgba(0, 0, 0, 0.22);
  color: var(--paper);
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(255, 255, 255, 0.12);
  position: relative;
  overflow: hidden;
  transform: rotate(0.6deg);
}

.services-card h3 {
  margin: 0.8rem 0 0.4rem;
}

.services-card .meta + .meta {
  margin-top: 0.5rem;
}

.reelcrafter-block {
  margin-top: 4rem;
}

.reelcrafter-block h3 {
  margin: 0 0 0.3rem;
}

.reelcrafter-block .meta {
  margin: 0 0 0.9rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.reelcrafter-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.reelcrafter-embed iframe {
  width: 100%;
  height: 420px;
  display: block;
}

/* Shows */

.shows-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  max-width: 640px;
  margin: 0 auto;
}

.show-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.95rem 1.2rem;
  border-radius: var(--radius-md);
  background: radial-gradient(circle at left, #ff4b8b33 0, #060015 70%);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.show-date {
  margin: 0;
  font-size: 0.92rem;
}

.show-venue {
  margin: 0.1rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

/* About */

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: center;
}

.about-grid p {
  margin-top: 0;
}

.about-grid p + p {
  margin-top: 0.8rem;
}

.about-highlight {
  padding: 1.6rem 1.4rem;
  border-radius: var(--radius-lg);
  background: var(--paper);
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: var(--ink);
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(255, 255, 255, 0.12);
  position: relative;
  overflow: hidden;
}

.playlist-card,
.services-card {
  background: var(--brown);
  color: var(--paper);
}

.playlist-card .meta,
.services-card .meta {
  color: rgba(247, 233, 213, 0.86);
}

/* Dirty lens overlay on cards */
.music-card::after,
.services-card::after,
.about-highlight::after {
  content: "";
  position: absolute;
  inset: -10%;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.08) 0, transparent 55%),
    radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.06) 0, transparent 55%),
    radial-gradient(circle at 30% 80%, rgba(0, 0, 0, 0.18) 0, transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(0, 0, 0, 0.22) 0, transparent 60%);
  mix-blend-mode: soft-light;
  opacity: 0.45;
}

.stat-number {
  margin: 0;
  font-size: 2.2rem;
  font-weight: 700;
}

.stat-label {
  margin: 0.1rem 0 0.4rem;
  color: var(--ink-muted);
}

.stat-note {
  margin: 0;
  font-size: 0.85rem;
  color: var(--ink-muted);
}

/* Buttons & Pills */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.3rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-size: 0.86rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease,
    box-shadow 0.2s ease, transform 0.08s ease;
}

.btn.primary {
  background: linear-gradient(120deg, var(--accent), var(--accent2));
  color: #fff;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.75);
}

.btn.primary:hover {
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.8);
  transform: translateY(-1px);
}

.btn.secondary {
  background: var(--paper);
  color: var(--brown);
  border-color: rgba(0, 0, 0, 0.22);
}

.btn.secondary:hover {
  background: var(--paper-2);
}

.btn.ghost {
  background: transparent;
  border-color: rgba(247, 233, 213, 0.24);
  color: var(--text);
}

.btn.ghost:hover {
  background: rgba(10, 10, 32, 0.96);
}

.btn.tertiary {
  background: rgba(3, 0, 18, 0.96);
  border-color: rgba(255, 255, 255, 0.24);
  color: var(--text);
}

.btn.small {
  padding: 0.4rem 0.95rem;
  font-size: 0.78rem;
}

.btn.full {
  width: 100%;
  margin-top: 0.2rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  text-transform: lowercase;
  letter-spacing: 0.18em;
  padding: 0.24rem 0.8rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(247, 233, 213, 0.22);
  color: var(--muted);
}

.pill.accent {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: rgba(255, 245, 235, 0.95);
}

/* Footer */

.site-footer {
  padding: 1.4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(15, 7, 20, 0.92);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.social-links a {
  color: var(--muted);
}

.social-links a:hover {
  color: var(--text);
}

/* Responsive */

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-art {
    order: -1;
  }

  .hero {
    padding-top: 3.2rem;
  }

  .music-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .music-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .header-inner {
    gap: 1rem;
  }

  .nav {
    font-size: 0.78rem;
    gap: 0.8rem;
  }

  .music-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-circle {
    width: 220px;
    height: 220px;
  }
}

