:root {
  --bg: #fffaf2;
  --paper: #ffffff;
  --paper-alt: #fff2d9;
  --text: #3a2f2a;
  --muted: #75675f;
  --gold: #d7a83d;
  --gold-dark: #b58723;
  --rose: #f6d8e5;
  --lavender: #eee7fb;
  --line: #eadcc7;
  --shadow: 0 14px 34px rgba(83, 57, 21, 0.10);
  --radius: 22px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, #fff8e7 0%, transparent 28%),
    radial-gradient(circle at top right, #fbeef4 0%, transparent 24%),
    var(--bg);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
code {
  background: #f7f0e2;
  padding: 0.15rem 0.35rem;
  border-radius: 8px;
}
.wrap {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(255, 250, 242, 0.88);
  border-bottom: 1px solid rgba(234, 220, 199, 0.9);
}
.nav-row, .footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}
.brand strong { display: block; font-size: 1rem; }
.brand small { display: block; color: var(--muted); }
.brand-mark {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff8dd, #ffeaa3);
  border: 1px solid #f1d980;
  box-shadow: var(--shadow);
  font-size: 2rem;
}
.crown-mark {
  line-height: 1;
}
.nav-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.nav-links a {
  color: var(--muted);
  font-weight: 700;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.15rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), #f0c761);
  color: #2f2415;
  font-weight: 800;
  box-shadow: var(--shadow);
  border: 0;
  cursor: pointer;
}
.button:hover { transform: translateY(-1px); }
.button-sm { min-height: 40px; padding: 0.65rem 1rem; }
.button-secondary {
  background: #fff;
  border: 1px solid var(--line);
}
.hero {
  padding: 4rem 0 2.5rem;
}
.hero-small { padding-top: 3rem; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
}
.hero-grid.single-column { grid-template-columns: 1fr; }
.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: var(--lavender);
  color: #5b4581;
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: 0.9rem;
}
h1, h2, h3, h4 { line-height: 1.15; margin: 0 0 0.8rem; }
h1 { font-size: clamp(2.2rem, 4vw, 4rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.6rem); }
h3 { font-size: 1.25rem; }
.lead {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 58ch;
}
.sublead {
  font-size: 1.08rem;
  color: #6b5743;
  max-width: 62ch;
  font-weight: 700;
  margin-top: 0.8rem;
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.35rem 0 1rem;
  align-items: center;
  max-width: 40rem;
}
.hero-points,
.check-list {
  margin: 1rem 0 0;
  padding-left: 1.15rem;
  color: var(--muted);
}
.hero-card,
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.cover-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(180deg, #fffaf3, #fff0cb);
}
.cover-image {
  width: 100%;
  height: auto;
  display: block;
}
.cover-fallback {
  position: absolute;
  inset: 0;
  display: none;
  padding: 1.5rem;
}
.cover-frame.no-image .cover-fallback { display: block; }
.cover-frame.no-image .cover-image { display: none; }
.cover-fallback-inner {
  height: 100%;
  border: 2px dashed rgba(183, 135, 35, 0.35);
  border-radius: calc(var(--radius) - 4px);
  background: linear-gradient(180deg, rgba(255,255,255,0.7), rgba(255,245,212,0.8));
  display: grid;
  place-content: center;
  text-align: center;
  padding: 1.5rem;
}
.cover-kicker {
  font-weight: 800;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.announcement { padding-bottom: 0.5rem; }
.announcement-box {
  background: linear-gradient(135deg, var(--gold), #f0c761);
  color: #2f2415;
  border: 1px solid #d1a447;
  border-radius: 18px;
  padding: 1rem 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow);
}
.announcement-box a {
  font-weight: 800;
}
.section { padding: 4rem 0; }
.section.alt { background: rgba(255,255,255,0.48); }
.section-heading {
  margin-bottom: 1.6rem;
  max-width: 62ch;
}
.card-grid {
  display: grid;
  gap: 1.2rem;
}
.four-up { grid-template-columns: repeat(4, 1fr); }
.three-up { grid-template-columns: repeat(3, 1fr); }
.card, .compact-card { padding: 1.3rem; }
.product-card p,
.sponsor-card p,
.card p { color: var(--muted); }
.shopify-box { margin-top: 1.5rem; }
.embed-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}
.embed-slot {
  border: 1px dashed var(--line);
  border-radius: 16px;
  padding: 1rem;
  background: #fffdf8;
}
.embed-placeholder {
  min-height: 120px;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--muted);
  border-radius: 12px;
  background: linear-gradient(180deg, #fff, #fff7e6);
}
.split-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.2rem;
  align-items: start;
}
.price {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold-dark);
  margin-bottom: 0.6rem;
}
.sponsor-card.highlight {
  background: linear-gradient(180deg, #fff9ee, #fff2cd);
}
.centered-block {
  text-align: center;
  margin-top: 1.5rem;
}
.tiny-note {
  margin-top: 0.65rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.text-link {
  color: var(--gold-dark);
  font-weight: 800;
}
.audio-player {
  width: 100%;
  margin-top: 0.7rem;
}
.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.92);
}
.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-links a { color: var(--muted); font-weight: 700; }
@media (max-width: 980px) {
  .hero-grid,
  .split-grid,
  .four-up,
  .three-up,
  .embed-grid {
    grid-template-columns: 1fr 1fr;
  }
  .nav-row,
  .footer-row {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 720px) {
  .hero-grid,
  .split-grid,
  .four-up,
  .three-up,
  .embed-grid {
    grid-template-columns: 1fr;
  }
  .hero { padding-top: 2.5rem; }
  .announcement-box { flex-direction: column; align-items: flex-start; }
  .nav-links { gap: 0.7rem; }
}

.hero-points a {
  color: inherit;
  text-decoration: underline;
  font-weight: 700;
}


.product-card .shopify-inline {
  margin-top: 1rem;
}
.product-card .shopify-inline > div {
  min-height: 58px;
}

@media (min-width: 721px) {
  .cta-row .button {
    padding: 0.8rem 1rem;
    white-space: nowrap;
  }
}

@media (max-width: 720px) {
  .cta-row {
    flex-wrap: wrap;
  }
}


.listen-video-card {
  padding: 1.2rem;
}
.listen-preview-video {
  width: 100%;
  display: block;
  border-radius: 18px;
  background: #000;
  margin-top: 0.7rem;
  box-shadow: var(--shadow);
}


.listen-music-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  text-align: center;
  padding: 1.5rem 1rem;
}









