:root {
  --bg: #0b0716;
  --bg-2: #150e28;
  --bg-3: #1e1438;
  --ink: #ede7fa;
  --muted: #a79bc8;
  --line: rgba(167, 155, 200, 0.18);
  --orchid: #e85df0;
  --cyan: #5de0e6;
  --gold: #e8b85d;
  --glow-orchid: rgba(232, 93, 240, 0.35);
  --glow-cyan: rgba(93, 224, 230, 0.28);
  --card-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --cta-ink: #0b0716;
  --font-display: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-accent: Georgia, "Times New Roman", serif;
}

@media (prefers-color-scheme: light) {
  :root {
    --bg: #f3eff9;
    --bg-2: #ffffff;
    --bg-3: #ece5f6;
    --ink: #251643;
    --muted: #5f5380;
    --line: rgba(84, 62, 130, 0.22);
    --orchid: #a51fb3;
    --cyan: #0c7d84;
    --gold: #8a6420;
    --glow-orchid: rgba(165, 31, 179, 0.18);
    --glow-cyan: rgba(12, 125, 132, 0.14);
    --card-shadow: 0 18px 44px rgba(60, 34, 110, 0.16);
    --cta-ink: #ffffff;
  }
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-display);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

/* ---------- header ---------- */

.site-head {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.4rem;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.wordmark svg { display: block; }

.site-nav {
  display: flex;
  gap: 1.6rem;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.site-nav a {
  text-decoration: none;
  color: var(--muted);
  padding-block: 0.3rem;
  border-bottom: 1px solid transparent;
  transition: color 0.25s, border-color 0.25s;
}

.site-nav a:hover { color: var(--ink); border-bottom-color: var(--orchid); }

/* ---------- breadcrumb ---------- */

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-block: 1.2rem 0;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--orchid); }
.breadcrumb .sep { opacity: 0.5; }
.breadcrumb .current { color: var(--ink); }

/* ---------- hero ---------- */

.hero {
  position: relative;
  text-align: center;
  padding-block: clamp(3rem, 8vw, 6rem) clamp(3.5rem, 8vw, 6rem);
}

.mandala-stage {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
  z-index: 0;
}

.mandala-stage svg {
  width: min(88vw, 620px);
  height: auto;
  opacity: 0.9;
}

.ring-outer { transform-origin: 300px 300px; stroke-opacity: 0.34; }
.ring-inner { transform-origin: 300px 300px; stroke-opacity: 0.42; }
.ring-core { stroke-opacity: 0.5; }

.fol-mid { opacity: 0.6; }
.fol-out { opacity: 0.4; }

@media (prefers-reduced-motion: no-preference) {
  .ring-outer { animation: spin 160s linear infinite; }
  .ring-inner { animation: spin-rev 110s linear infinite; }
  .mandala-stage svg { animation: breathe 9s ease-in-out infinite; }
}

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes spin-rev { to { transform: rotate(-360deg); } }
@keyframes breathe {
  0%, 100% { opacity: 0.72; }
  50% { opacity: 1; }
}

.hero-inner { position: relative; z-index: 1; }

.eyebrow {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(1rem, 2.4vw, 1.25rem);
  color: var(--gold);
  letter-spacing: 0.04em;
}

.hero h1 {
  margin-top: 0.9rem;
  font-size: clamp(3.2rem, 12vw, 7.5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: linear-gradient(100deg, var(--orchid) 8%, var(--cyan) 55%, var(--gold) 96%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 28px var(--glow-orchid));
}

.hero .bio {
  margin: 1.6rem auto 0;
  max-width: 34rem;
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 2.2rem;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.9rem 1.8rem;
  border: 1px solid var(--orchid);
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cta-ink);
  background: linear-gradient(100deg, var(--orchid), var(--cyan));
  box-shadow: 0 0 28px var(--glow-orchid);
  transition: box-shadow 0.3s, transform 0.3s;
  cursor: pointer;
}

.hero-cta:hover {
  box-shadow: 0 0 48px var(--glow-orchid);
  transform: translateY(-2px);
}

.hero-cta.ghost {
  color: var(--ink);
  background: transparent;
  border-color: var(--cyan);
  box-shadow: 0 0 20px var(--glow-cyan), inset 0 0 12px rgba(93, 224, 230, 0.08);
}

.hero-cta.ghost:hover {
  box-shadow: 0 0 40px var(--glow-cyan), inset 0 0 18px rgba(93, 224, 230, 0.14);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.6rem;
  margin-top: 1.8rem;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  list-style: none;
}

.trust-strip .star { color: var(--gold); }

/* ---------- section chrome ---------- */

.divider {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  color: var(--muted);
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.divider svg { flex: none; }

section { padding-block: clamp(3rem, 7vw, 5.5rem); }

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.4rem;
}

.section-head h2 {
  font-size: clamp(1.7rem, 4.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-head .count {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--muted);
  font-size: 1rem;
}

/* ---------- catalog ---------- */

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(272px, 100%), 1fr));
  gap: 1.6rem;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.35s, border-color 0.35s, box-shadow 0.35s;
}

