/* ═══════════════════════════════════════════════
   WHY.CSS — Section 2: Why This Matters
   Edit: quote text size, stat strip, body columns
═══════════════════════════════════════════════ */

#why {
  background: var(--warm-white);
  padding: var(--section-v) var(--section-h);
  position: relative;
  overflow: hidden;
}

/* Soft glow ornament */
.why-ornament {
  position: absolute;
  right: -80px; top: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  opacity: .04;
  pointer-events: none;
}

.why-inner { max-width: 900px; margin: 0 auto; }

/* Large pull-quote */
.why-quote {
  font-family: var(--f-elegant);
  font-size: clamp(1.35rem, 3vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-main);
  line-height: 1.5;
  margin: 28px 0 40px;
  padding-left: 32px;
  position: relative;
}
.why-quote::before {
  content: '\201C';
  font-family: var(--f-display);
  font-size: 7rem;
  line-height: .8;
  color: var(--gold-light);
  opacity: .35;
  position: absolute;
  left: -18px; top: -8px;
  pointer-events: none;
}

/* Two-column body */
.why-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 64px;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--parchment);
}
.why-body p {
  font-family: var(--f-elegant);
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.9;
}

/* Stats strip */
.why-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 64px;
  border-top: 1px solid var(--parchment);
  border-bottom: 1px solid var(--parchment);
}
.why-stat {
  padding: 36px 24px;
  border-right: 1px solid var(--parchment);
  text-align: center;
}
.why-stat:last-child { border-right: none; }
.why-stat-n {
  font-family: var(--f-display);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--brown-deep);
  line-height: 1;
}
.why-stat-n em { font-style: italic; color: var(--gold-deep); }
.why-stat-l {
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 8px;
  line-height: 1.4;
}

/* ── Responsive ─────────────────────────── */
@media (max-width: 900px) {
  .why-stats { grid-template-columns: 1fr 1fr; }
  .why-stat  { border-bottom: 1px solid var(--parchment); }
  .why-stat:nth-child(2n) { border-right: none; }
}
@media (max-width: 680px) {
  .why-body  { grid-template-columns: 1fr; gap: 24px; }
  .why-stats { grid-template-columns: 1fr 1fr; }
  .why-quote { font-size: clamp(1.1rem, 5vw, 1.5rem); padding-left: 20px; }
}
@media (max-width: 400px) {
  .why-stats { grid-template-columns: 1fr; }
  .why-stat  { border-right: none; }
}