.music-heart-button:hover {
  transform: translateY(-2px);
}



.listen-music-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  text-align: center;
  padding: 1.5rem 1rem;
}

.music-heart-button {
  position: relative;
  width: 220px;
  height: 200px;
  display: inline-block;
  text-decoration: none;
}

.music-heart-svg {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 14px 24px rgba(83, 57, 21, 0.18));
}

.music-heart-svg path {
  fill: #d7a83d;
  stroke: #c89a2d;
  stroke-width: 3;
}




.music-heart-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
}

.side-music-note {
  color: #1f1a13;
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
  transform: translateY(-6px);
}

.listen-music-caption {
  margin-top: 1rem;
  max-width: 18ch;
  font-size: 1.22rem;
  font-weight: 800;
  color: #5b4581;
  line-height: 1.28;
}


.listen-side-video-card {
  padding: 1.2rem;
}
.listen-side-video {
  width: 100%;
  display: block;
  border-radius: 18px;
  background: #000;
  margin-top: 0.7rem;
  box-shadow: var(--shadow);
}


.audio-box {
  background: #fff;
  border: 1px solid rgba(124, 75, 201, 0.18);
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 12px 30px rgba(59, 45, 74, 0.08);
}

.big-play-button {
  min-height: 58px;
  font-size: 1.05rem;
  width: 100%;
  justify-content: center;
  margin-bottom: 16px;
}

.audio-player {
  width: 100%;
  margin-bottom: 10px;
}


.stacked-audio-buttons {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1rem;
}
.listen-audio-box {
  display: grid;
  gap: 1rem;
}
.listen-audio-card {
  background: #fffaf7;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem;
}
.listen-copy-row {
  flex-wrap: wrap;
}
@media (min-width: 721px) {
  .stacked-audio-buttons .button {
    width: 100%;
  }
}


