/* ============================================================
   PHILOSOPHY — quote and signature block
   ============================================================ */
.philosophy {
  background: var(--prussian-deep);
  color: var(--parchment);
  padding: 100px 48px;
  position: relative;
  overflow: hidden;
}
.philosophy::before {
  content: '"';
  position: absolute;
  top: 50px;
  left: 80px;
  font-family: var(--display);
  font-style: italic;
  font-size: 280px;
  color: var(--antique-gold);
  opacity: 0.07;
  line-height: 1;
}
.philosophy-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  text-align: center;
}
.philosophy blockquote {
  font-family: var(--display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(28px, 3.8vw, 44px);
  line-height: 1.2;
  letter-spacing: -0.005em;
  color: var(--parchment);
  margin-bottom: 36px;
}
.philosophy blockquote em {
  font-style: italic;
  color: var(--burnished-gold);
}
.philosophy .signature {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.philosophy .sig-rule {
  width: 80px; height: 1px;
  background: var(--antique-gold);
}
.philosophy .sig-name {
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
  color: var(--burnished-gold);
}
.philosophy .sig-role {
  font-family: var(--body);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.55);
}