.card:hover {
  transform: translateY(-6px);
  border-color: var(--orchid);
  box-shadow: var(--card-shadow), 0 0 34px var(--glow-orchid);
}

.card-art {
  aspect-ratio: 1 / 1;
  background: var(--bg-3);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.card-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.card:hover .card-art img { transform: scale(1.05) rotate(1.5deg); }

.card-body {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.25rem 1.25rem 1.4rem;
  flex: 1;
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.badges { display: flex; gap: 0.4rem; flex-wrap: wrap; }

.badge {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  border: 1px solid var(--glow-cyan);
  border-radius: 999px;
  padding: 0.22rem 0.7rem;
  white-space: nowrap;
}

.badge.value {
  color: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 12px rgba(232, 184, 93, 0.25);
}

.link-groups {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 3rem;
  max-width: 68ch;
}

.link-group h3 {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.7rem;
}

.link-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.link-pill {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--cyan);
  border: 1px solid var(--glow-cyan);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  text-decoration: none;
  transition: box-shadow 0.3s, transform 0.3s;
}

.link-pill:hover {
  box-shadow: 0 0 16px var(--glow-cyan);
  transform: translateY(-1px);
}

.price {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold);
  white-space: nowrap;
}

.card h3 {
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
}

.card .go {
  margin-top: auto;
  padding-top: 0.6rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orchid);
}

.card .rating {
  font-size: 0.78rem;
}

.music-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.music-row {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.1rem 1.3rem 1.3rem;
}

.music-row h3 {
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.music-row iframe {
  width: 100%;
  max-width: 500px;
  height: 120px;
  border: 0;
  display: block;
  margin-bottom: 0.7rem;
}

.music-row .go {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orchid);
  text-decoration: none;
}

.center { text-align: center; }

/* ---------- rating ---------- */

.rating {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--gold);
  font-weight: 600;
}

.rating .stars { letter-spacing: 0.08em; }
.rating .count { color: var(--muted); font-weight: 400; }

/* ---------- product detail ---------- */

.product-hero {
  display: grid;
  grid-template-columns: minmax(220px, 380px) 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding-block: clamp(2rem, 6vw, 3.5rem);
}

@media (max-width: 760px) {
  .product-hero { grid-template-columns: 1fr; }
}

.product-hero.no-cover {
  grid-template-columns: 1fr;
  max-width: 640px;
}

.product-cover {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--card-shadow);
  aspect-ratio: 1 / 1;
}

.product-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }

.product-info .badges { margin-bottom: 0.9rem; }

.product-info h1 {
  font-size: clamp(1.7rem, 4.2vw, 2.6rem);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 1rem;
}

.product-info .rating { margin-bottom: 1rem; }

.product-price {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.7rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.product-body {
  max-width: 68ch;
}

.product-body h2 {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin: 2.2rem 0 0.9rem;
}

.product-body h2:first-child { margin-top: 0; }

.product-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 1.4rem 0 0.5rem;
}

.product-body p { margin-bottom: 0.9rem; }

.product-body ul { margin: 0 0 0.9rem 1.3rem; }
.product-body li { margin-bottom: 0.4rem; }

.product-body a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.product-body img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  border: 1px solid var(--line);
  margin: 0.4rem 0 1.4rem;
}

.about-portrait {
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: var(--card-shadow);
  display: block;
  margin: 0 auto 2.5rem;
}

/* ---------- faq ---------- */

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--bg-2);
  margin-bottom: 0.9rem;
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 1.05rem 1.3rem;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  color: var(--gold);
  font-size: 1.3rem;
  line-height: 1;
  flex: none;
}

.faq-item[open] summary::after { content: "\2212"; }

.faq-item summary:hover { color: var(--orchid); }

.faq-item p {
  padding: 0 1.3rem 1.2rem;
  color: var(--muted);
  font-size: 0.95rem;
}

/* ---------- empty state ---------- */

.empty {
  text-align: center;
  border: 1px dashed var(--line);
  border-radius: 18px;
  padding: 4rem 1.5rem;
  color: var(--muted);
}

/* ---------- footer ---------- */

.site-foot {
  text-align: center;
  padding-block: 3rem 3.5rem;
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-foot svg { display: block; margin: 0 auto 1rem; }

/* ---------- lightbox ---------- */

.product-cover img,
.product-body img {
  cursor: zoom-in;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 5vw, 3rem);
  background: rgba(5, 2, 12, 0.92);
}

.lightbox.is-open { display: flex; }

.lightbox img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  cursor: zoom-out;
}

.lightbox-close {
  position: absolute;
  top: clamp(0.8rem, 3vw, 1.4rem);
  right: clamp(0.8rem, 3vw, 1.4rem);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--bg-2);
  color: var(--ink);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox-close:hover { border-color: var(--orchid); color: var(--orchid); }

@media (max-width: 560px) {
  .site-nav { display: none; }
}
