/* ============================================================
   BBN CATERERS — PHILOSOPHY SECTION
   ============================================================ */

.philosophy {
  background: var(--color-dark);
  color: var(--color-cream);
  position: relative;
  overflow: hidden;
}

/* Large decorative watermark BBN */
.philosophy__watermark {
  position: absolute;
  top: 50%;
  right: -5%;
  transform: translateY(-50%);
  font-family: var(--font-heading);
  font-size: clamp(200px, 25vw, 360px);
  font-weight: var(--fw-black);
  color: rgba(137, 120, 92, 0.06);
  line-height: 1;
  user-select: none;
  pointer-events: none;
  letter-spacing: 0.12em;
}

.philosophy__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-20);
  align-items: start;
  position: relative;
  z-index: 1;
}

.philosophy__intro {
  /* Left column */
}

.philosophy__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.philosophy__eyebrow-line {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--color-beige-light);
  opacity: 0.4;
}

.philosophy__eyebrow-text {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: var(--fw-medium);
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--color-beige-light);
  opacity: 0.7;
}

.philosophy__title {
  font-family: var(--font-heading);
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
  font-weight: var(--fw-light);
  color: var(--color-cream);
  line-height: 1.1;
  margin-bottom: var(--space-8);
  letter-spacing: -0.01em;
}

.philosophy__title em {
  font-style: italic;
  color: var(--color-beige-light);
}

.philosophy__lead {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: rgba(184, 173, 155, 0.75);
  line-height: 1.85;
  font-weight: var(--fw-light);
  margin-bottom: var(--space-6);
}

.philosophy__text {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: rgba(184, 173, 155, 0.65);
  line-height: 1.85;
  font-weight: var(--fw-light);
}

/* ─── Pillars (right column) ─── */
.philosophy__pillars {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  padding-top: var(--space-8);
}

.philosophy__pillar {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  padding: var(--space-5) var(--space-6);
  border: 1px solid rgba(137, 120, 92, 0.15);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.philosophy__pillar::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: rgba(137, 120, 92, 0.12);
  transition: width var(--transition-slow);
}

.philosophy__pillar:hover::before {
  width: 100%;
}

.philosophy__pillar:hover {
  border-color: rgba(137, 120, 92, 0.40);
}

.philosophy__pillar-icon {
  font-size: 22px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.philosophy__pillar-text {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  color: var(--color-cream);
  font-weight: var(--fw-regular);
  font-style: normal;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
}

/* Faint background food/coffee curves illustration on the left */
.philosophy__illustration {
  position: absolute;
  top: 50%;
  left: -80px;
  transform: translateY(-50%) rotate(-12deg);
  width: clamp(380px, 36vw, 560px);
  height: auto;
  opacity: 0.08;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  filter: brightness(1.25);
  transition: opacity 0.3s ease;
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .philosophy__grid {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }

  .philosophy__watermark {
    font-size: 30vw;
    right: -10%;
    opacity: 0.04;
  }

  .philosophy__illustration {
    width: 320px;
    left: -40px;
    opacity: 0.05;
  }
}