/* assets/css/heart-map-poster.css - Heart Map editorial product styling */
.heart-page {
  padding-bottom: 24px;
}

.heart-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.heart-text-shell {
  max-width: 46rem;
}

.heart-hero {
  padding: clamp(36px, 6vw, 68px) 0 20px;
}

.heart-hero-copy {
  padding: clamp(28px, 5vw, 46px);
  border: 1px solid var(--border);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(251, 245, 238, 0.96) 0%, rgba(240, 221, 210, 0.62) 100%);
  box-shadow: var(--shadow-elevated);
}

.heart-section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.heart-section-eyebrow::before {
  content: '';
  width: 30px;
  height: 1px;
  background: rgba(166, 92, 70, 0.42);
}

.heart-hero-title,
.heart-section-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.6rem);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.heart-section-title {
  font-size: clamp(2.3rem, 4vw, 3.8rem);
}

.heart-hero-sub,
.heart-section-sub,
.heart-emotion-copy,
.heart-final-foot {
  margin: 18px 0 0;
  color: var(--text-soft);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
}

.heart-hero-actions,
.heart-emotion-actions,
.heart-final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.heart-trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.heart-trust-pill,
.heart-pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(166, 92, 70, 0.16);
  background: rgba(251, 245, 238, 0.8);
  color: var(--text-soft);
  font-size: 0.82rem;
  font-weight: 700;
}

.heart-section {
  padding-top: clamp(38px, 7vw, 76px);
}

.heart-social-grid,
.heart-steps-grid,
.heart-pricing-grid,
.heart-moments-grid {
  display: grid;
  gap: 18px;
}

.heart-social-grid,
.heart-steps-grid,
.heart-pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.heart-moments-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.heart-social-card,
.heart-step-card,
.heart-pricing-card,
.heart-moment-card,
.heart-emotion-band,
.heart-final-band {
  border: 1px solid var(--border);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(251, 245, 238, 0.92) 0%, rgba(246, 237, 227, 0.92) 100%);
  box-shadow: var(--shadow-card);
}

.heart-social-card,
.heart-step-card,
.heart-pricing-card,
.heart-moment-card {
  padding: 24px;
}

.heart-social-quote {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.heart-social-attrib {
  display: block;
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.heart-builder-intro,
.heart-section-head {
  margin-bottom: 20px;
}

.heart-builder-reassurance {
  margin: 0 0 20px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(240, 221, 210, 0.36);
  color: var(--text-soft);
}

.heart-step-card,
.heart-moment-card {
  display: grid;
  gap: 12px;
}

.heart-step-num,
.heart-moment-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-family: var(--font-display);
  font-size: 1.3rem;
}

.heart-step-card h3,
.heart-pricing-card h3,
.heart-moment-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.52rem;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.heart-step-card p,
.heart-pricing-card li,
.heart-moment-card p,
.heart-price,
.heart-pricing-card p {
  color: var(--text-soft);
}

.heart-pricing-card {
  display: grid;
  gap: 14px;
}

.heart-price {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  font-weight: 500;
  letter-spacing: -0.05em;
}

.heart-pricing-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
}

.heart-emotion-band,
.heart-final-band {
  padding: clamp(28px, 5vw, 42px);
}

.heart-final-foot {
  color: var(--text-muted);
  font-size: 0.94rem;
}

@media (max-width: 980px) {
  .heart-social-grid,
  .heart-steps-grid,
  .heart-pricing-grid {
    grid-template-columns: 1fr;
  }

  .heart-moments-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .heart-shell {
    width: min(100% - 24px, 100%);
  }

  .heart-hero-copy,
  .heart-social-card,
  .heart-step-card,
  .heart-pricing-card,
  .heart-moment-card,
  .heart-emotion-band,
  .heart-final-band {
    padding: 20px;
    border-radius: 20px;
  }

  .heart-hero-title,
  .heart-section-title {
    font-size: clamp(2.4rem, 13vw, 4rem);
  }

  .heart-hero-actions,
  .heart-emotion-actions,
  .heart-final-actions {
    display: grid;
  }

  .heart-moments-grid {
    grid-template-columns: 1fr;
  }
}
