/* Daylight theme — proof. Split from daylight.css (see docs/adr/0002). */

/* ---------- Proof band (homepage 2a): client quotes on white ----------
   Quote texts and names are placeholders until real citations land — every
   card carries a .ph-chip; see TODO.md. */
.quotes-sec {
  padding-block: clamp(64px, 7vw, 96px);
  border-top: 1px solid var(--c-line-soft);
}

.quotes-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 40px;
}

.quotes-head .sec-head {
  margin-bottom: 0;
}

.quotes-head h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.quote-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--c-dagsljus);
  border: 1px solid var(--c-line-soft);
  border-radius: var(--r-lg);
  padding: 30px 28px;
}

.quote-card blockquote {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--tx);
}

.quote-card figcaption {
  margin-top: auto;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--c-ink-muted);
}

.quote-card figcaption b {
  color: var(--tx);
  font-weight: 600;
}

@media (max-width: 900px) {
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .quotes-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* ---------- Kundcase (homepage 2a): one project on spruce ----------
   Figures are placeholders (.ph + kicker chip) until the real project
   numbers land — see TODO.md. */
.case-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

/* The photo mat goes translucent on spruce */
.case-sec .photo-mat {
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.case-sec .photo-mat img {
  aspect-ratio: 4 / 3;
  border-radius: 3px;
}

.case-sec .photo-cap {
  color: var(--text-on-gran-muted);
}

.case-kicker {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
}

.case-kicker .over {
  margin-bottom: 0;
}

.case-kicker .ph-chip {
  color: #f5ecd4;
  background: transparent;
  border-color: rgba(245, 236, 212, 0.55);
}

.case-copy h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  color: var(--text-on-gran);
}

.case-copy > p {
  margin-top: 18px;
  max-width: 52ch;
  color: var(--tx-muted);
}

/* Mini stats: same voice as the stats band, one size down */
.case-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px clamp(24px, 3vw, 40px);
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line-on-gran);
}

.case-facts b {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
  color: var(--text-on-gran);
}

.case-facts span {
  display: block;
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-on-gran-muted);
}

.case-cta-row {
  margin-top: 30px;
}

@media (max-width: 900px) {
  .case-grid {
    grid-template-columns: 1fr;
  }
}
