/* SoulVani — shared styles
   Romantic & poetic — soft pinks/violets, serif Hindi calligraphy, airy.
*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600&family=Italiana&family=Manrope:wght@300;400;500;600;700&family=Tiro+Devanagari+Hindi:ital@0;1&family=Yatra+One&display=swap');

:root {
  /* Romantic palette — default */
  --bg:          #FBF6F2;
  --bg-warm:    #F6E9DF;
  --panel:       #FFFFFF;
  --ink:         #2A1838;
  --ink-soft:    #5B4761;
  --ink-mute:    #8B7B91;
  --rose:        #C46778;
  --rose-deep:   #8B2E45;
  --rose-soft:   #F2D5DC;
  --lavender:    #8B5FBF;
  --lavender-soft:#E2D2EE;
  --gold:        #B8956A;
  --gold-soft:   #E8D9BC;
  --hairline:    rgba(42,24,56,0.14);
  --hairline-strong: rgba(42,24,56,0.30);

  --serif: "Cormorant Garamond", "Hoefler Text", Georgia, serif;
  --display: "Italiana", "Cormorant Garamond", serif;
  --hindi: "Tiro Devanagari Hindi", "Mukta", serif;
  --hindi-display: "Yatra One", "Tiro Devanagari Hindi", serif;
  --ui: "Manrope", "Helvetica Neue", system-ui, sans-serif;

  --maxw: 1280px;
  --pad: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; }

.eyebrow {
  font-family: var(--ui);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 11px;
  font-weight: 500;
  color: var(--rose-deep);
}
.eyebrow.gold { color: var(--gold); }
.eyebrow.soft { color: var(--ink-mute); }

.h-display {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.02;
  margin: 0;
}
.h-serif {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.06;
  margin: 0;
}
.h-hindi {
  font-family: var(--hindi);
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
}

.rule {
  display: flex; align-items: center; gap: 14px;
  color: var(--gold);
}
.rule::before, .rule::after {
  content: ""; flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
  opacity: .55;
}
.rule .heart { font-size: 10px; transform: translateY(-1px); }

.divider-petal {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  color: var(--gold); margin: 28px 0;
}
.divider-petal .line {
  width: 80px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-soft), var(--gold), var(--gold-soft), transparent);
}
.divider-petal svg { width: 18px; height: 18px; opacity: .8; }

