/* =========================================================
   KAWTHAR WHY CHOOSE SECTION
   Compact feminine trust section for homepage only.
   ========================================================= */

.kaw-why-choose {
  width: min(1120px, calc(100% - 32px));
  margin: clamp(28px, 4vw, 52px) auto;
  padding: clamp(26px, 4vw, 42px);
  border-radius: 34px;
  background:
    radial-gradient(circle at 12% 15%, rgba(215, 182, 111, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(255,250,246,0.96), rgba(239,228,216,0.82));
  border: 1px solid rgba(87, 61, 42, 0.10);
  box-shadow: 0 22px 58px rgba(45, 33, 25, 0.08);
}

.kaw-why-head {
  text-align: center;
  margin-bottom: clamp(22px, 3vw, 30px);
}

.kaw-why-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #b08a52;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.kaw-why-kicker::before,
.kaw-why-kicker::after {
  content: "";
  width: 32px;
  height: 1px;
  background: rgba(176, 138, 82, 0.48);
}

.kaw-why-head h2 {
  margin: 0;
  color: #2f241d;
  font-family: "Playfair Display", "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.05;
  font-weight: 500;
}

.kaw-why-head p {
  max-width: 560px;
  margin: 12px auto 0;
  color: #745b48;
  font-size: 0.98rem;
  line-height: 1.7;
}

.kaw-why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.kaw-why-card {
  min-height: 142px;
  padding: 20px 18px;
  border-radius: 24px;
  background: rgba(255, 250, 246, 0.78);
  border: 1px solid rgba(86, 61, 44, 0.09);
  box-shadow: 0 14px 34px rgba(45, 33, 25, 0.06);
}

.kaw-why-icon {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  background: linear-gradient(135deg, #ead3a1, #cda76a);
  color: #2d2119;
  font-size: 1rem;
  font-weight: 900;
}

.kaw-why-card h3 {
  margin: 0 0 8px;
  color: #34271f;
  font-size: 0.98rem;
  line-height: 1.35;
  font-weight: 850;
}

.kaw-why-card p {
  margin: 0;
  color: #765f4c;
  font-size: 0.88rem;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .kaw-why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .kaw-why-choose {
    width: min(100% - 22px, 1120px);
    padding: 24px 16px;
    border-radius: 26px;
  }

  .kaw-why-grid {
    grid-template-columns: 1fr;
  }

  .kaw-why-card {
    min-height: auto;
  }
}
