/*
 * Vom Honigdorf — Philosophy section (cream + white cards)
 */

.fo-philosophy {
  position: relative;
  overflow: hidden;
}

.fo-philosophy__pattern {
  position: absolute;
  inset: 0;
  color: var(--fo-gold-deep);
  opacity: 0.35;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, transparent, #000 15%, #000 85%, transparent);
}

.fo-philosophy__grid {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

@media (min-width: 900px) {
  .fo-philosophy__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  }
}

.fo-philosophy__cards {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .fo-philosophy__cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.fo-philosophy-card {
  background: var(--fo-bg-ivory, #fffaf0);
  border: 1px solid rgba(var(--fo-gold-rgb), 0.2);
  border-radius: 6px;
  padding: 1.5rem 1.25rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.fo-philosophy-card__icon {
  display: block;
  width: 2rem;
  height: 2rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--fo-gold-gradient);
  opacity: 0.85;
}

.fo-philosophy-card__title {
  font-family: var(--fo-font-serif);
  font-size: clamp(1.125rem, 2vw, 1.35rem);
  font-weight: var(--fo-font-serif-weight);
  color: var(--fo-text-dark);
  margin: 0 0 0.5rem;
}

.fo-philosophy-card__text {
  font-family: var(--fo-font-sans);
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--fo-text-muted-cream);
  margin: 0;
}