/* ============ NAV ============ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251,246,242,0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hairline);
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 16px var(--pad);
  display: flex; align-items: center; gap: 32px;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
}
.nav-logo img { width: 40px; height: 40px; border-radius: 50%; }
.nav-logo .word {
  font-family: var(--display); font-size: 22px; letter-spacing: 0.12em;
  color: var(--ink);
}
.nav-links {
  display: flex; gap: 28px; margin-left: auto;
  font-family: var(--ui); font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.18em; color: var(--ink-soft);
}
.nav-links a {
  position: relative; padding: 6px 0; transition: color .2s;
}
.nav-links a:hover { color: var(--rose-deep); }
.nav-links a.current { color: var(--ink); }
.nav-links a.current::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--rose-deep);
}
.nav-cta {
  font-family: var(--ui); font-size: 12px; letter-spacing: 0.2em;
  text-transform: uppercase; padding: 11px 20px;
  background: var(--ink); color: var(--bg);
  border-radius: 999px; transition: transform .15s ease, background .2s;
}
.nav-cta:hover { background: var(--rose-deep); transform: translateY(-1px); }

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

/* ============ BUTTONS ============ */
.btn {
  font-family: var(--ui); font-size: 12px; letter-spacing: 0.22em;
  text-transform: uppercase; font-weight: 500;
  padding: 14px 26px;
  border-radius: 999px;
  display: inline-flex; align-items: center; gap: 10px;
  transition: transform .15s, background .25s, color .25s, border-color .25s;
  cursor: pointer; border: 1px solid transparent;
}
.btn-primary {
  background: var(--ink); color: var(--bg);
}
.btn-primary:hover { background: var(--rose-deep); transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: var(--ink); border-color: var(--hairline-strong);
}
.btn-ghost:hover { border-color: var(--ink); background: var(--ink); color: var(--bg); }
.btn-gold {
  background: linear-gradient(180deg, #D4B281, #B8956A);
  color: #fff; box-shadow: 0 6px 24px rgba(184,149,106,0.35);
}
.btn-gold:hover { transform: translateY(-1px); filter: brightness(1.05); }
.btn .arrow { transition: transform .2s; }
.btn:hover .arrow { transform: translate(3px, 0); }

/* ============ SECTIONS ============ */
section { padding: clamp(60px, 8vw, 110px) var(--pad); }
.wrap { max-width: var(--maxw); margin: 0 auto; }
.section-head {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  margin-bottom: 60px; gap: 16px;
}
.section-head .eyebrow { margin-bottom: 4px; }
.section-head h2 {
  font-family: var(--display);
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1; margin: 0;
}
.section-head .hindi-sub {
  font-family: var(--hindi-display);
  font-size: clamp(18px, 2vw, 24px);
  color: var(--rose-deep);
  font-weight: 400;
}
.section-head p.lede {
  max-width: 560px; font-size: 18px; color: var(--ink-soft);
  font-style: italic;
}

/* ============ HERO (homepage) ============ */
.hero {
  position: relative;
  padding: clamp(40px, 6vw, 80px) var(--pad) clamp(60px, 8vw, 110px);
  overflow: hidden;
  background:
    radial-gradient(ellipse 1200px 600px at 80% -10%, rgba(196,103,120,0.12), transparent 60%),
    radial-gradient(ellipse 900px 500px at -10% 100%, rgba(139,95,191,0.10), transparent 60%),
    var(--bg);
}
.hero-grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.hero-text .eyebrow { display: inline-flex; align-items: center; gap: 12px; }
.hero-text .eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--rose-deep); }
.hero-title {
  font-family: var(--hindi-display);
  font-size: clamp(64px, 9vw, 128px);
  line-height: 0.92; margin: 24px 0 8px;
  color: var(--ink);
  font-weight: 400;
}
.hero-title .en {
  display: block;
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  margin-top: 14px;
  font-weight: 400;
}
.hero-sub {
  font-style: italic; font-size: 20px; color: var(--ink-soft);
  max-width: 460px; margin: 22px 0 12px;
}
.hero-meta {
  display: flex; gap: 28px; margin-top: 32px; margin-bottom: 36px;
  flex-wrap: wrap;
}
.hero-meta .item {
  display: flex; flex-direction: column; gap: 6px;
}
.hero-meta .label {
  font-family: var(--ui); font-size: 10px; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--ink-mute);
}
.hero-meta .val {
  font-family: var(--serif); font-size: 18px; color: var(--ink);
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-art {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  box-shadow:
    0 60px 80px -40px rgba(42,24,56,0.45),
    0 30px 50px -30px rgba(139,95,191,0.35);
  transform: rotate(0deg);
}
.hero-art img { width: 100%; height: 100%; object-fit: cover; }
.hero-art::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.18));
  pointer-events: none;
}
.hero-vinyl {
  position: absolute; top: 50%; right: -34%;
  width: 60%; aspect-ratio: 1; transform: translateY(-50%);
  border-radius: 50%;
  background:
    radial-gradient(circle, #2a1a30 0 12%, #1a0e22 12.5% 14%, #2a1a30 14.5% 100%);
  background-image:
    repeating-radial-gradient(circle, rgba(255,255,255,0.04) 0 1px, transparent 1px 4px),
    radial-gradient(circle, #5a3568 0 8%, #1a0e22 9% 100%);
  z-index: -1;
  opacity: 0.4;
  display: none;
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { max-width: 440px; margin: 0 auto; }
}

/* falling petals */
.petals {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
  z-index: 0;
}
.petal {
  position: absolute;
  width: 14px; height: 14px;
  background: radial-gradient(circle at 30% 30%, #F2D5DC, #C46778);
  border-radius: 60% 40% 60% 40% / 50% 60% 40% 50%;
  opacity: 0.6;
  animation: fall linear infinite;
  filter: blur(0.3px);
}
@keyframes fall {
  0%   { transform: translate3d(0, -20px, 0) rotate(0deg); }
  100% { transform: translate3d(40px, 110vh, 0) rotate(720deg); }
}

/* ============ ALBUM TRIO (homepage) ============ */
.trio {
  background:
    linear-gradient(180deg, var(--bg), #F4E7DE);
}
.trio-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
@media (max-width: 880px) { .trio-grid { grid-template-columns: 1fr; gap: 48px; } }

.album-card {
  display: flex; flex-direction: column; gap: 20px;
  text-align: center; cursor: pointer;
  transition: transform .35s ease;
}
.album-card:hover { transform: translateY(-6px); }
.album-cover {
  position: relative;
  aspect-ratio: 1;
  border-radius: 4px; overflow: hidden;
  box-shadow:
    0 40px 60px -30px rgba(42,24,56,0.4),
    0 14px 24px -14px rgba(42,24,56,0.25);
}
.album-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.album-card:hover .album-cover img { transform: scale(1.04); }
.album-cover::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgba(0,0,0,0.25));
}
.album-cover .listen {
  position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
  font-family: var(--ui); font-size: 11px; letter-spacing: 0.3em;
  text-transform: uppercase; color: #fff;
  opacity: 0; transition: opacity .3s;
  display: inline-flex; align-items: center; gap: 8px;
}
.album-card:hover .album-cover .listen { opacity: 1; }
.album-card .hindi-title {
  font-family: var(--hindi-display); font-size: 32px; color: var(--ink);
  font-weight: 400; margin: 0;
}
.album-card .en-title {
  font-family: var(--display); font-size: 16px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink-soft);
}
.album-card .mood {
  font-style: italic; color: var(--ink-mute); font-size: 16px;
}

/* ============ EDITIONS ============ */
.editions {
  background:
    radial-gradient(ellipse 800px 400px at 50% 0%, rgba(184,149,106,0.10), transparent 70%),
    var(--bg);
  position: relative;
}
.editions::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--hairline), transparent);
}
.ed-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
}
@media (max-width: 880px) { .ed-grid { grid-template-columns: 1fr; } }

