/* ============================================================
   SIMPLI VERSATILE PHOTOGRAPHY
   Pricing Page Styles — pricing.css (Light Theme)
   ============================================================ */

/* ── Page Hero Override ─────────────────────────────────── */
.pricing-page-hero {
  position: relative;
  height: clamp(300px, 48vw, 520px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}
.pricing-page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
}
.pricing-page-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.62) 100%
  );
}
.pricing-page-hero__content {
  position: relative;
  z-index: 1;
  color: var(--clr-white);
  padding: 0 var(--space-sm);
}
.pricing-page-hero__eyebrow {
  margin-bottom: 16px;
}
.pricing-page-hero__title {
  font-family: var(--ff-display);
  font-size: var(--text-3xl);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.pricing-page-hero__title em {
  font-style: italic;
  color: var(--clr-gold-lt);
}

/* ── Why Invest Box ────────────────────────────────────── */
.why-invest-box {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: 2px;
  padding: clamp(28px,5vw,56px);
}
.why-invest-box .tag { margin-bottom: 14px; }
.why-invest__heading {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem,3.5vw,2.8rem);
  font-weight: 300;
  color: var(--clr-white);
  margin: 16px 0 24px;
  line-height: 1.2;
}
.why-invest__heading em { font-style: italic; color: var(--clr-gold-lt); }
.why-invest__text {
  color: var(--clr-readable);
  font-size: 0.95rem;
  line-height: 1.9;
  margin-bottom: 18px;
}
.why-invest__text:last-of-type { margin-bottom: 40px; }
.why-invest__text a { color: var(--clr-white); text-decoration: underline; text-underline-offset: 3px; }
.why-invest__text a:hover { color: var(--clr-gold-lt); }

/* ── Factor Cards ─────────────────────────────────────── */
.pricing-factors-header { text-align: center; margin-top: 64px; margin-bottom: 0; }
.pricing-factors-header .tag { margin-bottom: 12px; display: block; }
.pricing-factors-header__heading {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem,2.8vw,2.2rem);
  font-weight: 300;
  color: var(--clr-white);
  margin: 0 0 8px;
}
.pricing-factors-header__heading em { font-style: italic; color: var(--clr-gold); }
.pricing-factors-header__sub { color: var(--clr-muted); font-size: 0.88rem; max-width: 520px; margin: 0 auto; line-height: 1.7; }

.factor-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--clr-border);
  margin-top: 40px;
  border: 1px solid var(--clr-border);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 700px) { .factor-grid { grid-template-columns: 1fr; } }

.factor-card {
  background: var(--clr-surface);
  padding: 40px 36px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: background 0.3s ease;
}
.factor-card:hover { background: #e2dbd0; }

.factor-card__num {
  font-family: var(--ff-display);
  font-size: 3.2rem;
  font-weight: 300;
  color: var(--clr-gold);
  opacity: 0.3;
  line-height: 1;
  flex-shrink: 0;
  min-width: 52px;
}
.factor-card:hover .factor-card__num { opacity: 0.5; }
.factor-card__body { flex: 1; }
.factor-card__icon {
  width: 36px; height: 36px;
  background: rgba(160,120,64,0.1);
  border: 1px solid rgba(160,120,64,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--clr-gold); font-size: 0.85rem;
  margin-bottom: 14px; flex-shrink: 0;
}
.factor-card__body h3 {
  font-family: var(--ff-display);
  font-size: 1.3rem; font-weight: 400;
  color: var(--clr-white); margin: 0 0 10px;
}
.factor-card__body p { font-size: 0.87rem; color: var(--clr-muted); line-height: 1.8; margin: 0; }

/* ── Pricing Section & Alternating BG ─────────────────── */
.pricing-section { padding: var(--space-xl) 0; }
.pricing-section--alt { background: var(--clr-bg2); }
.pricing-divider { width: 60px; height: 1px; background: var(--clr-gold); opacity: 0.4; margin: 0 auto 12px; }
.section-sep { border: none; border-top: 1px solid var(--clr-border); margin: 80px 0; }

/* ── Factors / Related Links ───────────────────────────── */
.related-read {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--clr-gold);
  text-transform: uppercase;
  margin-top: 4px;
  text-decoration: none;
  transition: color 0.2s;
}
.related-read:hover { color: var(--clr-gold-lt); }
.related-read i { font-size: 0.72rem; }

/* ── Numbered List (What Goes Into) ─────────────────────── */
.pricing-factors-list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pricing-factors-list li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 24px;
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: 2px;
  transition: border-color 0.3s;
}
.pricing-factors-list li:hover { border-color: rgba(160,120,64,0.35); }
.factor-num {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--clr-gold);
  opacity: 0.4;
  line-height: 1;
  flex-shrink: 0;
  width: 36px;
  text-align: center;
}
.factor-content h4 {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--clr-white);
  margin: 0 0 6px;
}
.factor-content p { font-size: 0.88rem; color: var(--clr-readable); line-height: 1.75; margin: 0; }

/* ── Package includes box ─────────────────────────────── */
.package-includes {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: 2px;
  padding: clamp(28px,4vw,50px);
}
.package-includes h3 {
  font-family: var(--ff-display);
  font-size: clamp(1.4rem,2.5vw,2rem);
  font-weight: 300;
  color: var(--clr-white);
  margin: 0 0 12px;
}
.package-includes h3 em { font-style: italic; color: var(--clr-gold); }
.package-includes p { font-size: 0.93rem; color: var(--clr-readable); line-height: 1.85; margin-bottom: 16px; }
.package-includes p:last-child { margin-bottom: 0; }

/* ── CTA  ─────────────────────────────────────────────── */
.pricing-cta-box {
  text-align: center;
}
.pricing-cta-box .tag { margin-bottom: 12px; }
.pricing-cta-box h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.9rem,3.5vw,3rem);
  font-weight: 300;
  color: var(--clr-white);
  margin: 14px 0 20px;
  line-height: 1.2;
}
.pricing-cta-box h2 em { font-style: italic; color: var(--clr-gold); }
.pricing-cta-box p { font-size: 0.93rem; color: var(--clr-readable); line-height: 1.85; max-width: 680px; margin: 0 auto 14px; }

/* ── Print overrides ──────────────────────────────────── */
@media print {
  .pricing-section { break-inside: avoid; }
}
