/* ═══════════════════════════════════════════════════════
   KIF — Offers / Programs Section
   ═══════════════════════════════════════════════════════ */

.offers-section { padding: 10rem 2rem; position: relative; overflow: hidden; }
.offers-header { max-width: 1280px; margin: 0 auto 5rem; }
.offers-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 900; line-height: 1.05;
  letter-spacing: -.02em; color: var(--frost);
  max-width: 600px;
}
.offers-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--edge); }
.offer-card {
  background: var(--ink);
  padding: 2.75rem 2.5rem;
  position: relative; overflow: hidden;
  transition: background .4s, transform .4s cubic-bezier(.16,1,.3,1);
  cursor: default;
}
.offer-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s cubic-bezier(.16,1,.3,1);
}
.offer-card:hover { background: var(--surface-raised); transform: translateY(-4px); }
.offer-card:hover::before { transform: scaleX(1); }
.offer-num {
  font-family: 'DM Mono', monospace;
  font-size: .65rem; letter-spacing: .2em;
  color: rgba(232,97,26,.4); margin-bottom: 1.5rem;
}
.offer-icon {
  width: 48px; height: 48px;
  border: 1px solid var(--edge-bright);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  transition: border-color .3s, background .3s;
}
.offer-card:hover .offer-icon { border-color: var(--gold); background: var(--gold-dim); }
.offer-icon svg { width: 20px; height: 20px; color: var(--gold); }
.offer-title { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--frost); margin-bottom: .85rem; line-height: 1.2; }
.offer-desc { font-size: 1rem; line-height: 1.75; color: var(--frost-faint); }