.hero .hero-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 640px);
  gap: 1.6rem;
  align-items: start;
}
.hero-card {
  width: min(100%, 640px);
  max-width: 640px;
  margin-left: auto;
  align-self: start;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.hero-card .cover-frame {
  width: 100%;
  max-width: 640px;
  margin-left: auto;
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.hero-card .cover-image {
  width: 100%;
  height: auto;
}

@media (min-width: 981px) {
  .hero-card .cover-frame {
    margin-top: 0.35rem;
  }
}

.sponsor-heading {
  margin-bottom: 1.2rem;
}
.how-it-works-box {
  background: linear-gradient(180deg, #fffdf7, #fff5df);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.2rem 1.3rem;
  margin-bottom: 1.4rem;
  box-shadow: var(--shadow);
}
.how-it-works-box h3 {
  margin-bottom: 0.55rem;
}
.how-it-works-box p {
  margin: 0.35rem 0;
  color: var(--muted);
}
.shipping-note {
  margin-top: 0.2rem;
}
.shipping-address-box {
  margin-top: 0.85rem;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #fffaf0;
  color: var(--text);
  line-height: 1.55;
}
.sponsor-shipping-box {
  margin-top: 0.85rem;
}
.sponsor-grid-new {
  align-items: stretch;
}
.sponsor-card-new {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.sponsor-tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: var(--lavender);
  color: #5b4581;
  font-size: 0.88rem;
  font-weight: 800;
}
.sponsor-detail {
  margin-top: 0.1rem;
}
.sponsor-button-stack {
  display: grid;
  gap: 0.8rem;
  margin-top: auto;
  padding-top: 0.7rem;
}
.sponsor-button-stack .button {
  width: 100%;
}
.sponsor-links-note {
  max-width: 78ch;
  margin: 1.4rem auto 0;
}
@media (max-width: 1200px) {
  .hero .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  }
  .hero-card,
  .hero-card .cover-frame {
    max-width: 520px;
  }
}
@media (max-width: 980px) {
  .hero .hero-grid {
    grid-template-columns: 1fr;
    gap: 1.3rem;
  }
  .hero-card {
    width: 100%;
    max-width: none;
    margin: 0 auto;
  }
  .hero-card .cover-frame {
    width: min(100%, 680px);
    max-width: 680px;
    margin: 0 auto;
  }
}
@media (max-width: 720px) {
  .hero-card {
    width: 100%;
    max-width: none;
    margin: 0 auto;
  }
  .hero-card .cover-frame {
    width: min(100%, 92vw);
    max-width: 92vw;
    margin: 0 auto;
  }
}


#favorite-five-pack:target {
  outline: 3px solid rgba(215, 168, 61, 0.55);
  box-shadow: 0 0 0 8px rgba(215, 168, 61, 0.12);
  scroll-margin-top: 120px;
}


.shopify-inline-bulk > div,
.sponsor-shopify-inline > div {
  width: 100%;
  min-height: 58px;
}
.sponsor-shopify-inline {
  width: 100%;
}
.sponsor-button-stack .button {
  width: 100%;
  justify-content: center;
  text-align: center;
}
.sponsor-button-stack .button.button-secondary {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--line);
}

.hero .cta-row .button {
  flex: 0 0 auto;
  white-space: nowrap;
}
@media (max-width: 1200px) {
  .cta-row {
    max-width: 34rem;
  }
}
@media (max-width: 720px) {
  .cta-row {
    max-width: 100%;
  }
  .hero .cta-row .button {
    width: 100%;
  }
}


.hero-home-wrap {
  display: grid;
  gap: 1.35rem;
}

.hero-home-grid {
  align-items: start;
}

.hero-copy {
  align-self: center;
}

.hero-home-card {
  align-self: start;
}

.hero-home-bottom {
  display: grid;
  gap: 0.8rem;
}

.hero-home-cta-row {
  max-width: none;
  width: 100%;
  justify-content: center;
}

.hero-home-points {
  max-width: 72rem;
}

@media (min-width: 721px) {
  .hero-home-cta-row .button {
    flex: 1 1 220px;
    max-width: 290px;
  }
}

@media (max-width: 980px) {
  .hero-home-wrap {
    gap: 1rem;
  }
}