.ed-card {
  background: var(--panel);
  border-radius: 6px;
  padding: 44px 40px 36px;
  position: relative;
  border: 1px solid var(--hairline);
  display: flex; flex-direction: column; gap: 28px;
  box-shadow: 0 30px 60px -40px rgba(42,24,56,0.18);
}
.ed-card.featured {
  background: linear-gradient(180deg, #FFFFFF, #FCF3EC);
  border-color: var(--gold-soft);
}
.ed-card.featured::before {
  content: ""; position: absolute; inset: 0; border-radius: 6px;
  padding: 1px;
  background: linear-gradient(180deg, var(--gold), transparent 70%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}
.ed-badge {
  position: absolute; top: -12px; left: 40px;
  font-family: var(--ui); font-size: 10px; letter-spacing: 0.28em;
  text-transform: uppercase; padding: 6px 14px;
  background: var(--gold); color: #fff; border-radius: 999px;
}
.ed-head {
  display: flex; flex-direction: column; gap: 10px;
}
.ed-head .name {
  font-family: var(--display); font-size: 38px; letter-spacing: 0.04em;
}
.ed-head .hindi {
  font-family: var(--hindi); font-size: 18px; color: var(--rose-deep);
}
.ed-price {
  display: flex; align-items: baseline; gap: 8px;
}
.ed-price .rupee { font-size: 26px; color: var(--ink-soft); }
.ed-price .amount {
  font-family: var(--display); font-size: 56px; line-height: 1;
}
.ed-price .units {
  font-family: var(--ui); font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--ink-mute);
  margin-left: 10px;
}
.ed-tag {
  font-style: italic; color: var(--ink-soft);
}
.ed-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 18px;
}
.ed-list li {
  display: grid; grid-template-columns: 28px 1fr; gap: 16px;
  align-items: start;
}
.ed-list .ico {
  width: 28px; height: 28px; display: inline-flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.ed-list .ico svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.4; }
.ed-list .it-name {
  font-family: var(--serif); font-weight: 500; font-size: 17px; letter-spacing: 0.02em;
}
.ed-list .it-desc {
  font-family: var(--ui); font-size: 12.5px; color: var(--ink-mute);
  letter-spacing: 0.02em; margin-top: 3px;
}
.ed-list li.muted .it-name,
.ed-list li.muted .it-desc { color: var(--ink-mute); opacity: .5; }
.ed-list li.muted .ico { color: var(--ink-mute); opacity: .35; }
.ed-card .btn { align-self: stretch; justify-content: center; }
.ed-card .stamp {
  font-family: var(--ui); font-size: 11px; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--ink-mute);
  text-align: center;
}

