/* ═══════════════════════════════════════════════════════════════════════
   M-U-S-I-C — Song Starter Kit page (patterns: starter-kit-*).
   Section-specific styles; values verbatim from
   m-u-s-i-c-3.0/src/pages/StarterKit.tsx + StarterKit.css.
   Design-system utilities live in assets/css/main.css.
   ═══════════════════════════════════════════════════════════════════════ */

/* ── Hero + email capture (starter-kit-hero) ─────────────────────────── */

.sk-hero {
  max-width: 1140px;
  margin: 0 auto;
  padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 32px) clamp(48px, 6vw, 72px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.sk-hero__copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sk-hero__copy > * {
  margin: 0;
}

.sk-hero__title {
  font-size: clamp(34px, 5.5vw, 56px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: pretty;
}

.sk-hero__lead {
  font-size: clamp(17px, 2.2vw, 19px);
  line-height: 1.5;
  color: #516078;
  margin: 0;
  text-wrap: pretty;
}

/* CTA row: green PDF button + "no email required" note. */
.sk-hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.sk-hero__cta .wp-block-buttons {
  margin: 0;
}

.sk-hero__cta-note {
  font-size: 13px;
  color: #8b97aa;
  margin: 0;
}

/* Green primary CTA (prototype: background #19A974). */
.sk-btn--green,
.wp-block-button.sk-btn--green .wp-block-button__link {
  background: #19a974;
  color: #ffffff;
}

/* Page-scoped hover from 3.0 StarterKit.css (style-hover #0B7D58). */
.hv-green:hover {
  background: #0b7d58 !important;
}

.wp-block-button.hv-green:hover .wp-block-button__link {
  background: #0b7d58 !important;
}

.wp-block-button.hv-green:hover {
  background: transparent !important;
}

/* Artist-at-work figure under the hero copy (frame = music-photo-figure). */
.sk-hero__figure {
  margin: 6px 0 0;
}

.sk-hero__figure img {
  aspect-ratio: 5 / 2;
  object-fit: cover;
}

/* ── What's inside (starter-kit-contents) ────────────────────────────── */

.sk-inside {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.sk-inside > * {
  margin: 0;
}

.sk-inside__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
}

.sk-kit-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px;
  background: #fff8ef;
  border: 1px solid #e8ecf2;
  border-radius: 16px;
}

.sk-kit-card > * {
  margin: 0;
}

.sk-kit-card__icon,
.sk-kit-card__icon img {
  width: 34px;
  height: 34px;
}

.sk-kit-card__name {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.sk-kit-card__desc {
  font-size: 14px;
  line-height: 1.5;
  color: #516078;
  margin: 0;
}

/* ── After the Kit → MasterClass hand-off (starter-kit-cta) ──────────── */

.sk-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}

.sk-cta > * {
  margin: 0;
}

.sk-cta__title {
  font-size: clamp(26px, 4.5vw, 38px);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
  max-width: 640px;
  text-wrap: pretty;
}

/* ── Buy panel ────────────────────────────────────────────────────────────
   Replaces the old free-download button and email-capture form. The kit is a
   $7 product; the checkout collects the address, so the page asks for a
   purchase rather than an email.                                          */
.sk-buy {
  align-self: start;
  position: sticky;
  top: clamp(76px, 8vw, 104px);
  border: 1px solid #e3ded4;
  border-radius: 16px;
  background: #fff;
  padding: clamp(22px, 2.6vw, 30px);
  box-shadow: 0 18px 44px rgba(17, 24, 39, 0.09);
}
.sk-buy__price {
  margin: 0;
  color: #111827;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: clamp(34px, 4.2vw, 46px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}
.sk-buy__per {
  margin-left: 8px;
  color: #6b7280;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
}
.sk-buy__intro {
  margin: 12px 0 0;
  color: #374151;
  font-size: 15.5px;
  line-height: 1.55;
}
.sk-buy__list {
  margin: 14px 0 0;
  padding-left: 20px;
  display: grid;
  gap: 7px;
  color: #374151;
  font-size: 14.5px;
  line-height: 1.5;
}
.sk-buy__ctas { margin-top: 20px; }
.sk-buy__ctas .wp-block-button { width: 100%; }
.sk-buy__ctas .wp-block-button__link { width: 100%; text-align: center; }
.sk-buy__note {
  margin: 14px 0 0;
  color: #6b7280;
  font-size: 13px;
  line-height: 1.5;
}
@media (max-width: 780px) {
  .sk-buy { position: static; }
}