/* ============ STREAMING ============ */
.stream {
  background: var(--ink);
  color: var(--bg);
  text-align: center;
}
.stream .section-head h2 { color: var(--bg); }
.stream .section-head .hindi-sub { color: var(--rose-soft); }
.stream .section-head .eyebrow { color: var(--gold-soft); }
.stream .section-head p.lede { color: rgba(251,246,242,0.7); }
.stream-row {
  display: flex; gap: 24px; justify-content: center; flex-wrap: wrap;
  margin-top: 12px;
}
.stream-card {
  flex: 1; min-width: 240px; max-width: 320px;
  padding: 36px 24px;
  border: 1px solid rgba(232,217,188,0.18);
  border-radius: 6px;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  transition: background .3s, border-color .3s;
}
.stream-card:hover { background: rgba(255,255,255,0.04); border-color: var(--gold); }
.stream-card .logo {
  width: 56px; height: 56px; display: flex; align-items: center; justify-content: center;
}
.stream-card .name {
  font-family: var(--display); font-size: 22px; letter-spacing: 0.08em;
}
.stream-card .listen {
  font-family: var(--ui); font-size: 11px; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--gold);
  display: inline-flex; align-items: center; gap: 8px;
}

/* ============ ARTIST / STORY ============ */
.story {
  background: #F6E9DF;
  position: relative;
}
.story-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
@media (max-width: 880px) { .story-grid { grid-template-columns: 1fr; } }
.story-portrait {
  aspect-ratio: 4/5; border-radius: 4px; overflow: hidden;
  box-shadow: 0 40px 60px -30px rgba(42,24,56,0.35);
  position: relative;
}
.story-portrait img { width: 100%; height: 100%; object-fit: cover; }
.story h2 {
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 64px);
  margin: 16px 0;
}
.story .hindi-sub {
  font-family: var(--hindi-display); color: var(--rose-deep);
  font-size: 26px; margin-top: 0;
}
.story p { font-size: 19px; line-height: 1.65; color: var(--ink-soft); margin: 16px 0; }
.story p.signature {
  font-family: var(--display); font-style: italic; font-size: 22px; color: var(--ink);
  margin-top: 28px;
}

/* ============ NEWSLETTER ============ */
.news {
  text-align: center;
  background:
    radial-gradient(ellipse 700px 360px at 50% 50%, rgba(196,103,120,0.10), transparent 70%),
    var(--bg);
}
.news h2 { font-family: var(--display); font-size: clamp(36px, 4.5vw, 56px); margin: 0; }
.news .hindi-sub { font-family: var(--hindi-display); color: var(--rose-deep); font-size: 22px; margin-top: 8px; }
.news p { font-style: italic; color: var(--ink-soft); max-width: 480px; margin: 14px auto 28px; }
.news form {
  display: flex; max-width: 460px; margin: 0 auto; gap: 8px;
  background: var(--panel); padding: 6px; border-radius: 999px;
  border: 1px solid var(--hairline);
  box-shadow: 0 10px 30px -20px rgba(42,24,56,0.2);
}
.news input {
  flex: 1; border: 0; outline: 0; background: transparent;
  padding: 12px 18px; font-family: var(--serif); font-size: 16px;
  color: var(--ink);
}
.news input::placeholder { color: var(--ink-mute); font-style: italic; }
.news button {
  font-family: var(--ui); font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 12px 22px; background: var(--ink); color: var(--bg);
  border-radius: 999px; transition: background .3s;
}
.news button:hover { background: var(--rose-deep); }
.news .thanks {
  font-family: var(--display); font-style: italic; font-size: 20px;
  color: var(--rose-deep); margin-top: 16px; opacity: 0; transition: opacity .4s;
}
.news .thanks.on { opacity: 1; }

/* ============ FOOTER ============ */
.foot {
  background: var(--ink);
  color: var(--bg);
  padding: 70px var(--pad) 36px;
}
.foot-inner { max-width: var(--maxw); margin: 0 auto; }
.foot-top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(232,217,188,0.18);
}
@media (max-width: 860px) {
  .foot-top { grid-template-columns: 1fr 1fr; gap: 40px 24px; }
}
.foot-brand .word {
  font-family: var(--display); font-size: 36px; letter-spacing: 0.1em;
}
.foot-brand .tag {
  font-style: italic; color: rgba(251,246,242,0.65);
  margin-top: 8px; max-width: 280px;
}
.foot-brand .hindi { font-family: var(--hindi); color: var(--rose-soft); margin-top: 10px; font-size: 16px; }
.foot-col h4 {
  font-family: var(--ui); font-size: 11px; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--gold); margin: 0 0 16px;
  font-weight: 500;
}
.foot-col a {
  display: block; color: rgba(251,246,242,0.78); margin-bottom: 10px;
  font-size: 15px; transition: color .2s;
}
.foot-col a:hover { color: var(--bg); }
.foot-bot {
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  font-family: var(--ui); font-size: 12px; letter-spacing: 0.1em;
  color: rgba(251,246,242,0.55);
}
.foot-bot .dom { color: var(--gold-soft); letter-spacing: 0.18em; }

/* ============ MODAL (checkout) ============ */
.modal-back {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(20,10,30,0.55);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  display: none; align-items: center; justify-content: center;
  padding: 20px;
  animation: fadein .25s ease;
}
.modal-back.on { display: flex; }
@keyframes fadein { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: var(--bg); color: var(--ink);
  width: 100%; max-width: 460px;
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 60px 100px -30px rgba(0,0,0,0.5);
  animation: pop .35s cubic-bezier(.2,.8,.2,1);
}
@keyframes pop { from { opacity: 0; transform: translateY(20px) scale(.98); } to { opacity: 1; transform: none; } }
.modal-head {
  padding: 18px 24px;
  display: flex; align-items: center; justify-content: space-between;
  background: var(--panel);
  border-bottom: 1px solid var(--hairline);
}
.modal-head .brand {
  font-family: var(--display); font-size: 18px; letter-spacing: 0.1em;
  display: flex; align-items: center; gap: 10px;
}
.modal-head .brand img { width: 24px; height: 24px; border-radius: 50%; }
.modal-head .close {
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--ink-mute);
}
.modal-head .close:hover { color: var(--ink); }
.modal-body { padding: 24px; }
.modal-summary {
  background: linear-gradient(180deg, #FFF8F0, #FCEFE3);
  border: 1px solid var(--gold-soft);
  border-radius: 8px; padding: 18px;
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 22px;
}
.modal-summary .label {
  font-family: var(--ui); font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 4px;
}
.modal-summary .name { font-family: var(--display); font-size: 22px; letter-spacing: 0.04em; }
.modal-summary .total { font-family: var(--display); font-size: 26px; }
.modal-section { margin-bottom: 18px; }
.modal-section .label {
  font-family: var(--ui); font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--ink-mute); margin-bottom: 10px; display: block;
}
.modal-pay-options {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
}
.pay-opt {
  border: 1px solid var(--hairline); border-radius: 8px;
  padding: 12px 8px; text-align: center;
  font-family: var(--ui); font-size: 12px; color: var(--ink-soft);
  cursor: pointer; transition: all .2s;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.pay-opt:hover, .pay-opt.sel { border-color: var(--ink); color: var(--ink); background: #fff; }
.pay-opt svg { width: 20px; height: 20px; }
.modal-input {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--hairline); border-radius: 8px;
  font-family: var(--serif); font-size: 16px; color: var(--ink);
  background: #fff; outline: 0;
  transition: border-color .2s;
}
.modal-input:focus { border-color: var(--ink); }
.modal-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.modal-foot {
  padding: 18px 24px 22px;
  background: var(--panel);
  border-top: 1px solid var(--hairline);
}
.modal-foot .btn { width: 100%; justify-content: center; }
.modal-foot .secure {
  text-align: center;
  font-family: var(--ui); font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--ink-mute); margin-top: 12px;
}
.modal-success {
  padding: 60px 30px; text-align: center;
}
.modal-success .check {
  width: 70px; height: 70px; margin: 0 auto 20px;
  border-radius: 50%; background: var(--rose-soft);
  display: flex; align-items: center; justify-content: center; color: var(--rose-deep);
}
.modal-success h3 {
  font-family: var(--display); font-size: 32px; margin: 0 0 8px;
}
.modal-success .hindi { font-family: var(--hindi-display); color: var(--rose-deep); margin-bottom: 14px; }
.modal-success p { color: var(--ink-soft); }

/* ============ ALBUM PAGES ============ */
.album-hero {
  position: relative;
  padding: clamp(60px, 8vw, 110px) var(--pad) clamp(40px, 6vw, 80px);
  overflow: hidden;
}
.album-hero.theme-rose {
  background:
    radial-gradient(ellipse 1100px 500px at 50% 0%, rgba(196,103,120,0.16), transparent 70%),
    linear-gradient(180deg, #FBF6F2, #F8E8EC);
}
.album-hero.theme-violet {
  background:
    radial-gradient(ellipse 1100px 500px at 30% 0%, rgba(139,95,191,0.18), transparent 70%),
    radial-gradient(ellipse 800px 400px at 80% 100%, rgba(196,103,120,0.12), transparent 70%),
    linear-gradient(180deg, #F8F0F5, #EAE0EE);
}
.album-hero.theme-night {
  background:
    radial-gradient(ellipse 1100px 500px at 50% 0%, rgba(139,95,191,0.18), transparent 70%),
    linear-gradient(180deg, #1B0F2C, #14091F);
  color: #F3E8DD;
}
.album-hero.theme-night .eyebrow { color: var(--gold); }
.album-hero.theme-night .hero-title,
.album-hero.theme-night .hero-title .en,
.album-hero.theme-night .hero-meta .val { color: #F3E8DD; }
.album-hero.theme-night .hero-meta .label { color: rgba(243,232,221,0.55); }
.album-hero.theme-night .hero-sub { color: rgba(243,232,221,0.7); }
.album-hero.theme-night .btn-ghost { color: #F3E8DD; border-color: rgba(243,232,221,0.3); }
.album-hero.theme-night .btn-ghost:hover { background: #F3E8DD; color: var(--ink); }

.tracks {
  background: var(--bg);
}
.tracks-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
@media (max-width: 1080px) { .tracks-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) { .tracks-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .tracks-grid { grid-template-columns: 1fr; } }

.track {
  display: flex; flex-direction: column; gap: 12px;
  cursor: pointer; transition: transform .3s;
}
.track:hover { transform: translateY(-4px); }
.track-art {
  position: relative;
  aspect-ratio: 9/16;
  border-radius: 4px; overflow: hidden;
  box-shadow: 0 30px 50px -30px rgba(42,24,56,0.4);
}
.track-art img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.track:hover .track-art img { transform: scale(1.04); }
.track-art::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.4));
  opacity: 0; transition: opacity .3s;
}
.track:hover .track-art::after { opacity: 1; }
.track-play {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%) scale(.85);
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,255,255,0.92); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s, transform .3s;
}
.track:hover .track-play { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.track-play svg { width: 22px; height: 22px; }
.track-num {
  font-family: var(--ui); font-size: 10px; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--ink-mute);
}
.track-title-hi {
  font-family: var(--hindi); font-size: 22px; color: var(--ink); line-height: 1.2;
  font-weight: 400;
}
.track-title-en {
  font-family: var(--display); font-size: 14px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-soft);
}

.album-note {
  background: var(--bg-warm);
  text-align: center;
}
.album-note blockquote {
  max-width: 720px; margin: 0 auto;
  font-family: var(--display); font-style: italic; font-size: clamp(24px, 3vw, 36px);
  color: var(--ink); line-height: 1.4;
}
.album-note .author {
  font-family: var(--ui); font-size: 11px; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--rose-deep); margin-top: 20px;
}

.album-other {
  background: var(--bg);
}
.album-other-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
}
@media (max-width: 760px) { .album-other-grid { grid-template-columns: 1fr; } }
.album-other .album-card .hindi-title { font-size: 26px; }

/* ============ TWEAKS panel (will be on right) ============ */
.tweaks-toggle-hint {
  position: fixed; bottom: 18px; left: 18px; z-index: 40;
  font-family: var(--ui); font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--ink-mute);
  padding: 8px 12px; border: 1px solid var(--hairline);
  border-radius: 999px; background: rgba(255,255,255,0.6);
  pointer-events: none; opacity: 0;
}

/* ============ THEME variants (set on body) ============ */
body.theme-violet {
  --bg: #F4ECEE;
  --bg-warm: #EADEE7;
  --ink: #2C1430;
  --rose: #B3527E;
  --rose-deep: #6A2A56;
  --lavender: #6C4FAA;
}
body.theme-night {
  --bg: #14091F;
  --bg-warm: #1F1131;
  --panel: #1F1131;
  --ink: #F3E8DD;
  --ink-soft: rgba(243,232,221,0.75);
  --ink-mute: rgba(243,232,221,0.5);
  --rose: #D08294;
  --rose-deep: #E0A0AE;
  --rose-soft: #4A1F30;
  --hairline: rgba(243,232,221,0.14);
  --hairline-strong: rgba(243,232,221,0.30);
}
body.theme-night .nav { background: rgba(20,9,31,0.78); }
body.theme-night .album-card .hindi-title,
body.theme-night .album-card .en-title { color: var(--ink); }
body.theme-night .news input { color: var(--ink); }
body.theme-night .news input::placeholder { color: rgba(243,232,221,0.5); }
body.theme-night .modal { background: var(--panel); }
body.theme-night .modal-head, body.theme-night .modal-foot { background: #2A1844; }
body.theme-night .modal-input { background: #2A1844; color: var(--ink); border-color: var(--hairline); }
body.theme-night .pay-opt { color: var(--ink-soft); border-color: var(--hairline); }
body.theme-night .pay-opt:hover, body.theme-night .pay-opt.sel { background: #2A1844; color: var(--ink); border-color: var(--ink); }
body.theme-night .ed-card { background: #1F1131; }
body.theme-night .ed-card.featured { background: linear-gradient(180deg, #261739, #1F1131); }

/* ============================================================
   MOBILE NAV — hamburger button + drawer
   ============================================================ */
.nav-ham {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 40px; height: 40px; margin-left: auto;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-ham span {
  display: block; width: 22px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform .3s ease, opacity .2s ease;
  transform-origin: center;
}
.nav-ham.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-ham.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-ham.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-drawer {
  display: none;
  flex-direction: column;
  background: var(--bg);
  border-top: 1px solid var(--hairline);
  padding: 24px var(--pad) 32px;
  gap: 0;
  position: absolute; left: 0; right: 0; top: 100%; z-index: 49;
  box-shadow: 0 20px 40px -10px rgba(42,24,56,0.18);
  animation: drawerIn .25s ease;
}
@keyframes drawerIn {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: none; }
}
.nav-drawer a {
  font-family: var(--ui); font-size: 13px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--ink-soft);
  padding: 14px 0;
  border-bottom: 1px solid var(--hairline);
  transition: color .2s;
}
.nav-drawer a:hover { color: var(--rose-deep); }
.nav-drawer a.drawer-album {
  font-family: var(--hindi-display); font-size: 18px;
  letter-spacing: 0.04em; text-transform: none;
  color: var(--ink);
}
.nav-drawer .drawer-ctas {
  display: flex; flex-direction: column; gap: 10px;
  margin-top: 22px; border-bottom: none; padding: 0;
}
.nav-drawer .drawer-ctas .btn {
  font-size: 12px; padding: 14px 20px; width: 100%;
}

@media (max-width: 820px) {
  .nav-cta-desktop { display: none; }
  .nav-ham { display: flex; }
  .nav-drawer.open { display: flex; }
  /* Night theme drawer */
  body.theme-night .nav-drawer { background: #14091F; }
  body.theme-night .nav-ham span { background: #F3E8DD; }
}

/* ============================================================
   RESPONSIVE FIXES — 820px and below (tablet landscape + below)
   ============================================================ */
@media (max-width: 820px) {
  /* Hero */
  .hero-title {
    font-size: clamp(52px, 14vw, 80px);
  }
  .hero-title .en {
    font-size: clamp(20px, 5vw, 28px);
  }
  .hero-sub { font-size: 17px; }

  /* Section heads */
  .section-head { margin-bottom: 40px; }
  .section-head p.lede { font-size: 16px; }

  /* Edition card price */
  .ed-price .amount { font-size: 42px; }
  .ed-card { padding: 36px 26px 28px; }
  .ed-badge { left: 26px; }

  /* Story */
  .story-grid { grid-template-columns: 1fr; }
  .story-portrait { max-width: 480px; }

  /* Streaming cards */
  .stream-card { min-width: 180px; padding: 28px 18px; }

  /* Album hero on album pages */
  .album-hero { padding: clamp(40px, 5vw, 70px) var(--pad) clamp(30px, 4vw, 60px); }
}

/* ============================================================
   RESPONSIVE FIXES — 600px and below (mobile)
   ============================================================ */
@media (max-width: 600px) {
  /* General */
  body { font-size: 16px; }
  section { padding: 52px var(--pad); }

  /* Hero */
  .hero { padding: 36px var(--pad) 52px; }
  .hero-grid { gap: 36px; }
  .hero-title { font-size: clamp(48px, 13vw, 72px); line-height: 0.95; margin: 18px 0 6px; }
  .hero-title .en { font-size: clamp(18px, 5vw, 24px); margin-top: 10px; }
  .hero-sub { font-size: 16px; margin: 14px 0 8px; }
  .hero-meta { gap: 16px; margin: 20px 0 24px; }
  .hero-meta .val { font-size: 16px; }
  .hero-ctas { flex-direction: column; gap: 10px; }
  .hero-ctas .btn { justify-content: center; }
  .hero-art { max-width: 320px; }

  /* Section heads */
  .section-head h2 { font-size: clamp(32px, 9vw, 48px); }
  .section-head .hindi-sub { font-size: 18px; }
  .section-head p.lede { font-size: 15px; }
  .section-head { margin-bottom: 32px; gap: 12px; }

  /* Album trio */
  .trio-grid { gap: 36px; }
  .album-card .hindi-title { font-size: 26px; }

  /* Edition cards */
  .ed-grid { gap: 20px; }
  .ed-card { padding: 32px 20px 24px; gap: 20px; }
  .ed-badge { left: 20px; }
  .ed-head .name { font-size: 28px; }
  .ed-price .amount { font-size: 36px; }
  .ed-price .rupee { font-size: 20px; }
  .ed-price .units { display: block; margin-left: 0; margin-top: 4px; }
  .ed-list li { gap: 12px; }
  .ed-list .it-name { font-size: 15px; }
  .ed-list .it-desc { font-size: 12px; }

  /* Streaming */
  .stream-row { flex-direction: column; align-items: center; gap: 14px; }
  .stream-card { width: 100%; max-width: 100%; min-width: unset; padding: 24px 20px; flex-direction: row; gap: 20px; }
  .stream-card .logo { width: 44px; height: 44px; flex-shrink: 0; }

  /* Story */
  .story-portrait { max-width: 100%; }
  .story h2 { font-size: clamp(30px, 8vw, 44px); }
  .story p { font-size: 16px; }

  /* Newsletter */
  .news form { flex-direction: column; border-radius: 14px; padding: 14px; gap: 10px; }
  .news input { padding: 10px 14px; }
  .news button { border-radius: 8px; padding: 14px; text-align: center; }
  .news h2 { font-size: clamp(28px, 8vw, 40px); }

  /* Footer */
  .foot { padding: 52px var(--pad) 28px; }
  .foot-top { grid-template-columns: 1fr; gap: 32px; }
  .foot-brand .word { font-size: 28px; }
  .foot-bot { flex-direction: column; align-items: flex-start; gap: 8px; font-size: 11px; }

  /* Album pages */
  .album-hero .hero-title { font-size: clamp(48px, 13vw, 72px); }
  .tracks-grid { gap: 16px; }
  .track-title-hi { font-size: 18px; }
  .album-note blockquote { font-size: clamp(20px, 5vw, 28px); }
  .album-other-grid { grid-template-columns: 1fr; }

  /* Checkout modal */
  .modal { border-radius: 0; max-width: 100%; height: 100%; overflow-y: auto; }
  .modal-back { padding: 0; align-items: flex-end; }
  .modal-body { padding: 18px; }
  .modal-foot { padding: 14px 18px 20px; }
  .modal-row { grid-template-columns: 1fr; }
  .modal-pay-options { gap: 6px; }
  .modal-summary { flex-direction: column; gap: 10px; align-items: flex-start; }
  .modal-summary > div:last-child { align-self: flex-end; }

  /* Tweaks panel */
  #tweaks-panel { right: 0; bottom: 0; border-radius: 14px 14px 0 0; width: 100%; }

  /* Lyric interlude */
  .hero-ctas .btn { width: 100%; }
}

/* ============================================================
   RESPONSIVE FIXES — 380px and below (small phones)
   ============================================================ */
@media (max-width: 380px) {
  .hero-title { font-size: 42px; }
  .nav-logo .word { font-size: 18px; }
  .ed-price .amount { font-size: 30px; }
}
